Change the makefiles so that CFLAGS that are special for the application are

appended after assigning the base value to CFLAGS. This allows to change
CFLAGS on the command line without too much hassle.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4219 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-09-24 15:07:11 +00:00
parent c4d83d4cbf
commit b8e665e837
10 changed files with 66 additions and 26 deletions

View File

@@ -10,11 +10,17 @@ EXE = sim65
# Library dir
COMMON = ../common
CFLAGS = -g -O2 -Wall -W -std=c89 -I$(COMMON)
#
CC = gcc
CFLAGS = -g -O2 -Wall -W -std=c89
CFLAGS += -I$(COMMON)
EBIND = emxbind
LDFLAGS =
# -----------------------------------------------------------------------------
# List of all object files
OBJS = addrspace.o \
callback.o \
cfgdata.o \