List:Commits« Previous MessageNext Message »
From:mcbrown Date:September 6 2006 3:49pm
Subject:svn commit - mysqldoc@docsrva: r3263 - trunk
View as plain text  
Author: mcbrown
Date: 2006-09-06 17:49:01 +0200 (Wed, 06 Sep 2006)
New Revision: 3263

Log:
Adding: 

clean
realclean
idmap

As top level operations, so you can now clean, really clean and rebuild all the ID maps for the repository

Help for above



Modified:
   trunk/Makefile


Modified: trunk/Makefile
===================================================================
--- trunk/Makefile	2006-09-06 15:34:42 UTC (rev 3262)
+++ trunk/Makefile	2006-09-06 15:49:01 UTC (rev 3263)
Changed blocks: 2, Lines Added: 30, Lines Deleted: 0; 1178 bytes

@@ -1,5 +1,11 @@
 # mysqldoc repository
 
+# Set list of subdirectories
+
+SUBDIRS = administrator gui-common guibook internals migration-toolkit \
+	     ndbapi query-browser refman-4.1 refman-5.0 refman-5.1 refman-common \
+	     workbench
+
 # Top-level Makefile
 
 all:

@@ -7,3 +13,27 @@
 	@echo "have their own directory.  To work on a document"
 	@echo "(for example, to edit it or to generate output),"
 	@echo "cd into the document directory first."
+
+help::
+	@echo "make idmap            - make ID maps for all subdirectories"
+	@echo "make clean            - clean all subdirectories"
+	@echo "make realclean        - clean all subdirectories including metadata"
+
+
+idmap: 
+	@ for dir in $(SUBDIRS); do\
+		$(shell echo $(dir) ) \
+		$(MAKE) -C $$dir idmap; \
+        done
+
+clean: 
+	@ for dir in $(SUBDIRS); do\
+		$(shell echo $(dir) ) \
+		$(MAKE) -C $$dir clean; \
+        done
+
+realclean: 
+	@ for dir in $(SUBDIRS); do\
+		$(shell echo $(dir) ) \
+		$(MAKE) -C $$dir realclean; \
+        done


Thread
svn commit - mysqldoc@docsrva: r3263 - trunkmcbrown6 Sep