mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
37db4c3112
- examples: dtls-echo, gnrc_border_router, javascript - tests: thread_cooperation, unittests
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
# application name
|
|
APPLICATION = riot_javascript
|
|
|
|
# default BOARD environment
|
|
BOARD ?= native
|
|
|
|
BOARD_INSUFFICIENT_MEMORY := airfy-beacon b-l072z-lrwan1 calliope-mini \
|
|
cc2650-launchpad cc2650stk maple-mini \
|
|
microbit nrf51dongle nrf6310 nucleo-f030 nucleo-f070 \
|
|
nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 nucleo-f410 \
|
|
nucleo-l053 nucleo-l073 nucleo32-f031 nucleo32-f042 \
|
|
nucleo32-f303 nucleo32-l031 opencm904 pca10000 \
|
|
pca10005 spark-core stm32f0discovery yunjia-nrf51822 \
|
|
|
|
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \
|
|
msb-430 msb-430h qemu-i386 telosb waspmote-pro wsn430-v1_3b \
|
|
wsn430-v1_4 z1 pic32-wifire pic32-clicker
|
|
|
|
# Comment this out to disable code in RIOT that does safety checking
|
|
# which is not needed in a production environment but helps in the
|
|
# development process:
|
|
CFLAGS += -DDEVELHELP
|
|
|
|
# Set stack size to something (conservatively) enormous
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=9092
|
|
|
|
# Add the shell and some shell commands
|
|
USEMODULE += shell
|
|
USEMODULE += shell_commands
|
|
|
|
# Add the package for Jerryscript
|
|
USEPKG += jerryscript
|
|
|
|
include $(CURDIR)/../../Makefile.include
|