diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-10 21:35:50 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-12-10 21:35:50 +0100 |
commit | 0cbd772a245b420fb84761dd8addbf0f45bb4013 (patch) | |
tree | ec843bc2c449736271b94903ed67fb0e6e06264d /buildlib/yodl_manpage.mak | |
parent | 3e2f480d7ad43f565bf2253fc598c2b80a22560f (diff) | |
parent | 49012e99a80a08925e4ad9911308c1c1b5cb33fb (diff) |
merged -r1901..1911 from lp:~donkult/apt/sid
Diffstat (limited to 'buildlib/yodl_manpage.mak')
-rw-r--r-- | buildlib/yodl_manpage.mak | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/buildlib/yodl_manpage.mak b/buildlib/yodl_manpage.mak deleted file mode 100644 index a5f436f60..000000000 --- a/buildlib/yodl_manpage.mak +++ /dev/null @@ -1,42 +0,0 @@ -# -*- make -*- - -# This handles man pages in YODL format. We convert to the respective -# output in the source directory then copy over to the final dest. This -# means yodl is only needed if compiling from CVS - -# Input -# $(SOURCE) - The documents to use, in the form foo.sect, ie apt-cache.8 -# the yodl files are called apt-cache.8.yo - -# See defaults.mak for information about LOCAL - -# Some local definitions -ifdef YODL_MAN - -LOCAL := yodl-manpage-$(firstword $(SOURCE)) -$(LOCAL)-LIST := $(SOURCE) - -# Install generation hooks -doc: $($(LOCAL)-LIST) -veryclean: veryclean/$(LOCAL) - -$($(LOCAL)-LIST) :: % : %.yo - echo Creating man page $@ - yodl2man -o $@ $< - -# Clean rule -.PHONY: veryclean/$(LOCAL) -veryclean/$(LOCAL): - -rm -rf $($(@F)-LIST) - -else - -# Strip from the source list any man pages we dont have compiled already -SOURCE := $(wildcard $(SOURCE)) - -endif - -# Chain to the manpage rule -ifneq ($(words $(SOURCE)),0) -include $(MANPAGE_H) -endif |