summaryrefslogtreecommitdiff
path: root/rootfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rootfs/Makefile')
-rw-r--r--rootfs/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/rootfs/Makefile b/rootfs/Makefile
index c68e45a..ef2921e 100644
--- a/rootfs/Makefile
+++ b/rootfs/Makefile
@@ -11,7 +11,7 @@ patchfs ?= samizdat.patch.btrfs
11 11
12.DEFAULT_GOAL = all 12.DEFAULT_GOAL = all
13 13
14.PHONY: all rootfs patchfs clean 14.PHONY: all rootfs patchfs clean cleaner
15all: $(rootfs) $(patchfs) 15all: $(rootfs) $(patchfs)
16 16
17_build _filesystem: 17_build _filesystem:
@@ -22,6 +22,8 @@ clean := $(clean) $(clean:%=%.tmp)
22 22
23clean: 23clean:
24 rm -f $(clean) 24 rm -f $(clean)
25cleaner: clean
26 -$(sudo) btrfs subvolume delete _filesystem
25 27
26rootfs: $(rootfs) 28rootfs: $(rootfs)
27patchfs: $(patchfs) 29patchfs: $(patchfs)