Makefile 286 B

123456789101112
  1. test1: test1.lisp qemu.sh tcat
  2. sh qemu.sh test1.lisp
  3. test2: test2.lisp qemu.sh tcat
  4. sh qemu.sh test2.lisp
  5. eval10: eval10.lisp qemu.sh tcat
  6. sh qemu.sh eval10.lisp
  7. eval15: eval15.lisp qemu.sh tcat
  8. sh qemu.sh eval10.lisp
  9. tcat: tcat.c
  10. $(CC) -o $@ $< -Wall
  11. .PHONY: test1 eval10 eval15