sectorlisp/test/Makefile
2022-01-09 08:41:42 +09:00

12 lines
286 B
Makefile

test1: test1.lisp qemu.sh tcat
sh qemu.sh test1.lisp
test2: test2.lisp qemu.sh tcat
sh qemu.sh test2.lisp
eval10: eval10.lisp qemu.sh tcat
sh qemu.sh eval10.lisp
eval15: eval15.lisp qemu.sh tcat
sh qemu.sh eval10.lisp
tcat: tcat.c
$(CC) -o $@ $< -Wall
.PHONY: test1 eval10 eval15