summaryrefslogtreecommitdiff
path: root/rootfs/Makefile
blob: d6647421b2fa47b3aab55924f60c426006119eb4 (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.seed.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)