remove unneeded features from makefile

This commit is contained in:
oneflux 2025-04-21 20:28:11 -07:00
parent fb608c93da
commit e1fe519a7e

View file

@ -36,8 +36,6 @@ help:
@echo " patch - Apply a patch" @echo " patch - Apply a patch"
@echo " unpatch - Remove a patch" @echo " unpatch - Remove a patch"
@echo " workspace - Sets the workspace to a patch, assuming its applied" @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)) _ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
$(eval $(_ARGS):;@:) $(eval $(_ARGS):;@:)
@ -232,12 +230,6 @@ workspace:
make checkpoint || true make checkpoint || true
make patch $(_ARGS) 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: unbusy:
rm -rf $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox-bin \ 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 \ $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox \
@ -246,9 +238,6 @@ unbusy:
path: path:
@realpath $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox-bin @realpath $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/camoufox-bin
update-ubo-assets:
bash ./scripts/update-ubo-assets.sh
upload: upload:
# =============================== # ===============================
# This is only for internal use. You can ignore this. # This is only for internal use. You can ignore this.