]> git.saurik.com Git - apt-legacy.git/blame - buildlib/manpage.mak
Commit that APT bug fix from their bug tracker.
[apt-legacy.git] / buildlib / manpage.mak
CommitLineData
da6ee469
JF
1# -*- make -*-
2
3# This installs man pages into the doc directory
4
5# Input
6# $(SOURCE) - The documents to use
7
0e5943eb 8# All output is written to files in the build doc directory
da6ee469
JF
9
10# See defaults.mak for information about LOCAL
11
12# Some local definitions
13LOCAL := manpage-$(firstword $(SOURCE))
14$(LOCAL)-LIST := $(addprefix $(DOC)/,$(SOURCE))
15
16# Install generation hooks
17doc: $($(LOCAL)-LIST)
18veryclean: veryclean/$(LOCAL)
19
20MKDIRS += $(DOC)
21
22$($(LOCAL)-LIST) : $(DOC)/% : %
23 echo Installing man page $< to $(@D)
24 cp $< $(@D)
25
26# Clean rule
27.PHONY: veryclean/$(LOCAL)
28veryclean/$(LOCAL):
29 -rm -rf $($(@F)-LIST)