summaryrefslogtreecommitdiff
path: root/rootfs
diff options
context:
space:
mode:
Diffstat (limited to 'rootfs')
-rw-r--r--rootfs/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/rootfs/Makefile b/rootfs/Makefile
index d664742..bcb885b 100644
--- a/rootfs/Makefile
+++ b/rootfs/Makefile
@@ -12,8 +12,10 @@ patchfs ?= samizdat.patch.btrfs
12.PHONY: all rootfs patchfs 12.PHONY: all rootfs patchfs
13all: rootfs $(ifneq $(patchfs),,patchfs) 13all: rootfs $(ifneq $(patchfs),,patchfs)
14 14
15rootfs $(rootfs): 15%.btrfs:
16 $(sudo) $(fsmgr) build $(rootfs) 16 $(sudo) $(fsmgr) build $@
17 17
18patchfs $(patchfs): 18rootfs: $(rootfs)
19
20patchfs:
19 $(sudo) REWRITE_SOURCES_LIST=y $(fsmgr) build $(patchfs) 21 $(sudo) REWRITE_SOURCES_LIST=y $(fsmgr) build $(patchfs)