mirror of
https://github.com/JorjBauer/aiie.git
synced 2025-02-16 14:30:36 +00:00
17 lines
426 B
Makefile
17 lines
426 B
Makefile
|
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
|
||
|
|