Blame view

RIOT/examples/javascript/Makefile 1.31 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  # 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