summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2022-07-14 00:11:44 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2022-07-14 00:11:44 +0900
commit7c6f69eb7a623782396075a1f126c2c665d704e4 (patch)
tree8345276b57e1a3980e3a69a29b67857f1c3f9533 /Makefile
parent577a3d6e856eb92bbab88f797ec54e6d29188d3d (diff)
Add huffman-encode.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
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}
+