Makefileの修正
[YACASL2.git] / Makefile
index a1921f4..29e29f1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,13 @@
-.PHONY: all build gtags \
-        check \
+.PHONY: all srcall gtags \
+        check valgrind \
         doc alldoc doc_inner \
         install uninstall \
         version gittag \
         clean src-clean gtags-clean \
         test-clean doc-clean doc_inner-clean
 
-CMD := casl2 comet2 dumpword casl2rev
-
 CAT := cat
-CP := cp
+CP := cp -v
 ECHO := /bin/echo
 EXPR := expr
 GIT := git
@@ -31,16 +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
 
+CMDFILES := casl2 comet2 dumpword casl2rev
+
 all: build INSTALL gtags
 
 build:
        $(MAKE) -C src all
-       $(CP) $(addprefix src/,$(CMD)) ./
+       @(for f in $(CMDFILES); do if test src/$$f -nt $$f; then $(CP) src/$$f $$f; fi; done)
 
 gtags:
        $(if $(strip $(shell $(WHICH) $(GTAGS))),$(GTAGS),@$(ECHO) '$(GTAGS): not found')
@@ -60,6 +60,9 @@ doc_inner:
 check:
        $(MAKE) -sC test/system
 
+valgrind:
+       $(MAKE) -sC test/system valgrind
+
 install: casl2 comet2 dumpword install-info
        $(INSTALL) -d $(bindir)
        $(INSTALL) $(CMD) $(bindir)/