
CC=gcc
CFLAGS=-Wall -Wstrict-prototypes -g -ggdb -I../tclient
CPPFLAGS=

all: tetribot

comm_client.o: ../tclient/tcommon.h

tetribot: tetribot.o client.o comm_client.o ../tclient/tcommon.o tetris.o
	$(CC) $(CFLAGS) -o tetribot $^
.PHONY:	clean
clean:
	rm -rf *.o tetribot
