comparison src/cs/os/nucleus/nucleus.def @ 0:b6a5e36de839

src/cs: initial import from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 15 Jul 2018 04:39:26 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:b6a5e36de839
1 ########################################
2 # LIBRARIES / MODULES definition #
3 ########################################
4
5 # to avoid multiple nucleus.def (import + include)
6 ifndef NUCLEUS_DEF
7 NUCLEUS_DEF = 1
8
9 ### Nucleus libraries
10 ###########################
11
12 ifeq ($(OP_L1_STANDALONE),1)
13 OUT_OS_LIB_DIR = $(OUT_LIB_DIR)
14 endif
15
16 export OS_FLASH_LIB = $(OUT_OS_LIB_DIR)/nucleus_flash.lib
17 export OS_INT_RAM_LIB = $(OUT_OS_LIB_DIR)/nucleus_int_ram.lib
18 export OS_LIB := $(OS_FLASH_LIB) $(OS_INT_RAM_LIB)
19
20 MODULES += $(OS_NUC_DIR)
21
22 endif