mirror of
https://github.com/irmen/prog8.git
synced 2024-11-03 13:07:54 +00:00
14 lines
233 B
Makefile
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
|