mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-17 06:33:21 +00:00
14 lines
184 B
Makefile
14 lines
184 B
Makefile
|
LEVEL = ../..
|
||
|
include $(LEVEL)/Makefile.common
|
||
|
|
||
|
all:: testPow2
|
||
|
|
||
|
clean::
|
||
|
rm -f testPow2
|
||
|
|
||
|
testPow2 : $(ObjectsG)
|
||
|
$(LinkG) -o testPow2 $(ObjectsG) -lsupport
|
||
|
|
||
|
run: testPow2
|
||
|
testPow2 25
|