diff --git a/Makefile b/Makefile index a85d4e69..56910568 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ help: # $(ZIG) commands # ------------ -.PHONY: build build-v8-snapshot build-dev run run-release shell test bench data end2end +.PHONY: build build-v8-snapshot build-dev run run-release test bench data end2end ## Build v8 snapshot build-v8-snapshot: @@ -77,11 +77,6 @@ run-debug: build-dev @printf "\033[36mRunning...\033[0m\n" @./zig-out/bin/lightpanda || (printf "\033[33mRun ERROR\033[0m\n"; exit 1;) -## Run a JS shell in debug mode -shell: - @printf "\033[36mBuilding shell...\033[0m\n" - @$(ZIG) build shell || (printf "\033[33mBuild ERROR\033[0m\n"; exit 1;) - ## Test - `grep` is used to filter out the huge compile command on build ifeq ($(OS), macos) test: @@ -106,4 +101,3 @@ install: build data: cd src/data && go run public_suffix_list_gen.go > public_suffix_list.zig -