From 7cd8ff65017e5a0693979317ff4005384383479b Mon Sep 17 00:00:00 2001 From: Cédric Bosdonnat Date: Fri, 3 Jul 2009 15:56:28 +0200 Subject: Script and make target to create ctags file * Makefile.shared: * bin/create-tags: --- Makefile.shared | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'Makefile.shared') diff --git a/Makefile.shared b/Makefile.shared index 36bc6a08f..e2ef7dc01 100644 --- a/Makefile.shared +++ b/Makefile.shared @@ -88,12 +88,15 @@ $(STAMP_DIR)/build.tools : $(STAMP_DIR)/prebuild cd $(top_srcdir)/bin ; ./build-tools touch $@ -build : $(STAMP_DIR)/build -$(STAMP_DIR)/build : $(OOBUILDDIR)/unpack \ +build.prepare : $(STAMP_DIR)/build_prepared +$(STAMP_DIR)/build_prepared : $(OOBUILDDIR)/unpack \ $(STAMP_DIR)/patch.apply \ $(STAMP_DIR)/artwork.install \ $(STAMP_DIR)/build.tools \ $(STAMP_DIR)/prebuild + touch $@ +build : $(STAMP_DIR)/build +$(STAMP_DIR)/build : $(STAMP_DIR)/build_prepared cd $(top_srcdir)/bin ; ./build-ooo touch $@ @@ -119,6 +122,10 @@ id : $(OOBUILDDIR)/ID $(OOBUILDDIR)/ID : $(STAMP_DIR)/build cd $(OOBUILDDIR); $(TOOLSDIR)/bin/create-ids +tags: $(OOBUILDDIR)/tags +$(OOBUILDDIR)/tags: $(STAMP_DIR)/build_prepared + cd $(OOBUILDDIR); $(TOOLSDIR)/bin/create-tags + gitignore : $(OOBUILDDIR)/.gitignore $(OOBUILDDIR)/.gitignore : $(OOBUILDDIR)/unpack cd $(OOBUILDDIR); $(TOOLSDIR)/bin/create-gitignores.sh @@ -138,8 +145,10 @@ help: @echo "" @echo " * dev-install: installs with links to the build tree" @echo " * id: generates the GNU ID database" + @echo " * tags: generates the tags file" @echo " * gitignore: creates the default .gitignore file in the unpacked sources" @echo " * smoketest: runs the automated tests" @echo " * patch.apply: applies the patches to the sources" @echo " * patch.unapply: revert the applied patches" @echo " * patch.list: list the applied patches" + @echo " * build.prepare: runs everything before the real build" -- cgit v1.2.3