llvm-6502/tools/tests/Makefile

14 lines
184 B
Makefile
Raw Normal View History

LEVEL = ../..
include $(LEVEL)/Makefile.common
all:: testPow2
clean::
rm -f testPow2
testPow2 : $(ObjectsG)
$(LinkG) -o testPow2 $(ObjectsG) -lsupport
run: testPow2
testPow2 25