summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: cec539b88a47cd4df0ac8b84d3fa1edd41aed33c (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
OTHERS			= pt # pt_BR zh_CN 
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}/xml-tags.xml				\
			${1}/documentation-guide.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))
######################################################