blob: 7bb96196f2ff1e0a41c2ea3f0a6a9a4d7c8e0379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
fsmgr := $(shell which fsmgr)
ifeq ($(fsmgr),)
$(error "no fsmgr")
endif
sudo := $(shell [ "$$(id -u)" = 0 ] || echo sudo)
rootfs ?= samizdat.btrfs
patchfs ?= samizdat.patch.btrfs
.PHONY: all rootfs patchfs
all: rootfs $(ifneq $(patchfs),,patchfs)
rootfs $(rootfs):
$(sudo) $(fsmgr) build $(rootfs)
patchfs $(patchfs):
$(sudo) REWRITE_SOURCES_LIST=y $(fsmgr) build $(patchfs)
|