summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile31
1 files changed, 20 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index f6edc50..52b7011 100644
--- a/Makefile
+++ b/Makefile
@@ -1,19 +1,28 @@
#######################################################################
-# Makefile for RHLP docs project
-# Created by: Tammy Fox <tfox@redhat.com>
-# Last edited by: Tammy Fox <tfox@redhat.com>
-# WARNING: need passivetex 1.24 for pdf generation to work
+# Makefile for Fedora Documentation Project
# License: GPL
-# Copyright 2003 Tammy Fox, Red Hat, Inc.
+# Copyright 2003-2006 Tammy Fox, Red Hat, Inc., Tommy Reynolds,
+# Paul W. Frields
#######################################################################
-LANGUAGES = en zh_CN
+PRI_LANG = en_US
+OTHERS = zh_CN
DOCBASE = documentation-guide
-XMLEXTRAFILES-en=acknowledgments-en.xml docs-emacs-en.xml \
- docs-emacs-nxml-en.xml docs-getting-files-en.xml \
- docs-intro-en.xml docs-rh-guidelines-en.xml docs-style-en.xml \
- docs-tutorial-en.xml docs-vim-en.xml docs-xml-tags-en.xml \
- documentation-guide-en.xml
+
+define XMLFILES_template
+XMLFILES-${1}= ${1}/acknowledgments.xml \
+ ${1}/docs-emacs-nxml.xml \
+ ${1}/docs-emacs.xml \
+ ${1}/docs-getting-files.xml \
+ ${1}/docs-intro.xml \
+ ${1}/docs-rh-guidelines.xml \
+ ${1}/docs-style.xml \
+ ${1}/docs-tutorial.xml \
+ ${1}/docs-vim.xml \
+ ${1}/docs-xml-tags.xml \
+ ${1}/documentation-guide.xml
+endef
+
######################################################
include ../docs-common/Makefile.common