mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-23 15:50:49 +01:00
17 lines
275 B
Makefile
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
|