prog8/compiler/test/arithmetic/Makefile
2021-03-18 01:41:54 +01:00

14 lines
233 B
Makefile

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