mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
I included jerry-ext/handler only, rather than including all in jerry-ext. Currently only handler is used in nuttx-stm32f4 repl. nuttx.bin binary size is reduced from 231576 to 230456 bytes. JerryScript-DCO-1.0-Signed-off-by: Sanggyu Lee sg5.lee@samsung.com
73 lines
2.5 KiB
Makefile
73 lines
2.5 KiB
Makefile
# Copyright JS Foundation and other contributors, http://js.foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
-include $(TOPDIR)/Make.defs
|
|
|
|
# Jerryscript built-in application info
|
|
|
|
CONFIG_JERRYSCRIPT_PRIORITY ?= SCHED_PRIORITY_DEFAULT
|
|
CONFIG_JERRYSCRIPT_STACKSIZE ?= 16384
|
|
CONFIG_JERRYSCRIPT_HEAPSIZE ?= 107520
|
|
CONFIG_JERRY_DEBUGGER_PORT ?= 5001
|
|
|
|
APPNAME = jerry
|
|
# path to the project dir, "jerry-nuttx" by default
|
|
ROOT_DIR = ../../..
|
|
PRIORITY = $(CONFIG_JERRYSCRIPT_PRIORITY)
|
|
STACKSIZE = $(CONFIG_JERRYSCRIPT_STACKSIZE)
|
|
CFLAGS += -std=c99 -DJERRY_NDEBUG -DJERRY_JS_PARSER '-DCONFIG_MEM_HEAP_AREA_SIZE=$(CONFIG_JERRYSCRIPT_HEAPSIZE)' -DCONFIG_DISABLE_ES2015_PROMISE_BUILTIN
|
|
CFLAGS += -I$(ROOT_DIR)/ $(shell find $(ROOT_DIR)/jerryscript/jerry-core -type d | sed -r -e 's/^/-I/g')
|
|
CFLAGS += -I$(ROOT_DIR)/jerryscript/jerry-libm/include
|
|
CFLAGS += -I$(ROOT_DIR)/jerryscript/jerry-ext/include
|
|
|
|
# Fill error messages for builtin error objects
|
|
ifeq ($(CONFIG_JERRYSCRIPT_ERROR_MESSAGES),y)
|
|
CFLAGS += -DJERRY_ENABLE_ERROR_MESSAGES
|
|
endif
|
|
|
|
ifeq ($(CONFIG_JERRYSCRIPT_MEM_STATS),y)
|
|
CFLAGS += -DJMEM_STATS
|
|
endif
|
|
|
|
ifeq ($(CONFIG_JERRYSCRIPT_SHOW_OPCODES),y)
|
|
CFLAGS += -DPARSER_DUMP_BYTE_CODE
|
|
endif
|
|
|
|
ifeq ($(CONFIG_JERRYSCRIPT_DEBUGGER),y)
|
|
CFLAGS += -DJERRY_DEBUGGER '-DJERRY_DEBUGGER_PORT=$(CONFIG_JERRY_DEBUGGER_PORT)'
|
|
endif
|
|
|
|
# Jerryscript
|
|
|
|
.PHONY: jerry_core_allin.c
|
|
jerry_core_allin.c:
|
|
find $(ROOT_DIR)/jerryscript/jerry-core -name "*.c" | sed -r -e 's/(\.\.\/)*(.+)/#include "\2"/g' > jerry_core_allin.c
|
|
|
|
.PHONY: jerry_libm_allin.c
|
|
jerry_libm_allin.c:
|
|
find $(ROOT_DIR)/jerryscript/jerry-libm -name "*.c" | sed -r -e 's/(\.\.\/)*(.+)/#include "\2"/g' > jerry_libm_allin.c
|
|
|
|
.PHONY: jerry_ext_allin.c
|
|
jerry_ext_allin.c:
|
|
find $(ROOT_DIR)/jerryscript/jerry-ext/handler -name "*.c" | sed -r -e 's/(\.\.\/)*(.+)/#include "\2"/g' > jerry_ext_allin.c
|
|
|
|
ASRCS = setjmp.S
|
|
CSRCS = jerry_core_allin.c jerry_libm_allin.c jerry_ext_allin.c
|
|
MAINSRC = jerry_main.c
|
|
|
|
CONFIG_JERRYSCRIPT_PROGNAME ?= jerry$(EXEEXT)
|
|
PROGNAME = $(CONFIG_JERRYSCRIPT_PROGNAME)
|
|
|
|
include $(APPDIR)/Application.mk
|