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 /lib/Makefile.in | |
parent | db312b19138cb589ded82f65b07179a63c9e00cd (diff) |
Translate from 'SRCS' to 'OBJS' in build system.
Diffstat (limited to 'lib/Makefile.in')
-rw-r--r-- | lib/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index f0ecb1a..53dc1b6 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -27,20 +27,21 @@ LIBDIR = @libdir@ .SUFFIXES: -OBJS = controlfields architecture archive +SRCS = controlfields.sh architecture.sh archive.sh +OBJS = $(SRCS:.sh=) PACKAGE = @package@ VERSION = @version@ distdir = ../$(PACKAGE)-$(VERSION)/lib -distfiles = Makefile.in $(OBJS) +distfiles = Makefile.in $(SRCS) .PHONY: all all: $(OBJS) $(OBJS): @printf ' SED %s\n' '$@' - @sed -f ../sedscript $(SRCDIR)/lib/$@ > $@ + @sed -f ../sedscript $(SRCDIR)/lib/$*.sh > $@ .PHONY: clean clean: |