forked from minoca/os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.ck
77 lines (59 loc) · 1.67 KB
/
build.ck
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*++
Copyright (c) 2013 Minoca Corp.
This file is licensed under the terms of the GNU General Public License
version 3. Alternative licensing terms are available. Contact
[email protected] for details. See the LICENSE file at the root of this
project for complete licensing information.
Module Name:
Applications
Abstract:
This directory contains user mode applications and libraries.
Author:
Evan Green 25-Feb-2013
Environment:
User
--*/
from menv import group;
function build() {
var allApps;
var apps;
var entries;
var libc;
var testApps;
testApps = [
"apps/libc/dynamic/testc:build_testc",
"apps/testapps:testapps",
];
libc = [
"apps/libc/crypt:libcrypt",
"apps/libc/dynamic/pthread/static:libpthread_nonshared",
"apps/libc/static:libc_nonshared",
"kernel:kernel-version",
];
apps = [
"apps/banner:banner",
"apps/ck:build_chalk",
"apps/ck:chalk",
"apps/debug:debug",
"apps/efiboot:efiboot",
"apps/lib/lzma/util:lzma",
"apps/lib/lzma/util:build_lzma",
"apps/mingen:bootstrap_stamp",
"apps/mount:mount",
"apps/netcon:netcon",
"apps/profile:profile",
"apps/setup:msetup",
"apps/setup:build_msetup",
"apps/santa:build_santa",
"apps/swiss:swiss",
"apps/swiss:build_swiss",
"apps/tzcomp:tz_files",
"apps/tzset:tzset",
"apps/unmount:umount",
"apps/vmstat:vmstat",
];
allApps = testApps + libc + apps;
entries = group("all_apps", allApps);
entries += group("libc", libc);
return entries;
}