quickjs/Makefile

96 lines
2.5 KiB
Makefile
Raw Normal View History

2020-09-06 16:53:08 +00:00
#
# QuickJS Javascript Engine
#
2021-03-27 10:17:31 +00:00
# Copyright (c) 2017-2021 Fabrice Bellard
# Copyright (c) 2017-2021 Charlie Gordon
# Copyright (c) 2023 Ben Noordhuis
# Copyright (c) 2023 Saúl Ibarra Corretgé
2020-09-06 16:53:08 +00:00
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
BUILD_DIR=build
BUILD_TYPE?=Release
2020-09-06 16:53:08 +00:00
QJS=$(BUILD_DIR)/qjs
RUN262=$(BUILD_DIR)/run-test262
2020-09-06 16:53:08 +00:00
2023-12-07 08:13:21 +00:00
JOBS?=$(shell getconf _NPROCESSORS_ONLN)
ifeq ($(JOBS),)
JOBS := $(shell sysctl -n hw.ncpu)
endif
ifeq ($(JOBS),)
JOBS := $(shell nproc)
endif
ifeq ($(JOBS),)
JOBS := 4
endif
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
all: $(QJS)
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
$(BUILD_DIR):
2023-11-28 08:30:45 +00:00
cmake -B $(BUILD_DIR) -DCMAKE_BUILD_TYPE=$(BUILD_TYPE)
2020-09-06 17:07:30 +00:00
2023-12-06 23:24:52 +00:00
$(QJS): $(BUILD_DIR)
cmake --build $(BUILD_DIR) -j $(JOBS)
install: $(QJS)
cmake --build $(BUILD_DIR) --target install
2020-09-06 16:53:08 +00:00
clean:
cmake --build $(BUILD_DIR) --target clean
2020-09-06 16:53:08 +00:00
debug:
2023-11-27 22:53:41 +00:00
BUILD_TYPE=Debug $(MAKE)
2020-09-06 16:53:08 +00:00
distclean:
@rm -rf $(BUILD_DIR)
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
stats: $(QJS)
$(QJS) -qd
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
test: $(QJS)
$(QJS) tests/test_bigint.js
$(QJS) tests/test_closure.js
$(QJS) tests/test_language.js
$(QJS) tests/test_builtin.js
$(QJS) tests/test_loop.js
$(QJS) tests/test_std.js
$(QJS) tests/test_worker.js
$(QJS) tests/test_queue_microtask.js
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
test262: $(QJS)
$(RUN262) -m -c test262.conf -a
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
test262-update: $(QJS)
$(RUN262) -u -c test262.conf -a
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
test262-check: $(QJS)
$(RUN262) -m -c test262.conf -E -a
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
microbench: $(QJS)
$(QJS) tests/microbench.js
2020-09-06 16:53:08 +00:00
2023-12-06 23:24:52 +00:00
unicode_gen: $(BUILD_DIR)
cmake --build $(BUILD_DIR) --target unicode_gen
2020-09-06 16:53:08 +00:00
libunicode-table.h: unicode_gen
$(BUILD_DIR)/unicode_gen unicode $@
2020-09-06 16:53:08 +00:00
.PHONY: all build debug install clean distclean stats test test262 test262-update test262-check microbench unicode_gen