]> git.sur5r.net Git - cc65/commitdiff
Explicitly set search paths for libraries build.
authorOliver Schmidt <ol.sc@web.de>
Fri, 31 May 2013 19:30:14 +0000 (21:30 +0200)
committerOliver Schmidt <ol.sc@web.de>
Fri, 31 May 2013 19:30:14 +0000 (21:30 +0200)
The libraries build is prepared to work with binaries not part of the current
working tree. But in this case the default search path surely points to some
other working tree. Even the binaries in this working tree might have been
compiled with non-standard builtin search paths.

Anyway when building the libraries we want always to use the headers from
the current working tree. Therefore we want to set them explicitly. Instead
of setting all in all five paths on the command lines of ca65, cc65 and ld65 I
opted to just set the single environment variable.

libsrc/Makefile

index 5cdc1f6591d318797ffe9bbc062be973a9f8ae63..4204f00bb72a3a062fc817e57bb1e8c05cc5afd1 100644 (file)
@@ -206,6 +206,8 @@ CC := $(if $(wildcard ../bin/cc65*),../bin/cc65,cc65)
 CO := $(if $(wildcard ../bin/co65*),../bin/co65,co65)
 LD := $(if $(wildcard ../bin/ld65*),../bin/ld65,ld65)
 
+export CC65_HOME := $(abspath ..)
+
 ##########
 
 define ASSEMBLE_recipe