prog8/compiler/test/arithmetic/Makefile
Irmen de Jong abbf7c7cb0 compiler name change: prog8c (was p8compile)
fat jar file also changed:  prog8c-X.Y-all.jar    (was: prog8compiler-X.Y-all.jar)
2024-10-16 18:36:19 +02:00

14 lines
230 B
Makefile

.PHONY: all clean test
all: test
clean:
rm -f *.prg *.asm *.vice-*
test: clean
prog8c -target cx16 *.p8 >/dev/null
for program in *.prg; do \
echo "RUNNING:" $$program ; \
x16emu -run -prg $$program >/dev/null ; \
done