X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=ccc16d766bd6823e0e0e3f285a182d5071d90a8d;hb=e8856643e2cc24d7419a587548396cc405ce0f19;hp=2797559a49bb9be168a61fbcae23367453044cb6;hpb=fb54b1c9d2fbc3d4a62c6b4d38ff68e9d3b25c26;p=YACASL2.git diff --git a/Makefile b/Makefile index 2797559..ccc16d7 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,38 @@ -prefix = $(HOME) -.PHPNY: all clean check install uninstall -all: - make -C src +.PHONY: build check doc doxygen clean gtags htags +MKDIR = mkdir -p +DOXYGEN = doxygen +GTAGS = gtags +HTAGS = htags +HTAGSFLAG = --map-file -anosx --tree-view + +build: + $(MAKE) -C src + check: - make -C test/integration + @$(MAKE) -sC test/system + +doc: + @$(MAKE) -sC doc + +doxygen: htags + @$(DOXYGEN) + +gtags: + @$(GTAGS) + +htags: doc/doxygen/html gtags + @$(HTAGS) $(HTAGSFLAG) $