os/baci/makefile

12 lines
117 B
Makefile
Raw Normal View History

2019-06-14 20:04:43 +02:00
all: compile run
echo "Done"
compile:
rm main.lst
bacc main.cm
run:
bainterp main.pco
.PHONY: all compile run