-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathmkfile
33 lines (27 loc) · 903 Bytes
/
mkfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# default rule
help:QV:
echo "Targets:"
echo " stage1 complete bootstrap"
echo " pkg build additional packages"
echo " world build stage1 + pkg"
echo " xorg build X.org"
echo " rebuild-<pkg> rebuild single package (V=1 for verbose)"
echo " check-sets show missing and superfluous files"
echo " release make a release (from /)"
echo " installer build install kernel"
echo " list show all packages"
PATH=utils:$PATH
A=`utils/platform`
<|sed 's/export//' config
<deps
<|recipes
world:V: stage1 pkg xorg
check-sets:QV:
utils/check-sets
release:QV:
utils/release
installer:QV:
utils/installer
list:QV:
( grep -L tarxf stage1/*[^~] pkg/*[^~] xorg/*[^~] |sed 's:.*/::'
awk '/tarxf/{print $3}' stage1/*[^~] pkg/*[^~] xorg/*[^~] ) | sort