Files
Upsilon/build/config.mak
Romain Goyet a94e8c314f Simplify the makefile configuration
Change-Id: I826916e0d0b23f7429a66dfa7001b19dcc53080a
2017-02-16 11:00:17 +01:00

17 lines
275 B
Makefile

# You can override those settings on the command line
PLATFORM ?= device
VERBOSE ?= 0
DEBUG ?= 1
# Do not edit below this
ifeq ($(DEBUG),1)
OPTIM_SFLAGS ?= -O0
else
OPTIM_SFLAGS ?= -Os
endif
include build/platform.$(PLATFORM).mak
include build/toolchain.$(TOOLCHAIN).mak