CC=gcc
OFILES=eval.o pc1.o ga.o

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

all: pc1 testeval

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

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

test: testeval pc1
	pc1 <matrix >pc1path
	./testeval matrix pc1path | tee eval.out | more
