mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
28 lines
775 B
Makefile
28 lines
775 B
Makefile
# You can override those settings on the command line
|
|
|
|
PLATFORM ?= device
|
|
DEBUG ?= 0
|
|
|
|
EPSILON_VERSION ?= 12.0.0
|
|
EPSILON_CUSTOM_VERSION ?= 1.9.0-0
|
|
# Valid values are "none", "update", "beta"
|
|
EPSILON_APPS ?= calculation graph code statistics probability solver sequence regression settings
|
|
EPSILON_I18N ?= en fr es de pt
|
|
EPSILON_GETOPT ?= 0
|
|
ESCHER_LOG_EVENTS_BINARY ?= 0
|
|
|
|
include build/defaults.mak
|
|
include build/platform.$(PLATFORM).mak
|
|
|
|
ifndef USE_LIBA
|
|
$(error platform.mak should define USE_LIBA)
|
|
endif
|
|
ifndef EXE
|
|
$(error platform.mak should define EXE, the extension for executables)
|
|
endif
|
|
include build/toolchain.$(TOOLCHAIN).mak
|
|
|
|
SFLAGS += -DDEBUG=$(DEBUG)
|
|
SFLAGS += -DEPSILON_GETOPT=$(EPSILON_GETOPT)
|
|
SFLAGS += -DESCHER_LOG_EVENTS_BINARY=$(ESCHER_LOG_EVENTS_BINARY)
|