List:Commits« Previous MessageNext Message »
From:mcbrown Date:March 29 2007 7:04pm
Subject:svn commit - mysqldoc@docsrva: r5641 - trunk/make.d
View as plain text  
Author: mcbrown
Date: 2007-03-29 21:04:10 +0200 (Thu, 29 Mar 2007)
New Revision: 5641

Log:
Simplified rules for building dynamic docs



Modified:
   trunk/make.d/xml-dynxml


Modified: trunk/make.d/xml-dynxml
===================================================================
--- trunk/make.d/xml-dynxml	2007-03-29 19:03:52 UTC (rev 5640)
+++ trunk/make.d/xml-dynxml	2007-03-29 19:04:10 UTC (rev 5641)
Changed blocks: 1, Lines Added: 4, Lines Deleted: 25; 2217 bytes

@@ -19,46 +19,25 @@
 	        --outpath=$@-tmp $< ; \
 	mv $@-tmp $@
 
-database-administration.xml: dba-optvars-table.xml dba-core.xml $(DYN_SRCDIR)/mysqld-optvar/options.xml
+dynxml-generated-dba.xml: dba-optvars-table.xml dba-core.xml $(DYN_SRCDIR)/mysqld-optvar/options.xml
 	$(DYN_OPTVAR_ITEMSUMMARY) \
 	        --version $(IDMAP_VER) \
 	        --command mysqld \
 	        --inplace=dba-core.xml --outfile=$@-tmp $(DYN_SRCDIR)/mysqld-optvar/options.xml ; \
 	mv $@-tmp $@
 
-functions.xml:  dynamic-opsfunctions-summary-table.xml \
-		dynamic-operators-summary-table.xml \
-		dynamic-funcs-datetime-summary-table.xml \
-		$(DYN_SRCDIR)/opsfunctions/operators.xml \
-		$(DYN_SRCDIR)/opsfunctions/functions.xml 
-
-dynamic-operators-summary-table.xml: $(DYN_SRCDIR)/opsfunctions/operators.xml
+dynxml-generated-functions.xml: functions-core.xml $(DYN_SRCDIR)/opsfunctions/operators.xml $(DYN_SRCDIR)/opsfunctions/functions.xml 
 	$(DYN_OPSFUNCS_SUMMARY) \
 	        --version $(IDMAP_VER) \
-		--outfile=$@-tmp \
-		$(DYN_SRCDIR)/opsfunctions/operators.xml ; \
-	mv $@-tmp $@
-
-dynamic-opsfunctions-summary-table.xml: $(DYN_SRCDIR)/opsfunctions/operators.xml $(DYN_SRCDIR)/opsfunctions/functions.xml 
-	$(DYN_OPSFUNCS_SUMMARY) \
-	        --version $(IDMAP_VER) \
-		--outfile=$@-tmp \
+		--inplace=functions-core.xml --outfile=$@-tmp \
 		$(DYN_SRCDIR)/opsfunctions/operators.xml $(DYN_SRCDIR)/opsfunctions/functions.xml ; \
 	mv $@-tmp $@
 
-dynamic-funcs-datetime-summary-table.xml: $(DYN_SRCDIR)/opsfunctions/functions.xml 
-	$(DYN_OPSFUNCS_SUMMARY) \
-	        --version $(IDMAP_VER) \
-		--outfile=$@-tmp \
-		--class=datetime \
-		$(DYN_SRCDIR)/opsfunctions/functions.xml ; \
-	mv $@-tmp $@
-
 clean::
 	$(RM) dba-optvars-table.xml dba-optvars-table.xml-tmp* 
 	$(RM) database-administration.xml database-administration.xml-tmp*
 	$(RM) -r dba-optvars-itemtables dba-optvars-itemtables-tmp*
-	$(RM) dynamic-*-summary-table.xml
+	$(RM) functions.xml
 
 help::
 	@echo "make dba-optvars-table.xml - generate option/variable table"


Thread
svn commit - mysqldoc@docsrva: r5641 - trunk/make.dmcbrown29 Mar