diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-05-05 12:34:15 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-05-05 12:34:15 +0200 |
commit | 0808e4845c7deb4af8a277b39f60ec321e5181d1 (patch) | |
tree | cc38cd0daeb001e85d3e000b9fcf31cffc0e2164 | |
parent | screensaver protocols (diff) | |
download | mds-0808e4845c7deb4af8a277b39f60ec321e5181d1.tar.gz mds-0808e4845c7deb4af8a277b39f60ec321e5181d1.tar.bz2 mds-0808e4845c7deb4af8a277b39f60ec321e5181d1.tar.xz |
m makefile
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | mk/build-doc.mk | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -8,6 +8,9 @@ include mk/config.mk +# Splits of the info manual. +INFOPARTS = 1 2 + # Object files for the libary. LIBOBJ = linked-list client-list hash-table fd-table mds-message util diff --git a/mk/build-doc.mk b/mk/build-doc.mk index 613d2cc..d3b735c 100644 --- a/mk/build-doc.mk +++ b/mk/build-doc.mk @@ -30,7 +30,7 @@ obj/logo.ps: doc/logo.svg rsvg-convert --format=ps $< > $@ -bin/%.info bin/%.info-1 bin/%.info-2: doc/info/%.texinfo doc/info/*.texinfo +bin/%.info $(foreach P,$(INFOPARTS),bin/%.info-$(P)): doc/info/%.texinfo doc/info/*.texinfo @mkdir -p bin $(MAKEINFO) $(TEXIFLAGS) $< mv $*.info $*.info-* bin |