summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2022-07-16 15:34:00 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2022-07-16 15:34:00 +0900
commit8ada9230a681e8c1ee23686815c866d6eebde7e8 (patch)
tree6fd812d2b2f896cb2c71dfbbddcb4b830d751499 /Makefile
parent3ebc1d21bf5fe94ada90a812bbc7879f7a21719f (diff)
lists: remove-nth, shuffle: Add remove-nth and shuffle.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index f86226c..c30f9d8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,16 @@
-.PHONY: clean all
+subdirs := lists
-all: huffman-encode.cert perm.cert
+.PHONY: clean all $(subdirs)
+
+all: huffman-encode.cert $(subdirs)
huffman-encode.cert: huffman-encode.lisp
-rm -f $@
acl2 <<< '(CERTIFY-BOOK "$(basename $@)")'
test -f $@
-perm.cert: perm.lisp
- -rm -f $@
- acl2 <<< '(CERTIFY-BOOK "$(basename $@)")'
- test -f $@
+$(subdirs):
+ $(MAKE) -C $@
clean:
rm -f *.{cert,fasl,port,lx64fsl}