From 531e036c25ffa5d527273d1c11c21dcc2939dd8b Mon Sep 17 00:00:00 2001 From: tma Date: Fri, 14 Sep 2007 23:07:28 +0000 Subject: * Split off DEPEND_CFLAGS so -MMD isn't used when doing library checks git-svn-id: svn://svn.icculus.org/quake3/trunk@1180 edf5b092-35ff-0310-97b2-ce42778d08ea --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 68f4e78..417c16b 100644 --- a/Makefile +++ b/Makefile @@ -713,7 +713,9 @@ ifeq ($(USE_LOCAL_HEADERS),1) endif ifeq ($(GENERATE_DEPENDENCIES),1) - BASE_CFLAGS += -MMD + DEPEND_CFLAGS = -MMD +else + DEPEND_CFLAGS = endif ifeq ($(USE_SVN),1) @@ -783,10 +785,12 @@ default: release all: debug release debug: - @$(MAKE) targets B=$(BD) CFLAGS="$(CFLAGS) $(DEBUG_CFLAGS)" V=$(V) + @$(MAKE) targets B=$(BD) CFLAGS="$(CFLAGS) $(DEPEND_CFLAGS) \ + $(DEBUG_CFLAGS)" V=$(V) release: - @$(MAKE) targets B=$(BR) CFLAGS="$(CFLAGS) $(RELEASE_CFLAGS)" V=$(V) + @$(MAKE) targets B=$(BR) CFLAGS="$(CFLAGS) $(DEPEND_CFLAGS) \ + $(RELEASE_CFLAGS)" V=$(V) # Create the build directories, check libraries and print out # an informational message, then start building -- cgit v1.2.3