X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=stepmake%2Fstepmake%2Fgeneric-targets.make;h=28c4a46ca3d513c36f1c6896d3565f3c43a70040;hb=37ca1f80bf5401accd17056938f4f7b2c147ddb2;hp=4a2a70dbc4cabee70f87e64401410bc9882f10e3;hpb=47d57fc7c6db37f356f7d0a4413e36fd9d25718a;p=lilypond.git diff --git a/stepmake/stepmake/generic-targets.make b/stepmake/stepmake/generic-targets.make index 4a2a70dbc4..28c4a46ca3 100644 --- a/stepmake/stepmake/generic-targets.make +++ b/stepmake/stepmake/generic-targets.make @@ -1,180 +1,148 @@ -# title generic make targets -# file make/Targets.make - -.PHONY : all clean config default dist doc doc++ exe help html lib TAGS\ +.PHONY : all clean config default dist doc exe help html lib TAGS\ po -# VPATH=$(outdir)/ #ugh? -# target all: -# + all: default $(LOOP) +man: + $(LOOP) -# be careful about deletion. -clean: localclean - -rm -f $(outdir)/* +clean: local-clean + -rm -rf "./$(outdir)" $(LOOP) ifneq ($(strip $(depth)),.) dist: - make -C $(depth) dist + $(MAKE) -C $(depth) dist endif -distclean: clean +distclean: clean $(LOOP) $(MAKE) local-distclean -maintainerclean: +cvs-clean: + $(MAKE) local-distclean + rm -rf out + rm -rf out-www + rm -f aclocal.m4 configure + +maintainerclean: $(LOOP) $(MAKE) local-maintainerclean $(MAKE) local-distclean -# configure: -# +# This doesn't allow command-line options, is it really useful? -jm config: - ./$(depth)/configure -# + ./$(src-depth)/configure -# target help: -# generic-help: @echo -e "\ Makefile for $(PACKAGE_NAME) $(TOPLEVEL_VERSION)\n\ -Usage: $(MAKE) ["VARIABLE=value"]... [TARGET]\n\ +Usage: make ["VARIABLE=value"]... [TARGET]\n\ \n\ -Targets:\n" +Targets specific to current directory:\n" help: generic-help local-help - @echo -e "\ - all update everything\n\ - clean remove all genated stuff in $(oudir)\n\ - config rerun configure\n\ - deb build Debian package\n\ + @echo -e "Generic targets:\n\ + all * update everything except website documentation\n\ + clean * remove all generated stuff in $(outdir)\n\ default same as the empty target\n\ - diff generate patch: $(depth)/$(outdir)/$(distname).diff.gz\n\ - . Options:\n\ - . from=0.1.74\n\ - . help==\n\ - . release==\n\ - . to=0.1.74.jcn2\n\ - dist roll tarball: $(depth)/$(outdir)/$(distname).tar.gz\n\ - distclean cleaner than clean (duh)\n\ - doc update all documentation\n\ - doc++ make doc++ documentation\n\ exe update all executables\n\ help this help\n\ - install install programs and data (prefix=$(prefix))\n\ + install * install programs and data (prefix=$(prefix))\n\ lib update all libraries\n\ - release roll tarball and generate patch\n\ - rpm build RedHat package\n\ - po make new po database\n\ - po-update update po database\n\ - tar same as dist\n\ - TAGS genarate tagfiles\n\ - zip build binary doze distribution\n\ + web * update website in directory \`out-www'\n\ + web-install * install website documentation in (webdir=$(webdir))\n\ + and Info documentation with images\n\ + web-clean * clean \`out-www' directory\n\ + TAGS generate tagfiles\n\ \n\ -Make may be invoked from any subdirectory\n\ -Note that all commands recurse into SUBSDIRS\n\ -"\ -# +\`make' may be invoked from any subdirectory.\n\ +Note that all commands marked with a star (*) recurse into subdirectories;\n\ +prepend \`local-' to restrict operation to the current directory.\n\ +Example: \`local-clean'." local-help: -doc: -#UGH - true # $(MAKE) -C $(depth)/Documentation all - - -# Ugh. C++ specific. -doc++: - (cd $(outdir); sh ../$(step-bindir)/tar-docxx.sh $(package)-$(TOPLEVEL_VERSION).tar.gz) - - - local-dist: $(DIST_FILES) $(OUT_DIST_FILES) $(NON_ESSENTIAL_DIST_FILES) -# echo topdir=$(topdir) -# echo distdir=$(distdir) -# echo locladir=$(localdir) mkdir -p $(distdir)/$(localdir) - $(LN) $(DIST_FILES) $(distdir)/$(localdir) + $(LN) $(DIST_FILES:%=$(src-dir)/%) $(distdir)/$(localdir) -#UGH UGH . make ifdef doesn't mix with string substitution semantics (late expansion vs. early expansion) -# case "$(NON_ESSENTIAL_DIST_FILES)x" in x) ;; *) \ - $(LN) $(NON_ESSENTIAL_DIST_FILES) $(distdir)/$(localdir);; \ + $(LN) $(NON_ESSENTIAL_DIST_FILES:%=$(src-dir)/%) $(distdir)/$(localdir);; \ esac - case "$(OUT_DIST_FILES)x" in x) ;; *) \ - mkdir $(distdir)/$(localdir)/out; \ - $(LN) $(OUT_DIST_FILES) $(distdir)/$(localdir)/out;; \ + mkdir -p $(distdir)/$(localdir)/$(outdir); \ + $(LN) $(OUT_DIST_FILES) $(distdir)/$(localdir)/$(outdir);; \ esac -# $(foreach i, $(SUBDIRS), $(MAKE) distdir=../$(distdir) localdir=$(localdir)/$(i) -C $(i) local-dist &&) true -# absolute for installed stepmake - $(foreach i, $(SUBDIRS), $(MAKE) topdir=$(topdir) distdir=$(distdir) localdir=$(localdir)/$(notdir $(i)) -C $(i) local-dist &&) true + $(foreach i, $(SUBDIRS), $(MAKE) top-src-dir=$(top-src-dir) distdir=$(distdir) localdir=$(localdir)/$(notdir $(i)) -C $(i) local-dist &&) true html: $(HTML_FILES) TAGS: - -if [ "$(TAGS_FILES)" != "" ]; then \ - etags -CT $(TAGS_FILES) || \ - ctags -h ".h.hh.tcc.icc" $(TAGS_FILES) $(ERROR_LOG); \ - fi - $(LOOP) + $(MAKE) local-tags + +DEEPER_TAGS_FILES = $(shell find $(pwd) -mindepth 2 -name 'TAGS') +local-tags: + -if [ -n "$(TAGS_HEADERS)$(TAGS_SOURCES)$(DEEPER_TAGS_FILES)" ]; then \ + etags $(ETAGS_FLAGS) $(DEEPER_TAGS_FILES:%=--include=%) \ + $(TAGS_SOURCES) $(TAGS_HEADERS) $(ERROR_LOG) ; \ + ctags $(CTAGS_FLAGS) $(TAGS_SOURCES) $(TAGS_HEADERS) \ + $(ERROR_LOG) ; \ + fi -# ugh . -> $(outdir) -$(outdir)/VERSION: $(depth)/VERSION - cp $< $@ - -$(outdir)/version.hh: $(outdir)/VERSION +$(outdir)/version.hh: $(depth)/VERSION $(config_make) $(step-bindir)/make-version.py $(PYTHON) $(step-bindir)/make-version.py $< > $@ -# should this be in Rules? +$(outdir)/config.hh: $(config_h) + cp -p $< $@ + configure: configure.in aclocal.m4 - autoconf + NOCONFIGURE=yes $(src-depth)/autogen.sh chmod +x configure -localclean: +local-clean: local-distclean: local-maintainerclean: install-strip: - $(MAKE) INSTALL="$(INSTALL) -s" install + $(MAKE) INSTALLPY="$(INSTALLPY) -s" install -install: localinstall +ifeq ($(strip $(depth)),.) +final-install: +else +final-install: $(LOOP) -localinstall: - -uninstall: localuninstall +install: local-install $(LOOP) +endif -localuninstall: - -installextradoc: - -$(INSTALL) -d $(prefix)/doc/$(package) - $(foreach i, $(EXTRA_DOC_FILES),\ - cp -r $(i) $(prefix)/doc/$(package) &&) true +local-install: -WWW: local-WWW +uninstall: local-uninstall $(LOOP) -local-WWW: +local-uninstall: -include $(stepdir)/package.make +installextradoc: + -$(INSTALLPY) -d $(DESTDIR)$(prefix)/doc/$(package) + cp -r $(EXTRA_DOC_FILES) $(prefix)/doc/$(package) -include $(outdir)/dummy.dep $(DEP_FILES) +include $(outdir)/dummy.dep $(wildcard $(outdir)/*.dep) # expect a warning here $(outdir)/dummy.dep: - -mkdir $(outdir) + @echo please ignore innocent warning about dummy.dep + -mkdir -p $(outdir) touch $(outdir)/dummy.dep - + echo '*' > $(outdir)/.gitignore check: local-check $(LOOP) @@ -182,9 +150,29 @@ check: local-check local-check: # ugh. ugh ugh ugh -$(depth)/$(configuration).make: $(depth)/configure - @echo "**************************************" +$(config_make): $(top-src-dir)/configure + @echo "************************************************************" @echo "configure changed! You should probably reconfigure manually." - @echo "**************************************" - (cd $(depth); ./config.status) + @echo "************************************************************" + (cd $(top-build-dir); ./config.status) touch $@ # do something for multiple simultaneous configs. + + +################ website. + +local-WWW: +local-WWW-post: +web-install: + +WWW: local-WWW + $(LOOP) + +WWW-post: local-WWW-post + $(LOOP) + +web: + $(MAKE) out=www WWW + $(MAKE) out=www WWW-post + +web-clean: + $(MAKE) out=www clean