diff options
author | P. J. McDermott <pjm@nac.net> | 2012-03-06 13:48:58 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-03-06 13:48:58 (EST) |
commit | ffede375da86950a1518b10b80f0a0bea2f749b3 (patch) | |
tree | 57ffd2bdc2779d4bbc54ba71f40427543a041750 /lib | |
parent | e206c6620ac6c3f2fd01dd2d1b1390e6e262cd8f (diff) |
Fix $(OBJS) targets in build system.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 53dc1b6..711eee1 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -26,6 +26,7 @@ PREFIX = @prefix@ LIBDIR = @libdir@ .SUFFIXES: +.SUFFIXES: .sh SRCS = controlfields.sh architecture.sh archive.sh OBJS = $(SRCS:.sh=) @@ -41,7 +42,7 @@ all: $(OBJS) $(OBJS): @printf ' SED %s\n' '$@' - @sed -f ../sedscript $(SRCDIR)/lib/$*.sh > $@ + @sed -f ../sedscript $(SRCDIR)/lib/$@.sh > $@ .PHONY: clean clean: |