X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=b16f6da8474a44ec4fd649a522a531a744f2d432;hb=e98877aa88940518a0b9b823d4e9efd4e6db8523;hp=29e29f1f81a517d2f217e6a2414067925bd441dc;hpb=0b4c42d3274bfcd08db55f5be02626c9e86a81ca;p=YACASL2.git diff --git a/Makefile b/Makefile index 29e29f1..b16f6da 100644 --- a/Makefile +++ b/Makefile @@ -34,13 +34,13 @@ VERSIONFILES := include/version.h \ test/system/comet2_opt/opt_v/0.txt \ test/system/dumpword/opt_v/0.txt -CMDFILES := casl2 comet2 dumpword casl2rev +CMDFILES := casl2 comet2 dumpword casl2rev comet2monitor all: build INSTALL gtags -build: +build: version $(MAKE) -C src all - @(for f in $(CMDFILES); do if test src/$$f -nt $$f; then $(CP) src/$$f $$f; fi; done) + @(for f in $(CMDFILES); do if test ! -e $$f -o src/$$f -nt $$f; then $(CP) src/$$f $$f; fi; done) gtags: $(if $(strip $(shell $(WHICH) $(GTAGS))),$(GTAGS),@$(ECHO) '$(GTAGS): not found') @@ -60,18 +60,24 @@ doc_inner: check: $(MAKE) -sC test/system +smoke: + $(MAKE) -sC test/system smoke + +smoke-valgrind: + $(MAKE) -sC test/system smoke-valgrind + valgrind: $(MAKE) -sC test/system valgrind install: casl2 comet2 dumpword install-info $(INSTALL) -d $(bindir) - $(INSTALL) $(CMD) $(bindir)/ + $(INSTALL) $(CMDFILES) $(bindir)/ install-info: $(MAKE) -C doc install-info uninstall: uninstall-info - $(RM) $(prefix $(bindir)/,$(CMD)) + $(RM) $(prefix $(bindir)/,$(CMDFILES)) version: $(VERSIONFILES) @$(ECHO) "YACASL2 Version: $(VERSION)" @@ -87,7 +93,7 @@ distclean: cmd-clean src-distclean gtags-clean version-clean clean clean: src-clean doc-clean doc_inner-clean cmd-clean: - $(RM) $(CMD) + $(RM) $(CMDFILES) src-clean: $(MAKE) -sC src clean