1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 15:54:59 +00:00

Allow to override CC65_INC on the command line

git-svn-id: svn://svn.cc65.org/cc65/trunk@3198 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-09-23 19:04:00 +00:00
parent 9570fb4f63
commit 25c8f27d2f

View File

@ -13,11 +13,11 @@ EXE = cc65
COMMON = ../common
# The compiler library search path. Default is "/usr/lib/cc65/include/" if
# nothing is defined
#CDEFS=-DCC65_INC=\"/usr/lib/cc65/include/\"
# nothing is defined. You may use CC65_INC=foo on the command line to override it.
CC65_INC = \"/usr/lib/cc65/include/\"
#
CFLAGS = -O2 -g -Wall -W -I$(COMMON) $(CDEFS)
CFLAGS = -O2 -g -Wall -W -I$(COMMON) -DCC65_INC=$(CC65_INC)
CC=gcc
EBIND=emxbind
LDFLAGS=-lm