summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-03-06 13:16:39 (EST)
committer P. J. McDermott <pjm@nac.net>2012-03-06 13:16:39 (EST)
commitf74139e8e838a3b3d68ba3ca5f203a24241cf489 (patch)
tree4fe11f696e87f23ff89dba8c286baa45b9ee3181 /man
parentdb312b19138cb589ded82f65b07179a63c9e00cd (diff)
Translate from 'SRCS' to 'OBJS' in build system.
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.in12
1 files changed, 7 insertions, 5 deletions
diff --git a/man/Makefile.in b/man/Makefile.in
index c8141bb..3868c97 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -27,22 +27,24 @@ MANDIR = @mandir@
.SUFFIXES:
-OBJS = opkbuild.1 oh-checkbuilddeps.1 oh-applypatches.1 oh-copyconfig.1 \
- oh-strip.1 oh-installfiles.1 oh-installdocs.1 oh-gencontrol.1 \
- oh-buildopk.1
+SRCS = opkbuild.1.in \
+ oh-checkbuilddeps.1.in oh-applypatches.1.in oh-copyconfig.1.in \
+ oh-strip.1.in oh-installfiles.1.in oh-installdocs.1.in \
+ oh-gencontrol.1.in oh-buildopk.1.in
+OBJS = $(SRCS:.in=)
PACKAGE = @package@
VERSION = @version@
distdir = ../$(PACKAGE)-$(VERSION)/man
-distfiles = Makefile.in $(OBJS)
+distfiles = Makefile.in $(SRCS)
.PHONY: all
all: $(OBJS)
$(OBJS):
@printf ' CP man/%s\n' '$@'
- @cp $(SRCDIR)/man/$@ $@
+ @cp $(SRCDIR)/man/$*.in $@
.PHONY: clean
clean: