os/baci/makefile
2019-06-14 20:04:43 +02:00

12 lines
117 B
Makefile

all: compile run
echo "Done"
compile:
rm main.lst
bacc main.cm
run:
bainterp main.pco
.PHONY: all compile run