X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=396aeb50fe292fef2b5e60ca7d1afbd9d094d181;hb=99c084a1f8372351db7a68d4f825b114b91135a3;hp=e36b37f540f5ce64b80a41ecf9af95395bda2710;hpb=5ae22b6a5488469b6513d2ba44ad589467da63e7;p=YACASL2.git diff --git a/Makefile b/Makefile index e36b37f..396aeb5 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,40 @@ -prefix = $(HOME) -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 doc_inner clean clean_src clean_gtags clean_test clean_doc clean_doc_inner + +GTAGS ?= gtags +RMF ?= rm -f +WHICH ?= which +ECHO ?= echo + +all: build doc doc_inner + build: - make -C src -casl2lib: - @make -C as/casl2lib + $(MAKE) -C src + +gtags: + $(WHICH) $(GTAGS) && $(GTAGS) >/dev/null || $(ECHO) "$(GTAGS): not found" + check: - @make -sC test/integration + $(MAKE) -sC test/system + doc: - @make -sC doc -clean: - @for target in $(CLEANDIR); do $(MAKE) -sC $$target clean; done -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_inner: + $(MAKE) -C $@ + +clean: clean_src clean_gtags clean_test clean_doc clean_doc_inner + +clean_src: + @$(MAKE) -sC src clean + +clean_gtags: + @$(RMF) GPATH GRTAGS GSYMS GTAGS + +clean_test: + @$(MAKE) -sC test clean + +clean_doc: + @$(MAKE) -sC doc clean + +clean_doc_inner: + @$(MAKE) -sC doc_inner clean