aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-03 20:15:57 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-03 20:15:57 -0800
commit647093ff735a9e4c0824e5daea0905f96f121243 (patch)
tree72f0691b4d8f85b609a214139ff75eaa7b0a65c2
parent7df50add9970f37dcc0ebca205536da9c2371f40 (diff)
downloadbun-647093ff735a9e4c0824e5daea0905f96f121243.tar.gz
bun-647093ff735a9e4c0824e5daea0905f96f121243.tar.zst
bun-647093ff735a9e4c0824e5daea0905f96f121243.zip
Add sqlite to vendor
Diffstat (limited to '')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 383ee2caa..303a15cda 100644
--- a/Makefile
+++ b/Makefile
@@ -540,8 +540,7 @@ builtins: ## to generate builtins
.PHONY: generate-builtins
generate-builtins: builtins
-.PHONY: vendor-without-check
-vendor-without-check: npm-install node-fallbacks runtime_js fallback_decoder bun_error mimalloc picohttp zlib boringssl libarchive lolhtml usockets uws tinycc
+
BUN_TYPES_REPO_PATH ?= $(realpath packages/bun-types)
@@ -620,8 +619,6 @@ tgz-debug:
$(CXX) $(DEBUG_PACKAGE_DIR)/tgz.o -g -o ./misctools/tgz $(DEFAULT_LINKER_FLAGS) -lc $(ARCHIVE_FILES)
rm -rf $(DEBUG_PACKAGE_DIR)/tgz.o
-vendor: require init-submodules vendor-without-check
-
zlib:
cd $(BUN_DEPS_DIR)/zlib; make clean; $(CCACHE_CC_FLAG) CFLAGS="$(CFLAGS)" ./configure --static && make -j${CPUS} && cp ./libz.a $(BUN_DEPS_OUT_DIR)/libz.a
@@ -1908,6 +1905,13 @@ copy-to-bun-release-dir-bin:
PACKAGE_MAP = --pkg-begin async_io $(BUN_DIR)/src/io/io_darwin.zig --pkg-begin bun $(BUN_DIR)/src/bun_redirect.zig --pkg-end --pkg-end --pkg-begin javascript_core $(BUN_DIR)/src/jsc.zig --pkg-begin bun $(BUN_DIR)/src/bun_redirect.zig --pkg-end --pkg-end --pkg-begin bun $(BUN_DIR)/src/bun_redirect.zig --pkg-end
+
+.PHONY: vendor-without-check
+vendor-without-check: npm-install node-fallbacks runtime_js fallback_decoder bun_error mimalloc picohttp zlib boringssl libarchive lolhtml sqlite usockets uws tinycc
+
+.PHONY: vendor
+vendor: require init-submodules vendor-without-check
+
.PHONY: bun
bun: vendor identifier-cache build-obj bun-link-lld-release bun-codesign-release-local