]> git.saurik.com Git - apt.git/blame_incremental - doc/en/makefile
FildFd: Introduce a Flush() function and call it from Close()
[apt.git] / doc / en / makefile
... / ...
CommitLineData
1# -*- make -*-
2BASE=../..
3SUBDIR=doc/en
4
5# Bring in the default rules
6include ../../buildlib/defaults.mak
7
8# Do not use XMLTO, build the manpages directly with XSLTPROC
9ifdef XSLTPROC
10# generate a list of accepted man page translations
11SOURCE = $(patsubst ../%.xml,%,$(wildcard ../*.?.xml))
12INCLUDES = ../apt.ent ../apt-verbatim.ent apt-vendor.ent
13STYLESHEET=../manpage-style.xsl
14
15LOCAL := manpage-$(firstword $(SOURCE))
16$(LOCAL)-LIST := $(SOURCE)
17
18apt-vendor.ent: ../../vendor/current/apt-vendor.ent
19 ln -sf '$(abspath $^)' $@
20
21# Install generation hooks
22manpages: $($(LOCAL)-LIST)
23
24$($(LOCAL)-LIST) :: % : ../%.xml $(STYLESHEET) $(INCLUDES)
25 echo Creating man page $@
26 $(XSLTPROC) -o $@ $(STYLESHEET) $<
27
28# Clean rule
29.PHONY: clean/$(LOCAL)
30veryclean: clean/$(LOCAL)
31clean: clean/$(LOCAL)
32clean/$(LOCAL):
33 -rm -rf $($(@F)-LIST) apt-vendor.ent
34endif
35
36# Chain to the manpage rule
37include $(MANPAGE_H)