include ../Makefile.inc

TARGET = phong

$(TARGET):
	$(CC) $(CCFLAGS) $(TARGET).c -o $(TARGET) -lpthread

clean:
	rm -f $(TARGET)
