CC=gcc
TARGET=pc2
OFILES=eval.o $(TARGET).o

$(TARGET): $(OFILES)
	gcc -o $(TARGET) $(OFILES)

all: $(TARGET) testeval

testeval: eval.o testeval.o
	gcc -o testeval eval.o testeval.o

manualtest: testeval
	./testeval matrix path | tee eval.out | more

multitest: $(TARGET)
	./ch -start 6 6 -delay 5 matrix . rtGreedy jerrySmart 

lptest: $(TARGET)
	./ch -start 18 11 -delay 5 arena_store/longpath.matrix rtGreedy jerrySmart . chomponly 

testthree: $(TARGET)
	./ch -delay 5 matrix lawnmower chomponly .

testtwo: $(TARGET)
	./ch -start 4 4 -delay 5 matrix chomponly .

testone: $(TARGET)
	./ch -start 4 4 -delay 5 matrix .
