aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-28 23:44:00 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-28 23:44:00 +0100
commitd26658642e018e36e848caa7d7587a213808913b (patch)
tree8fd12037ab8c61a7a2e33ca1e7a59a106d3947b2 /Makefile
parentman: broadcast 0 instead of pid if ephemeral (diff)
downloadbus-d26658642e018e36e848caa7d7587a213808913b.tar.gz
bus-d26658642e018e36e848caa7d7587a213808913b.tar.bz2
bus-d26658642e018e36e848caa7d7587a213808913b.tar.xz
move manpages from doc/ to doc/man/
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ea42914..3ccc296 100644
--- a/Makefile
+++ b/Makefile
@@ -40,22 +40,22 @@ man3: $(foreach M,${MAN3},bin/${M}.3)
man5: $(foreach M,${MAN5},bin/${M}.5)
man7: $(foreach M,${MAN7},bin/${M}.7)
-bin/%.1: doc/%.1
+bin/%.1: doc/man/%.1
@echo SED $@
@mkdir -p bin
@sed 's/%VERSION%/${VERSION}/g' < $< > $@
-bin/%.3: doc/%.3
+bin/%.3: doc/man/%.3
@echo SED $@
@mkdir -p bin
@sed 's/%VERSION%/${VERSION}/g' < $< > $@
-bin/%.5: doc/%.5
+bin/%.5: doc/man/%.5
@echo SED $@
@mkdir -p bin
@sed 's/%VERSION%/${VERSION}/g' < $< > $@
-bin/%.7: doc/%.7
+bin/%.7: doc/man/%.7
@echo SED $@
@mkdir -p bin
@sed 's/%VERSION%/${VERSION}/g' < $< > $@