aiie/Makefile

17 lines
426 B
Makefile
Raw Normal View History

2017-02-19 18:46:13 +00:00
LDFLAGS=-L/usr/local/lib
CXXFLAGS=-Wall -I .. -I . -O3
TSRC=cpu.cpp util/testharness.cpp
all:
@echo There is no 'all' target. Yet.
clean:
rm -f *.o *~ */*.o */*~ testharness.basic testharness.verbose testharness.extended
test: $(TSRC)
g++ $(CXXFLAGS) -DBASICTEST $(TSRC) -o testharness.basic
g++ $(CXXFLAGS) -DVERBOSETEST $(TSRC) -o testharness.verbose
g++ $(CXXFLAGS) -DEXTENDEDTEST $(TSRC) -o testharness.extended