List:Commits« Previous MessageNext Message »
From:paul Date:April 18 2006 4:18pm
Subject:svn commit - mysqldoc@docsrva: r1855 - in trunk: . sample-data/sakila
View as plain text  
Author: paul
Date: 2006-04-18 18:18:20 +0200 (Tue, 18 Apr 2006)
New Revision: 1855

Log:
 r6732@polar:  paul | 2006-04-18 11:18:22 -0500
 Add Makefile.


Added:
   trunk/sample-data/sakila/Makefile
Modified:
   trunk/


Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:6711
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:9486
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:4505
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:6732
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:9486
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:4505

Added: trunk/sample-data/sakila/Makefile
===================================================================
--- trunk/sample-data/sakila/Makefile	                        (rev 0)
+++ trunk/sample-data/sakila/Makefile	2006-04-18 16:18:20 UTC (rev 1855)
@@ -0,0 +1,53 @@
+# sakila database Makefile
+
+# Location of repository root relative to current directory
+REPO_ROOT = ../..
+
+# Location of directory containing Makefile components
+MAKE_DIR = $(REPO_ROOT)/make.d
+
+# Set any variables here that should override imported standard variables
+
+DOC_LANG = en
+
+# Import standard variables
+
+include $(MAKE_DIR)/vars-layout
+include $(MAKE_DIR)/vars-shell
+include $(MAKE_DIR)/vars-docbook
+
+all::
+	@echo "You must say what you want to do."
+	@echo "Some commands supported by this Makefile:"
+	@echo "  make clean"
+	@echo "  make doc_name.html"
+	@echo "  make doc_name.pdf"
+	@echo "  make doc_name.txt"
+
+depend:: sakila.depend
+
+# Dependency list for sakila document
+# This variable is updated by "make depend"
+
+SAKILA_SRCS_EXTRA = sakila.ent
+SAKILA_SRCS = $(SAKILA_SRCS_EXTRA) sakila.xml images/sakila-schema.png changelog.xml 
+
+sakila-prepped.xml = $(WORLD_SETUP_SRCS)
+
+#%.txt: %.html
+#	lynx -dump $< > $@
+
+clean::
+	$(RM) sakila.txt
+
+# Import standard target rules
+
+include $(MAKE_DIR)/xml-valid
+include $(MAKE_DIR)/xml-format
+include $(MAKE_DIR)/xml-prep
+include $(MAKE_DIR)/xml-html
+include $(MAKE_DIR)/xml-html-web-single
+include $(MAKE_DIR)/xml-pdf
+include $(MAKE_DIR)/xml-toc
+include $(MAKE_DIR)/xml-txt
+include $(MAKE_DIR)/xml-depend

Thread
svn commit - mysqldoc@docsrva: r1855 - in trunk: . sample-data/sakilapaul18 Apr