mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5ed0bafc92
- Adapted build system and test checks for the native boards to include native64 - Added `native64` to the same tests as `native`
27 lines
671 B
Makefile
27 lines
671 B
Makefile
# application name
|
|
APPLICATION = riot_javascript
|
|
|
|
# default BOARD environment
|
|
BOARD ?= native
|
|
|
|
# This has to be the absolute path to the RIOT base directory:
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
|
|
# 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:
|
|
DEVELHELP ?= 1
|
|
|
|
ifeq (,$(filter native native64,$(BOARD)))
|
|
# Set stack size to something (conservatively) enormous
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=9092
|
|
endif
|
|
|
|
# Add the package for Jerryscript
|
|
USEPKG += jerryscript
|
|
|
|
# generate .js.h header files of .js files
|
|
BLOBS += $(wildcard *.js)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|