From e1fe519a7ef0b1201677ada459f2c6f0b4e54257 Mon Sep 17 00:00:00 2001 From: oneflux Date: Mon, 21 Apr 2025 20:28:11 -0700 Subject: [PATCH] remove unneeded features from makefile --- Makefile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Makefile b/Makefile index b6ab6b8..ba1fab6 100644 --- a/Makefile +++ b/Makefile @@ -36,8 +36,6 @@ help: @echo " patch - Apply a patch" @echo " unpatch - Remove a patch" @echo " workspace - Sets the workspace to a patch, assuming its applied" - @echo " tests - Runs the Playwright tests" - @echo " update-ubo-assets - Update the uBOAssets.json file" _ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS)) $(eval $(_ARGS):;@:) @@ -232,12 +230,6 @@ workspace: make checkpoint || true make patch $(_ARGS) -tests: - cd ./tests && \ - bash run-tests.sh \ - --executable-path ../$(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox-bin \ - $(if $(filter true,$(headful)),--headful,) - unbusy: rm -rf $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox-bin \ $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox \ @@ -246,9 +238,6 @@ unbusy: path: @realpath $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox-bin -update-ubo-assets: - bash ./scripts/update-ubo-assets.sh - upload: # =============================== # This is only for internal use. You can ignore this.