From 3fd0ddc2f878e3ceb366598f820ec2a68799bb92 Mon Sep 17 00:00:00 2001 From: daijro Date: Tue, 13 Aug 2024 23:20:42 -0500 Subject: [PATCH] Makefile: Add run-launcher Add a command to test run Camoufox with the launcher --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 310f46b..0899e17 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ bootstrap: dir make mozbootstrap diff: - cd $(cf_source_dir) && git diff + @cd $(cf_source_dir) && git diff checkpoint: cd $(cf_source_dir) && git commit -m "Checkpoint" -a @@ -137,6 +137,11 @@ package-windows: --arch $(arch) \ --fonts macos linux +run-launcher: + make build-launcher arch=x86_64 os=linux; + cp launcher/dist/launch $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/launch; + $(cf_source_dir)/obj-x86_64-pc-linux-gnu/dist/bin/launch + run-pw: make build-launcher arch=x86_64 os=linux; python3 scripts/run-pw.py \