repo.or.cz
/
barry.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
scripts: add plain and additive build scripts
[barry.git]
/
add-desktop.sh
blob
e6e2bc853a020cbeaad8747975d02314acfe1146
1
#!/bin/sh
2
3
# meant to be run from inside a freshly checked out cvs workspace
4
# and run after the base library is compiled.
5
6
set -e
7
8
SCRIPTDIR
=
"$(dirname "
$0
")"
9
10
cd
desktop || true
11
..
/
"
$SCRIPTDIR
"
/
configure-barrydesktop.sh
12
make
-j2
13
make install
14