diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b4f00d1 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: clean all + +all: huffman-encode.cert + +huffman-encode.cert: huffman-encode.lisp + -rm -f $@ + acl2 <<< '(CERTIFY-BOOK "$(basename $@)")' + test -f $@ + +clean: + rm -f *.{cert,fasl,port,lx64fsl} + |