From f74139e8e838a3b3d68ba3ca5f203a24241cf489 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 06 Mar 2012 13:16:39 -0500 Subject: Translate from 'SRCS' to 'OBJS' in build system. --- (limited to 'src/Makefile.in') 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: -- cgit v0.9.1