diff options
author | 2022-08-27 16:27:09 -0700 | |
---|---|---|
committer | 2022-08-27 16:27:28 -0700 | |
commit | 466f9a3eb04ed085ab9601a1696c3b1532250975 (patch) | |
tree | 5d84e8f6e3f63284adf0e020bfbee0601d887080 | |
parent | 6644c2fd1770dd38d453753ab650bfccacea3e7b (diff) | |
download | bun-466f9a3eb04ed085ab9601a1696c3b1532250975.tar.gz bun-466f9a3eb04ed085ab9601a1696c3b1532250975.tar.zst bun-466f9a3eb04ed085ab9601a1696c3b1532250975.zip |
Update Makefile
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1287,10 +1287,12 @@ clean: clean-bindings (cd $(BUN_DEPS_DIR)/picohttp && make clean) || echo ""; (cd $(BUN_DEPS_DIR)/zlib && make clean) || echo ""; +.PHONY: release-bindings release-bindings: $(OBJ_DIR) $(OBJ_FILES) $(WEBCORE_OBJ_FILES) $(SQLITE_OBJ_FILES) $(NODE_OS_OBJ_FILES) $(BUILTINS_OBJ_FILES) # Do not add $(DEBUG_DIR) to this list # It will break caching, causing you to have to wait for every .cpp file to rebuild. +.PHONY: bindings bindings: $(DEBUG_OBJ_FILES) $(DEBUG_WEBCORE_OBJ_FILES) $(DEBUG_SQLITE_OBJ_FILES) $(DEBUG_NODE_OS_OBJ_FILES) $(DEBUG_BUILTINS_OBJ_FILES) .PHONY: jsc-bindings-mac |