]> git.sur5r.net Git - cc65/commitdiff
Allow to override CC65_LIB on the command line
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 23 Sep 2004 19:05:49 +0000 (19:05 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 23 Sep 2004 19:05:49 +0000 (19:05 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3199 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/make/gcc.mak

index 1486a6f26e2026ac9a34c95d2a817f61f2832c66..e0e99e62fe4bdfccc5e5caecaaf0ec5e16ec2d07 100644 (file)
@@ -5,9 +5,12 @@
 # Library dir
 COMMON = ../common
 
-# Default for the compiler lib search path as compiler define
-CDEFS=-DCC65_LIB=\"/usr/lib/cc65/lib/\"
-CFLAGS = -g -O2 -Wall -W -I$(COMMON) $(CDEFS)
+# The linker library search path. Default is "/usr/lib/cc65/lib/" if nothing 
+# is defined. You may use CC65_LIB=foo on the command line to override it.
+CC65_LIB = \"/usr/lib/cc65/lib/\"
+
+#
+CFLAGS = -g -O2 -Wall -W -I$(COMMON) -DCC65_LIB=$(CC65_LIB)
 CC=gcc
 EBIND=emxbind
 LDFLAGS=
@@ -115,7 +118,7 @@ depend dep: $(OBJS:.o=.c)
 
 apple2.inc:    cfg/apple2.cfg
        @$(CVT) $< $@ CfgApple2
-                                 
+
 # The apple2enh target uses the same config as the apple2
 apple2enh.inc: cfg/apple2.cfg
        @$(CVT) $< $@ CfgApple2Enh