summaryrefslogtreecommitdiff
path: root/rootfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rootfs/Makefile')
-rw-r--r--rootfs/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/rootfs/Makefile b/rootfs/Makefile
index 6696c14..9e4e15a 100644
--- a/rootfs/Makefile
+++ b/rootfs/Makefile
@@ -6,7 +6,13 @@ endif
6 6
7sudo := $(shell [ "$$(id -u)" = 0 ] || echo sudo) 7sudo := $(shell [ "$$(id -u)" = 0 ] || echo sudo)
8 8
9rootfs = samiztest 9rootfs ?= samizdat.btrfs
10patchfs ?= samizdat.patch.btrfs
10 11
11all: 12.PHONY: all rootfs patchfs
13all: rootfs $(ifneq $(patchfs),,patchfs)
14
15rootfs $(rootfs):
12 $(sudo) $(fsmgr) build $(rootfs) 16 $(sudo) $(fsmgr) build $(rootfs)
17patchfs $(patchfs): $(rootfs)
18 $(sudo) $(fsmgr) build $(patchfs)