CFLAGS=-O3 -ffast-math -funroll-loops -static # -msse -march=athlon CC=g++ all: test_point test_cover test_era bin ctree.o: ctree.cpp ctree.h $(CC) -c -Wall $(CFLAGS) ctree.cpp point.o: point.cpp point.h $(CC) -c -Wall $(CFLAGS) point.cpp test_point: point.o point.h test_point.cpp $(CC) -Wall $(CFLAGS) -o test_point test_point.cpp point.o test_cover: point.o ctree.o point.h test_cover.cpp $(CC) -Wall $(CFLAGS) -o test_cover test_cover.cpp ctree.o point.o test_era: point.o ctree.o point.h test_era.cpp $(CC) -Wall $(CFLAGS) -o test_era test_era.cpp ctree.o point.o bin: # cp arff2data ~/bin/wisp/ # cp checkresults ~/bin/wisp/ # cp nntest ~/bin/wisp/ # cp test_era ~/bin/wisp/ clean: rm *.o