diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2022-07-16 15:34:00 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2022-07-16 15:34:00 +0900 |
commit | 8ada9230a681e8c1ee23686815c866d6eebde7e8 (patch) | |
tree | 6fd812d2b2f896cb2c71dfbbddcb4b830d751499 /Makefile | |
parent | 3ebc1d21bf5fe94ada90a812bbc7879f7a21719f (diff) |
lists: remove-nth, shuffle: Add remove-nth and shuffle.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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} |