CC	= g++

SRCS	= TicTacToe.cpp main.cpp

OBJS	= TicTacToe.o main.o

CFLAGS	= -Wall -g

CLIBS	= -lm


all	: one 

one	: $(OBJS)
	$(CC) -o tictactoe $(OBJS) $(CLIBS)

clean	:
	rm -f $(OBJS);
	rm -f *~;
	rm -f tictactoe;

$(OBJS)	: $(SRCS) $(HEADERS)

