aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.common6
-rw-r--r--Makefile.rules6
2 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.common b/Makefile.common
index b28b4997f6..5755ece34d 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -20,7 +20,7 @@
# in the current directory.
#
-# Default Rule:
+# Default Rule: Make sure it's also a :: rule
all ::
# Default for install is to at least build everything...
@@ -115,11 +115,11 @@ all:: $(LIBNAME_G)
#$(LIBNAME_O)
# TODO: Enable optimized builds
-$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir
+$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir Depend/.dir
@echo ======= Linking $(LIBRARYNAME) release library =======
$(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
-$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir
+$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir Depend/.dir
@echo ======= Linking $(LIBRARYNAME) debug library =======
$(MakeSOG) -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)
diff --git a/Makefile.rules b/Makefile.rules
index b28b4997f6..5755ece34d 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -20,7 +20,7 @@
# in the current directory.
#
-# Default Rule:
+# Default Rule: Make sure it's also a :: rule
all ::
# Default for install is to at least build everything...
@@ -115,11 +115,11 @@ all:: $(LIBNAME_G)
#$(LIBNAME_O)
# TODO: Enable optimized builds
-$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir
+$(LIBNAME_O): $(ObjectsO) $(LibSubDirs) Release/.dir Depend/.dir
@echo ======= Linking $(LIBRARYNAME) release library =======
$(MakeSOO) -o $@ $(ObjectsO) $(LibSubDirs) $(LibLinkOpts)
-$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir
+$(LIBNAME_G): $(ObjectsG) $(LibSubDirs) Debug/.dir Depend/.dir
@echo ======= Linking $(LIBRARYNAME) debug library =======
$(MakeSOG) -o $@ $(ObjectsG) $(LibSubDirs) $(LibLinkOpts)