X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=52cf49b02333ad63ffcdc80ce13f1c944930e339;hp=80f8a8282d856646b5664c9737a29034932eb7eb;hb=b9cb693a8cfd0abcbf235650e1241afdbdddd60b;hpb=473906d23322ef829ee8dad807895235d645981c diff --git a/Makefile b/Makefile index 80f8a82..52cf49b 100644 --- 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 - CAT := cat CP := cp ECHO := /bin/echo @@ -31,27 +29,30 @@ 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 + +%: src/% + $(CP) $< $@ + +casl2 comet2 dumpword casl2rev: build build: $(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 +62,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)