X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=80f8a8282d856646b5664c9737a29034932eb7eb;hp=c5e491ed4deb97f94490356bea12a359a5bbf3e5;hb=473906d23322ef829ee8dad807895235d645981c;hpb=b591284405a5b29213db6250c830e1f63d11a4f0 diff --git a/Makefile b/Makefile index c5e491e..80f8a82 100644 --- a/Makefile +++ b/Makefile @@ -1,27 +1,112 @@ -ifndef prefix - prefix = $(HOME) -endif -CLEANDIR = src test/integration test/unit as/casl2lib -.PHPNY: all build clean check doc casl2lib install uninstall -all: build casl2lib +.PHONY: all build gtags \ + check \ + 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 +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) + +VERSIONFILES = include/package.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 + build: - make -C src -casl2lib: - @make -C as/casl2lib -check: - @make -sC test/integration + $(MAKE) -C src all + $(CP) $(addprefix src/,$(CMD)) ./ + +gtags: + $(if $(strip $(shell $(WHICH) $(GTAGS))),$(GTAGS),@$(ECHO) '$(GTAGS): not found') + doc: - @make -sC doc -clean: - @for target in $(CLEANDIR); do $(MAKE) -sC $$target clean; done; \ - rm -f casl2 comet2 dumpword -install: all - @if test -d $(prefix); then \ - install -s ./casl2 $(prefix)/casl2; \ - install -s ./comet2 $(prefix)/comet2; \ - install -s ./dumpword $(prefix)/dumpword; \ - fi -uninstall: - @if test -d $(prefix); then \ - rm -f $(prefix)/casl2 $(prefix)/comet2 $(prefix)/dumpword; \ - fi + $(MAKE) -C doc base + $(MAKE) INSTALL + +INSTALL: doc/install.txt + $(CP) $< $@ + +alldoc: + $(MAKE) -C doc all + +doc_inner: + $(MAKE) -C doc_inner all + +check: + $(MAKE) -sC test/system + +install: casl2 comet2 dumpword install-info install-casl2lib + $(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 + $(RM) $(prefix $(bindir)/,$(CMD)) + +version: $(VERSIONFILES) + @$(ECHO) "YACASL2 Version: $(VERSION)" + +$(VERSIONFILES): VERSION + @$(SED) -e "s/@@VERSION@@/$(VERSION)/g" $@.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 + +clean: src-clean doc-clean doc_inner-clean + +cmd-clean: + $(RM) $(CMD) + +src-clean: + $(MAKE) -sC src clean + +src-distclean: + $(MAKE) -sC src distclean + +gtags-clean: + $(RM) GPATH GRTAGS GSYMS GTAGS + +doc-clean: + $(MAKE) -sC doc clean + +doc_inner-clean: + $(MAKE) -sC doc_inner clean + +version-clean: + $(RM) $(VERSIONFILES) + +test-clean: + $(MAKE) -sC test clean