From f91fec3cc4c7ccc581f08401b7768f44b5f335ad Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 22 Aug 2021 18:13:41 +0900 Subject: Add Makefile. --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..08aa1e6 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: clean all + +all: blackjack.cert + +standard-52-card-deck/top.cert: standard-52-card-deck/top.lisp + make -C "standard-52-card-deck" + +blackjack.cert: blackjack.lisp standard-52-card-deck/top.cert + -rm -f $@ + acl2 <<< '(CERTIFY-BOOK "$(basename $@)")' + test -f $@ + +clean: + rm -f blackjack.{cert,fasl,port} + make -C "standard-52-card-deck" clean -- cgit v1.2.3