diff options
| author | Masaya Tojo <masaya@tojo.tokyo> | 2021-08-22 01:48:10 +0900 | 
|---|---|---|
| committer | Masaya Tojo <masaya@tojo.tokyo> | 2021-08-22 13:03:05 +0900 | 
| commit | 3aad5fdc0dd9136a5222ea4f0e06f3d7fcec003d (patch) | |
| tree | 842971d9696ecc41eee3873016140c59a13e1300 | |
| parent | 3e1bdf10c85b5a4aca62349878b1bff786e30938 (diff) | |
| -rw-r--r-- | .gitignore | 5 | ||||
| -rw-r--r-- | Makefile | 17 | 
2 files changed, 21 insertions, 1 deletions
@@ -1,2 +1,5 @@  *~ -temp-emacs-file.lsp
\ No newline at end of file +temp-emacs-file.lsp +*.cert +*.fasl +*.port diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f997010 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +.PHONY: clean all + +all: top.cert + +top.cert: top.lisp standard-52-card-deck.cert +	-rm -f $@ +	acl2 <<< '(CERTIFY-BOOK "$(basename $@)")' +	test -f $@ + +standard-52-card-deck.cert: standard-52-card-deck.lisp +	-rm -f "$@" +	acl2 <<< '(CERTIFY-BOOK "$(basename $@)")' +	test -f "$@" + +clean: +	rm -f top.{cert,fasl,port} +	rm -f standard-52-card-deck.{cert,fasl,port}  | 
