repo.or.cz
/
xcsoar.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tracking/TrackingGlue: Use vehicle type for Livetrack24
[xcsoar.git]
/
configure
blob
b7b051a33608174e792612514c3fce892687315c
1
#!/bin/sh
2
3
DIR
=
`dirname
$0
`
4
SYSTEM
=
`uname -s 2>/dev/null`
5
6
# Test if running on a Mac
7
8
case
"
${SYSTEM}
"
in
9
"Darwin"
)
10
${DIR}
/
build
/
configure-mac.sh \
11
&&
echo
"Now run
12
make TARGET=UNIX
13
to build XCSoar for Mac OS X."
14
;;
15
*)
16
echo
"Now run
17
make TARGET=<t>
18
to build XCSoar. See README for valid targets."
19
esac