X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=97d6a63146d93e76e2f19e67ef74c15fdabfad5b;hb=refs%2Ftags%2Fv0.1p30;hp=2797559a49bb9be168a61fbcae23367453044cb6;hpb=fb54b1c9d2fbc3d4a62c6b4d38ff68e9d3b25c26;p=YACASL2.git diff --git a/Makefile b/Makefile index 2797559..97d6a63 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 -anos --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) $