CXX = g++
TARGET = gcp
CXXFLAGS = -O1
OBJS =  Random.o Timer.o Input.o ## add other files

all: ${TARGET}

${TARGET}: main.cpp $(OBJS)
	${CXX} ${CXXFLAGS} -o $@ $^

clean:
	rm -f *~ *.o ${TARGET} core DEADJOE .DS_Store
