summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-22 23:59:09 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-22 23:59:09 +0000
commit3d9e60daeccb7c09c4b4313232d628c8d5344963 (patch)
tree9353a37cdf5a476052613904ab39185316ebec65 /Makefile.in
parent22966ab6fb43e74ad8e7386255d0b0da10bbe09a (diff)
downloadquilt-3d9e60daeccb7c09c4b4313232d628c8d5344963.tar.gz
- Don't include any object files in LIBOBJS that we don't have.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 0815e81..b9e2dd0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -48,7 +48,7 @@ LDFLAGS += @LDFLAGS@
LIBS := @LIBS@
EXEEXT := @EXEEXT@
-LIBOBJS := $(patsubst %,lib/%,@LIBOBJS@)
+LIBOBJS := $(filter $(patsubst lib/%.c,lib/%.o,$(wildcard lib/*.c)), $(patsubst %,lib/%,@LIBOBJS@))
ifneq ($(LIBOBJS),)
CFLAGS += -Ilib
endif