aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-30 01:48:58 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2021-10-30 01:48:58 -0700
commitd8a2eb81e3dd8afa0e18f7fb164b877d160396d3 (patch)
tree5809df4d03c6abd2a984470df848aa3cf2b94d39
parent9a9c0df6b092ecf27655452ea7b578123b7687c6 (diff)
downloadbun-d8a2eb81e3dd8afa0e18f7fb164b877d160396d3.tar.gz
bun-d8a2eb81e3dd8afa0e18f7fb164b877d160396d3.tar.zst
bun-d8a2eb81e3dd8afa0e18f7fb164b877d160396d3.zip
[internal] Add `identifier-cache` to makefile so we don't forget to run it
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3c2a6775d..efc2841a7 100644
--- a/Makefile
+++ b/Makefile
@@ -307,7 +307,7 @@ BUN_LLD_FLAGS = $(OBJ_FILES) \
$(PLATFORM_LINKER_FLAGS)
-bun: vendor build-obj bun-link-lld-release
+bun: vendor identifier-cache build-obj bun-link-lld-release
vendor-without-check: api analytics node-fallbacks runtime_js fallback_decoder bun_error mimalloc picohttp zlib openssl s2n bzip2 libarchive
@@ -328,7 +328,7 @@ tgz:
tgz-debug:
zig build-exe --main-pkg-path $(shell pwd) ./misctools/tgz.zig $(DEPS_DIR)/zlib/libz.a $(DEPS_DIR)/libarchive.a $(LIBICONV_PATH) -lc
-vendor: require init-submodules vendor-without-check
+vendor: require init-submodules vendor-without-check
zlib:
cd src/deps/zlib; cmake .; make;