diff options
author | Michael Vogt <mvo@debian.org> | 2010-10-14 14:38:56 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2010-10-14 14:38:56 +0200 |
commit | 5a66868c039f3ca0307816d52d393eb9c6f6d682 (patch) | |
tree | e1a0eba51fed7466b5b61fa892db1d70c7dd0809 /buildlib/po4a_manpage.mak | |
parent | be61b563c20267c521494cca92bd7ac158366c89 (diff) | |
parent | a5c486e061f7da07784adbdce77a2775dfcac0ea (diff) |
merged from http://code.launchpad.net/~donkult/apt/sid
Diffstat (limited to 'buildlib/po4a_manpage.mak')
-rw-r--r-- | buildlib/po4a_manpage.mak | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index 11dc11d28..404bb57a5 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -11,7 +11,7 @@ # generate a list of accepted man page translations SOURCE = $(patsubst %.xml,%,$(wildcard *.$(LC).?.xml)) -INCLUDES = apt.ent +INCLUDES = apt.ent apt-verbatim.ent # Do not use XMLTO, build the manpages directly with XSLTPROC ifdef XSLTPROC @@ -25,6 +25,9 @@ $(LOCAL)-LIST := $(SOURCE) doc: $($(LOCAL)-LIST) veryclean: veryclean/$(LOCAL) +apt-verbatim.ent: ../apt-verbatim.ent + cp ../apt-verbatim.ent . + $($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) echo Creating man page $@ $(XSLTPROC) -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here??? @@ -34,7 +37,7 @@ $($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) # Clean rule .PHONY: veryclean/$(LOCAL) veryclean/$(LOCAL): - -rm -rf $($(@F)-LIST) apt.ent apt.$(LC).8 \ + -rm -rf $($(@F)-LIST) apt.ent apt-verbatim.ent apt.$(LC).8 \ $(addsuffix .xml,$($(@F)-LIST)) \ offline.$(LC).sgml guide.$(LC).sgml |