aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-11-28 12:53:12 +0530
committerBobby <[email protected]>2025-11-28 12:53:12 +0530
commit12feabf43347130a15098d52cb9712fbd4ffa486 (patch)
treea793e041a51cc030dab2584b72daa4c5f80df3ac /Makefile
parentbdef6a2c692dad1261d98898afae28c82154c39f (diff)
downloadakiba-12feabf43347130a15098d52cb9712fbd4ffa486.tar.xz
akiba-12feabf43347130a15098d52cb9712fbd4ffa486.zip
add `.zig-cache` to clean
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8925d2f..6c9dccb 100644
--- a/Makefile
+++ b/Makefile
@@ -81,7 +81,7 @@ docker-run:
@./scripts/run.sh
clean:
- @docker run --rm -v $(PWD):/akiba -e DOCKER_BUILD=1 akiba-builder make clean 2>/dev/null || rm -rf iso/ zig-out/ zig-cache/
+ @docker run --rm -v $(PWD):/akiba -e DOCKER_BUILD=1 akiba-builder make clean 2>/dev/null || rm -rf iso/ zig-out/ zig-cache/ .zig-cache/
run: all docker-run
@@ -96,7 +96,7 @@ all: native-build
native-build: $(DISK_IMAGE)
native-clean:
- @rm -rf iso/ zig-out/ zig-cache/
+ @rm -rf iso/ zig-out/ zig-cache/ .zig-cache/
clean: native-clean