X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=e88b56faad67ae6d4634227cf62bb20bba5a3662;hp=5dafde8e5a994deed7ecd2516c15e93181b369e8;hb=86e559d164166966a797a1e5855871d48e087ddd;hpb=73d2fa02e271c49527b8d5ade9ae01c5e5b2438b diff --git a/Makefile b/Makefile index 5dafde8..e88b56f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all build gtags \ +.PHONY: all srcall gtags \ check valgrind \ doc alldoc doc_inner \ install uninstall \ @@ -7,7 +7,7 @@ test-clean doc-clean doc_inner-clean CAT := cat -CP := cp +CP := cp -v ECHO := /bin/echo EXPR := expr GIT := git @@ -29,27 +29,18 @@ VERSIONGITREF := $(shell $(GIT) show-ref -s --tags $(VERSION)) MASTERGITREF := $(shell $(GIT) show-ref -s refs/heads/master) -VERSIONFILES = include/version.h \ +VERSIONFILES := include/version.h \ test/system/casl2_opt/opt_v/0.txt \ test/system/comet2_opt/opt_v/0.txt \ test/system/dumpword/opt_v/0.txt -all: casl2 comet2 dumpword casl2rev INSTALL gtags +CMDFILES := casl2 comet2 dumpword casl2rev comet2monitor -casl2: src/casl2 - $(CP) $< $@ - -comet2: src/comet2 - $(CP) $< $@ - -dumpword: src/dumpword - $(CP) $< $@ +all: build INSTALL gtags -casl2rev: src/casl2rev - $(CP) $< $@ - -src/casl2 src/comet2 src/dumpword src/casl2rev: +build: version $(MAKE) -C src all + @(for f in $(CMDFILES); do if test ! -e $$f -o src/$$f -nt $$f; then $(CP) src/$$f $$f; fi; done) gtags: $(if $(strip $(shell $(WHICH) $(GTAGS))),$(GTAGS),@$(ECHO) '$(GTAGS): not found') @@ -69,6 +60,12 @@ doc_inner: check: $(MAKE) -sC test/system +smoke: + $(MAKE) -sC test/system smoke + +smoke-valgrind: + $(MAKE) -sC test/system smoke-valgrind + valgrind: $(MAKE) -sC test/system valgrind