summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 3b46e6fd44f3d01d7d3f5a8180131779f4792adc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#######################################################################
# Makefile for Fedora Documentation Project
# License: GPL
# Copyright 2003-2006 Tammy Fox, Red Hat, Inc., Tommy Reynolds, 
# Paul W. Frields
#######################################################################

PRI_LANG	       	= en_US
DOCBASE 	       	= documentation-guide

define	XMLFILES_template
XMLFILES-${1}=		${1}/acknowledgments.xml			\
			${1}/emacs-nxml.xml				\
			${1}/emacs.xml					\
			${1}/getting-files.xml				\
			${1}/intro.xml					\
			${1}/module-struct.xml				\
			${1}/writing-guidelines.xml			\
			${1}/style.xml					\
			${1}/tutorial.xml				\
			${1}/vim.xml					\
			${1}/publishing.xml				\
			${1}/l10n.xml					\
			${1}/${DOCBASE}.xml
endef


######################################################
define find-makefile-common 
for d in docs-common ../docs-common ../../docs-common; do \
if [ -f $$d/Makefile.common ]; then echo "$$d/Makefile.common"; break; fi; done 
endef 
include $(shell $(find-makefile-common))
######################################################