aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2003-09-17 23:59:13 +0000
committerMax Horn2003-09-17 23:59:13 +0000
commitec0d41137ca8bf414f674afd6f6103ad6e9bf0ac (patch)
tree2fae539eb8617812ccc01d08299b2d0839d1cc40
parentf6ecb2e95d5934a70e73b0164a745c3131cfce1a (diff)
downloadscummvm-rg350-ec0d41137ca8bf414f674afd6f6103ad6e9bf0ac.tar.gz
scummvm-rg350-ec0d41137ca8bf414f674afd6f6103ad6e9bf0ac.tar.bz2
scummvm-rg350-ec0d41137ca8bf414f674afd6f6103ad6e9bf0ac.zip
fix Circular dependency warning
svn-id: r10286
-rw-r--r--Makefile.common2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 7e10a67a0b..27acb8c9d2 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -93,7 +93,7 @@ CPPFLAGS:= $(DEFINES) $(INCLUDES)
# Make main.o depend on all other object files. This way if anything is
# changed, it causes main.cpp to be recompiled. This in turn ensures that
# the build date in gScummVMBuildDate is correct.
-base/main.o: $(OBJS)
+base/main.o: $(filter-out base/libbase.a,$(OBJS))
# The build rule for the ScummVM executable
scummvm$(EXEEXT): $(OBJS)