Ticket #20035: patch-makefiles.diff
File patch-makefiles.diff, 902 bytes (added by mdj@…, 15 years ago) |
---|
-
cc65/make/gcc.mak
old new 14 14 15 15 # The compiler include search path. Default is "/usr/lib/cc65/include/" if 16 16 # nothing is defined. You may use CC65_INC=foo on the command line to override it. 17 CC65_INC = \" /usr/lib/cc65/include/\"17 CC65_INC = \"${PREFIX}/lib/cc65/include/\" 18 18 19 19 # 20 20 CFLAGS = -O2 -g -Wall -W -std=c89 -I$(COMMON) -DCC65_INC=$(CC65_INC) -
ld65/make/gcc.mak
old new 7 7 8 8 # The linker library search path. Default is "/usr/lib/cc65/lib/" if nothing 9 9 # is defined. You may use CC65_LIB=foo on the command line to override it. 10 CC65_LIB = \" /usr/lib/cc65/lib/\"10 CC65_LIB = \"${PREFIX}/lib/cc65/lib/\" 11 11 12 12 # 13 13 CFLAGS = -g -O2 -Wall -W -std=c89 -I$(COMMON) -DCC65_LIB=$(CC65_LIB)