repo.or.cz
/
minipack.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Reformat the welcome message of 'mpk shell'.
[minipack.git]
/
build-all.sh
blob
ad0133e46cba3f9347565dc789e337af93ccc663
1
NEVERBUILD
=
"
2
"
3
4
NOBUILD
=
"
5
"
6
7
BUILD
=
"
8
libiconv
9
gettext
10
jpeg
11
zlib
12
libpng
13
tiff
14
expat
15
freetype
16
fontconfig
17
pixman
18
glib
19
atk
20
cairo
21
pango
22
gtk+
23
libtool
24
gmp
25
mingw-libgnurx
26
guile
27
gd
28
pcb
29
libgeda
30
geda-symbols
31
geda-gschem
32
geda-gnetlist
33
geda-gattrib
34
geda-gsymcheck
35
geda-utils
36
geda-docs
37
geda-examples
38
"
39
40
fail
()
41
{
42
echo
43
echo
"=================="
44
echo
"Build failed."
45
echo
"=================="
46
exit
1
47
}
48
49
succeed
()
50
{
51
echo
52
echo
"====================="
53
echo
"Build succeeded."
54
echo
"====================="
55
}
56
57
for
D
in
$BUILD
;
do
58
.
/
mpk
source
$D
|| fail
59
done
60
61
for
D
in
$BUILD
;
do
62
.
/
mpk build
$D
|| fail
63
done
64
65
succeed
66