X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=29e29f1f81a517d2f217e6a2414067925bd441dc;hp=80f8a8282d856646b5664c9737a29034932eb7eb;hb=0b4c42d3274bfcd08db55f5be02626c9e86a81ca;hpb=473906d23322ef829ee8dad807895235d645981c diff --git a/Makefile b/Makefile index 80f8a82..29e29f1 100644 --- 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 - CAT := cat -CP := cp +CP := cp -v ECHO := /bin/echo EXPR := expr GIT := git @@ -31,27 +29,28 @@ 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 +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') -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 +60,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)