example-tutorial Makefile,1.8,1.9

Tommy Reynolds (jtr) fedora-docs-commits at redhat.com
Wed Jun 29 02:16:48 UTC 2005


Author: jtr

Update of /cvs/docs/example-tutorial
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv24282/example-tutorial

Modified Files:
	Makefile 
Log Message:
Move _ALL_ default targets and rules into "Makefile.common" as
double-colon targets, so they can be appended-to by a document without
needing to rewrite "Makefile.common".



Index: Makefile
===================================================================
RCS file: /cvs/docs/example-tutorial/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Makefile	28 Jun 2005 21:25:16 -0000	1.8
+++ Makefile	29 Jun 2005 02:16:46 -0000	1.9
@@ -1,31 +1,29 @@
 ###############################################################################
 # Makefile for RHLP docs project
 # Created by: Tammy Fox <tfox at redhat.com>
-# Last edited by: Tammy Fox <tfox at redhat.com>
+# Last edited by: Tommy Reynolds <Tommy.Reynolds at MegaCoder.com>
 # WARNING: need passivetex 1.24 for pdf generation to work
 # License: GPL
 # Copyright 2003 Tammy Fox, Red Hat, Inc.
+# Copyright 2005 Tommy Reynolds, MegaCoder.com
 ###############################################################################
 
-XSLPDF         = ../docs-common/xsl/main-pdf.xsl
-XSLHTML        = ../docs-common/xsl/main-html.xsl
-LANG	       = en
-DOCNAME        = example-tutorial-$(LANG)
-XMLFILE        = $(DOCNAME).xml
+XSLPDF		= ../docs-common/xsl/main-pdf.xsl
+XSLHTML        	= ../docs-common/xsl/main-html.xsl
+LANG	       	= en
+DOCNAME        	= example-tutorial-$(LANG)
+XMLFILE        	= $(DOCNAME).xml
+XMLEXTRAFILES	=
 
 ######################################################
 include ../docs-common/Makefile.common
 ######################################################
-html: 
-	@xmlto html -x $(XSLHTML) -o $(DOCNAME) $(XMLFILE)
-	@mkdir -p $(DOCNAME)/stylesheet-images
-	@cp ../docs-common/stylesheet-images/*.png $(DOCNAME)/stylesheet-images
-	@cp ../docs-common/css/fedora.css $(DOCNAME)
 
-
-pdf:
-	@xmlto pdf -x $(XSLPDF) $(XMLFILE)
-######################################################
-
-clean: 
-	@rm -rfv *.html *.pdf *.tex $(DOCNAME)
+# If you want to add additional steps to any of the 
+# targets defined in "Makefile.common", be sure to use
+# a double-colon in your rule here.  For example, to 
+# print the message "FINISHED AT LAST" after building 
+# the HTML document version, uncomment the following 
+# line:
+#${DOCNAME}/index.html::
+#	echo FINISHED AT LAST




More information about the Fedora-docs-commits mailing list