X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=e9e6678c0264f7925f409977b1708668b56b79d4;hb=a647b5b368eddbdf04de62227060cb0cc26a47a3;hp=ca55acb0da7e55766fcf8644d9a8ffe81b604770;hpb=fd95f4b23c44e0164e06751b491797dc72545b27;p=YACASL2.git diff --git a/Makefile b/Makefile index ca55acb..e9e6678 100644 --- a/Makefile +++ b/Makefile @@ -10,18 +10,30 @@ CMD := casl2 comet2 dumpword CAT := cat CP := cp -ECHO := echo -GITTAG := git tag +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 -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 +VERSION := $(shell $(CAT) VERSION) + +VERSIONGITREF := $(shell $(GIT) show-ref -s --tags $(VERSION)) + +MASTERGITREF := $(shell $(GIT) show-ref -s refs/heads/master) + +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 all: build doc gtags @@ -61,8 +73,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