OBJECTS = OTKPP.o
CXX = g++
CXXFLAGS = -Wall -Wextra -Werror -pedantic -std=c++11 

all:	OTKPP

OTKPP:	$(OBJECTS)
	$(CXX) $(CXXFLAGS) -o OTKPP $(OBJECTS)

clean:
	rm *.o OTKPP
