prog8/compiler/test/arithmetic/Makefile

14 lines
233 B
Makefile
Raw Normal View History

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