aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMax Horn2002-11-20 18:05:02 +0000
committerMax Horn2002-11-20 18:05:02 +0000
commita8f01c253236ac2339c1ae26822b20971d01a555 (patch)
tree5beb2fe28a0391eb3348bcabbe38b6a816f9fe14 /Makefile
parent85fe6a1ac57f3ecb434af7e35e15d276d6749b5a (diff)
downloadscummvm-rg350-a8f01c253236ac2339c1ae26822b20971d01a555.tar.gz
scummvm-rg350-a8f01c253236ac2339c1ae26822b20971d01a555.tar.bz2
scummvm-rg350-a8f01c253236ac2339c1ae26822b20971d01a555.zip
use := instead of =
svn-id: r5643
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6d87e5a1c2..b872966075 100644
--- a/Makefile
+++ b/Makefile
@@ -17,12 +17,12 @@ CP = cp
# Default compilation parameters. Normally don't edit these #
#######################################################################
-CFLAGS = -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
-DEFINES =
+CFLAGS := -g -O -Wall -Wstrict-prototypes -Wuninitialized -Wno-long-long -Wno-multichar -Wno-unknown-pragmas
+DEFINES :=
LDFLAGS :=
INCLUDES:= -I. -Icommon
-LIBS =
-OBJS =
+LIBS :=
+OBJS :=
# Load the build rules & settings for the chosen backend
-include build.rules
@@ -56,7 +56,7 @@ LIBS += -lmad
#######################################################################
# Concat DEFINES and INCLUDES to for the CPPFLAGS
-CPPFLAGS= $(DEFINES) $(INCLUDES)
+CPPFLAGS:= $(DEFINES) $(INCLUDES)
include Makefile.common