CC=g++ CXXFLAGS= -O2 -Wno-conversion -Wno-sign-compare TESTS=testAnneal testNoAnneal testRandomAnneal all: annlib.a test test: $(TESTS) annlib.a: RandomProb.o WeightUpdate.o ar rv $@ $? $(TESTS): annlib.a testCommon.o clean: rm -f annlib.a *.o $(TESTS) WeightUpdate.tgz tar: tar cvf WeightAnneal.tgz -z readme.txt Makefile *.h *.cpp