5 # Bring in the default rules
6 include ../../buildlib/defaults.mak
8 # Do not use XMLTO, build the manpages directly with XSLTPROC
10 # generate a list of accepted man page translations
11 SOURCE = $(patsubst ../%.xml,%,$(wildcard ../*.?.xml))
12 INCLUDES = ../apt.ent ../apt-verbatim.ent
13 STYLESHEET=../manpage-style.xsl
15 LOCAL := manpage-$(firstword $(SOURCE))
16 $(LOCAL)-LIST := $(SOURCE)
18 # Install generation hooks
19 manpages: $($(LOCAL)-LIST) apt.8
21 $($(LOCAL)-LIST) :: % : ../%.xml $(STYLESHEET) $(INCLUDES)
22 echo Creating man page $@
23 $(XSLTPROC) -o $@ $(STYLESHEET) $<
29 .PHONY: clean/$(LOCAL)
30 veryclean: clean/$(LOCAL)
33 -rm -rf $($(@F)-LIST) apt.8
36 # Chain to the manpage rule