blob: 18c8795cfe53848d4ee4d5150c98ac5026489665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
scripts := build-os commit-os publish-repo generate-usb-img sync-repo
hooks := hooks/build-os/* hooks/build-os-post/*
all:
sudo ./build-os
sudo ./commit-os
./publish-repo
check: $(scripts)
shellcheck -x $(scripts)
shellcheck -x $(hooks)
clean:
sudo rm -rf roots build-repo
distclean: clean
rm -rf repo
|