diff options
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 62eaded..ff338da 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -27,22 +27,24 @@ BINDIR = @bindir@ .SUFFIXES: -OBJS = opkbuild oh-checkbuilddeps oh-applypatches oh-copyconfig \ - oh-strip oh-installfiles oh-installdocs oh-gencontrol \ - oh-buildopk +SRCS = opkbuild.sh \ + oh-checkbuilddeps.sh oh-applypatches.sh oh-copyconfig.sh \ + oh-strip.sh oh-installfiles.sh oh-installdocs.sh \ + oh-gencontrol.sh oh-buildopk.sh +OBJS = $(SRCS:.sh=) PACKAGE = @package@ VERSION = @version@ distdir = ../$(PACKAGE)-$(VERSION)/src -distfiles = Makefile.in $(OBJS) +distfiles = Makefile.in $(SRCS) .PHONY: all all: $(OBJS) $(OBJS): @printf ' SED %s\n' '$@' - @sed -f ../sedscript $(SRCDIR)/src/$@ > $@ + @sed -f ../sedscript $(SRCDIR)/src/$*.sh > $@ .PHONY: clean clean: |