diff options
author | Max Horn | 2002-11-20 18:05:02 +0000 |
---|---|---|
committer | Max Horn | 2002-11-20 18:05:02 +0000 |
commit | a8f01c253236ac2339c1ae26822b20971d01a555 (patch) | |
tree | 5beb2fe28a0391eb3348bcabbe38b6a816f9fe14 /Makefile | |
parent | 85fe6a1ac57f3ecb434af7e35e15d276d6749b5a (diff) | |
download | scummvm-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-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |