diff options
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.in | 12 |
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: |