From 577ca92715be4d803dc7d1d76b62ebefa0c0e2e5 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:06:34 +0200 Subject: [PATCH 1/2] Remove unused rule for gzip compressing files --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 7d6007d..c790c8c 100644 --- a/Makefile +++ b/Makefile @@ -95,10 +95,6 @@ gdb: FORCE # An empty target FORCE: -# Gzip any binary -%.gz: % - gzip -k -f $< - # Wireshark wireshark: FORCE wireshark $(BUILD)/network.pcap From 84bccb1d6084d749fc6d8d06353b8dd8b4d010c2 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:07:03 +0200 Subject: [PATCH 2/2] Build redoxfs and redoxfs-mkfs at the same time This should be a bit faster. --- mk/fstools.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mk/fstools.mk b/mk/fstools.mk index 5528af6..eade349 100644 --- a/mk/fstools.mk +++ b/mk/fstools.mk @@ -6,8 +6,7 @@ ifeq ($(PODMAN_BUILD),1) else $(HOST_CARGO) build --manifest-path cookbook/Cargo.toml --release $(HOST_CARGO) build --manifest-path installer/Cargo.toml --release - $(HOST_CARGO) build --manifest-path redoxfs/Cargo.toml --release --bin redoxfs - $(HOST_CARGO) build --manifest-path redoxfs/Cargo.toml --release --bin redoxfs-mkfs + $(HOST_CARGO) build --manifest-path redoxfs/Cargo.toml --release --bin redoxfs --bin redoxfs-mkfs mkdir -p build touch $@ endif