X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=Makefile;h=7222401dabeee071d57cdac7b7c05b3b8e39ea03;hp=e9e6678c0264f7925f409977b1708668b56b79d4;hb=d7c12aea2198046725140588b1c356687cf13f2c;hpb=2334b6cb53c0bdea347da4b369602bdd8cf6fbbd diff --git a/Makefile b/Makefile index e9e6678..7222401 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ clean src-clean gtags-clean \ test-clean doc-clean doc_inner-clean -CMD := casl2 comet2 dumpword +CMD := casl2 comet2 dumpword casl2rev CAT := cat CP := cp @@ -23,6 +23,7 @@ XARGS := xargs prefix ?= ~ bindir ?= $(prefix)/bin +libdir ?= $(prefix)/share VERSION := $(shell $(CAT) VERSION) @@ -31,11 +32,11 @@ 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_v/0.txt \ - test/system/comet2/opt_v/0.txt \ + 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 +all: build INSTALL gtags build: $(MAKE) -C src all @@ -44,13 +45,12 @@ build: gtags: $(if $(strip $(shell $(WHICH) $(GTAGS))),$(GTAGS),@$(ECHO) '$(GTAGS): not found') -doc: - $(MAKE) -C doc base - $(MAKE) INSTALL - INSTALL: doc/install.txt $(CP) $< $@ +doc/install.txt: + $(MAKE) -C doc base + alldoc: $(MAKE) -C doc all @@ -60,11 +60,14 @@ doc_inner: check: $(MAKE) -sC test/system -install: casl2 comet2 dumpword install-info install-casl2lib +install: casl2 comet2 dumpword install-info $(INSTALL) -d $(bindir) $(INSTALL) $(CMD) $(bindir)/ -uninstall: uninstall-info uninstall-casl2lib +install-info: + $(MAKE) -C doc install-info + +uninstall: uninstall-info $(RM) $(prefix $(bindir)/,$(CMD)) version: $(VERSIONFILES)