X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=29e29f1f81a517d2f217e6a2414067925bd441dc;hp=ccc16d766bd6823e0e0e3f285a182d5071d90a8d;hb=0b4c42d3274bfcd08db55f5be02626c9e86a81ca;hpb=d015828479a131d3b422980c44748f7a10de8f91 diff --git a/Makefile b/Makefile index ccc16d7..29e29f1 100644 --- a/Makefile +++ b/Makefile @@ -1,38 +1,111 @@ -.PHONY: build check doc doxygen clean gtags htags -MKDIR = mkdir -p -DOXYGEN = doxygen -GTAGS = gtags -HTAGS = htags -HTAGSFLAG = --map-file -anosx --tree-view +.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 + +CAT := cat +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) + +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 + +CMDFILES := casl2 comet2 dumpword casl2rev + +all: build INSTALL gtags build: - $(MAKE) -C src + $(MAKE) -C src all + @(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') + +INSTALL: doc/install.txt + $(CP) $< $@ + +doc/install.txt: + $(MAKE) -C doc base + +alldoc: + $(MAKE) -C doc all + +doc_inner: + $(MAKE) -C doc_inner all check: - @$(MAKE) -sC test/system + $(MAKE) -sC test/system -doc: - @$(MAKE) -sC doc +valgrind: + $(MAKE) -sC test/system valgrind -doxygen: htags - @$(DOXYGEN) +install: casl2 comet2 dumpword install-info + $(INSTALL) -d $(bindir) + $(INSTALL) $(CMD) $(bindir)/ -gtags: - @$(GTAGS) - -htags: doc/doxygen/html gtags - @$(HTAGS) $(HTAGSFLAG) $$@ + +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