diff options
author | P. 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) |
commit | f74139e8e838a3b3d68ba3ca5f203a24241cf489 (patch) | |
tree | 4fe11f696e87f23ff89dba8c286baa45b9ee3181 /src | |
parent | db312b19138cb589ded82f65b07179a63c9e00cd (diff) |
Translate from 'SRCS' to 'OBJS' in build system.
Diffstat (limited to 'src')
-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: |