X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=e88b56faad67ae6d4634227cf62bb20bba5a3662;hp=ca55acb0da7e55766fcf8644d9a8ffe81b604770;hb=86e559d164166966a797a1e5855871d48e087ddd;hpb=fd95f4b23c44e0164e06751b491797dc72545b27 diff --git a/Makefile b/Makefile index ca55acb..e88b56f 100644 --- a/Makefile +++ b/Makefile @@ -1,44 +1,56 @@ -.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 -ECHO := echo -GITTAG := git tag +CP := cp -v +ECHO := /bin/echo +EXPR := expr +GIT := git +GREP := grep GTAGS := gtags INSTALL := install SED := sed +WC := wc WHICH := which +XARGS := xargs prefix ?= ~ bindir ?= $(prefix)/bin +libdir ?= $(prefix)/share + +VERSION := $(shell $(CAT) VERSION) + +VERSIONGITREF := $(shell $(GIT) show-ref -s --tags $(VERSION)) + +MASTERGITREF := $(shell $(GIT) show-ref -s refs/heads/master) -VERSION = $(shell $(CAT) VERSION) -VERSIONFILES = include/package.h test/system/casl2/opt_v/0.txt test/system/comet2/opt_v/0.txt test/system/dumpword/opt_v/0.txt +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 comet2monitor -build: +all: build INSTALL gtags + +build: version $(MAKE) -C src all - $(CP) $(addprefix src/,$(CMD)) ./ + @(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') -doc: - $(MAKE) -C doc base - $(MAKE) INSTALL - INSTALL: doc/install.txt $(CP) $< $@ +doc/install.txt: + $(MAKE) -C doc base + alldoc: $(MAKE) -C doc all @@ -48,11 +60,23 @@ doc_inner: check: $(MAKE) -sC test/system -install: casl2 comet2 dumpword install-info install-casl2lib +smoke: + $(MAKE) -sC test/system smoke + +smoke-valgrind: + $(MAKE) -sC test/system smoke-valgrind + +valgrind: + $(MAKE) -sC test/system valgrind + +install: casl2 comet2 dumpword install-info $(INSTALL) -d $(bindir) $(INSTALL) $(CMD) $(bindir)/ -uninstall: uninstall-info uninstall-casl2lib +install-info: + $(MAKE) -C doc install-info + +uninstall: uninstall-info $(RM) $(prefix $(bindir)/,$(CMD)) version: $(VERSIONFILES) @@ -61,8 +85,8 @@ version: $(VERSIONFILES) $(VERSIONFILES): VERSION @$(SED) -e "s/@@VERSION@@/$(VERSION)/g" $@.version >$@ -gittag: VERSION - $(GITTAG) $(VERSION) +gittag: + if test `$(GIT) status -s | $(WC) -l` -gt 0; then $(ECHO) "Error: commit, first."; exit 1; fi; if test "$(VERSIONGITREF)" != "$(MASTERGITREF)"; then $(GIT) tag $(VERSION); fi distclean: cmd-clean src-distclean gtags-clean version-clean clean