blob: d0249551075aba012abfaa9509310c7a571f630a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
scripts := build-os commit-os publish-repo generate-usb-img sync-repo
hooks := hooks/build-os/* hooks/build-os-post/*
check: $(scripts)
shellcheck -x $(scripts)
shellcheck -x $(hooks)
clean:
rm -rf build-repo halo-*-usb-*
distclean: clean
rm -rf roots repo
|