native/make: set all binutils with ?= instead of =

This commit is contained in:
Ludwig Ortmann 2014-04-20 07:26:12 +02:00
parent 066d743c35
commit b22f0e6a09

View File

@ -10,10 +10,10 @@ export ELF = $(BINDIR)$(PROJECT).elf
# toolchain:
export PREFIX =
export CC ?= $(PREFIX)gcc
export AR = $(PREFIX)ar
export AS = $(PREFIX)as
export LINK = $(PREFIX)gcc
export SIZE = $(PREFIX)size
export AR ?= $(PREFIX)ar
export AS ?= $(PREFIX)as
export LINK ?= $(PREFIX)gcc
export SIZE ?= $(PREFIX)size
export OBJCOPY = true
export DEBUGGER = gdb