用語「デバッガー」を「モニター」に変更
[YACASL2.git] / Makefile
index 67d7de3..5dafde8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,11 @@
 .PHONY: all build gtags \
-        check \
+        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
 ECHO := /bin/echo
@@ -31,27 +29,37 @@ VERSIONGITREF := $(shell $(GIT) show-ref -s --tags $(VERSION))
 
 MASTERGITREF := $(shell $(GIT) show-ref -s refs/heads/master)
 
-VERSIONFILES = include/package.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: build doc gtags
+all: casl2 comet2 dumpword casl2rev INSTALL gtags
+
+casl2: src/casl2
+       $(CP) $< $@
+
+comet2: src/comet2
+       $(CP) $< $@
+
+dumpword: src/dumpword
+       $(CP) $< $@
 
-build:
+casl2rev: src/casl2rev
+       $(CP) $< $@
+
+src/casl2 src/comet2 src/dumpword src/casl2rev:
        $(MAKE) -C src all
-       $(CP) $(addprefix src/,$(CMD)) ./
 
 gtags:
        $(if $(strip $(shell $(WHICH) $(GTAGS))),$(GTAGS),@$(ECHO) '$(GTAGS): not found')
 
-doc:
-       $(MAKE) -C doc base
-       $(MAKE) INSTALL
-
 INSTALL: doc/install.txt
        $(CP) $< $@
 
+doc/install.txt:
+       $(MAKE) -C doc base
+
 alldoc:
        $(MAKE) -C doc all
 
@@ -61,17 +69,17 @@ doc_inner:
 check:
        $(MAKE) -sC test/system
 
-install: casl2 comet2 dumpword install-info install-casl2lib
+valgrind:
+       $(MAKE) -sC test/system valgrind
+
+install: casl2 comet2 dumpword install-info
        $(INSTALL) -d $(bindir)
        $(INSTALL) $(CMD) $(bindir)/
 
 install-info:
        $(MAKE) -C doc install-info
 
-install-casl2lib:
-       $(MAKE) -C as/casl2lib install-casl2lib
-
-uninstall: uninstall-info uninstall-casl2lib
+uninstall: uninstall-info
        $(RM) $(prefix $(bindir)/,$(CMD))
 
 version: $(VERSIONFILES)