summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2005-06-29 14:16:11 +0000
committerPaul W. Frields <stickster@gmail.com>2005-06-29 14:16:11 +0000
commita11f3884c0ef31abedaa8c4c09ff4ca2dba02a81 (patch)
treec89ee87aab8fe45d9bdaad104db909e6e749f4a6
parent6a040c56b423e74a965f90417410ff28608a1a35 (diff)
downloadfedora-doc-utils-a11f3884c0ef31abedaa8c4c09ff4ca2dba02a81.tar.gz
fedora-doc-utils-a11f3884c0ef31abedaa8c4c09ff4ca2dba02a81.tar.xz
fedora-doc-utils-a11f3884c0ef31abedaa8c4c09ff4ca2dba02a81.zip
Added html-nochunks target
-rw-r--r--Makefile.common6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index f3e6b16..959404f 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -6,6 +6,7 @@
# all -- Default target, builds HTML document only
# ${DOCNAME}/index.html -- Builds HTML version of document
# html -- See "${DOCNAME}/index.html"
+# html-nochunks -- See "${DOCNAME}.html"; single HTML file
# ${DOCNAME}.tar.gz -- Packages HTML document into a tar archive
# tarball -- See "${DOCNAME}.tar.gz"
# clean -- Deletes all generated files and directories
@@ -44,8 +45,11 @@ html ${DOCNAME}/index.html:: ${XMLFILE} ${XMLEXTRAFILES}
cp ../docs-common/stylesheet-images/*.png $(DOCNAME)/stylesheet-images
cp ../docs-common/css/fedora.css $(DOCNAME)
+html-nochunks $(DOCNAME).html:: ${XMLFILE} ${XMLEXTRAFILES}
+ xmlto html-nochunks -x $(XSLHTMLNOCHUNKS) $(XMLFILE)
+
# The "clean" or "distclean" target will remove all generated and temporary
# files.
distclean clean:
- ${RM} -r ${DOCNAME}.pdf $(DOCNAME) ${DOCNAME}.tar.gz
+ ${RM} -r ${DOCNAME}.pdf $(DOCNAME) ${DOCNAME}.tar.gz ${DOCNAME}.html