Mercurial > sdl-ios-xcode
annotate sdl-config.in @ 176:c9bc7f33d56f
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 11 Sep 2001 20:58:28 +0000 |
parents | e92aa316c517 |
children | c151cfc43c07 |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 | |
3 prefix=@prefix@ | |
4 exec_prefix=@exec_prefix@ | |
5 exec_prefix_set=no | |
6 | |
7 usage="\ | |
8 Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]" | |
9 | |
10 if test $# -eq 0; then | |
11 echo "${usage}" 1>&2 | |
12 exit 1 | |
13 fi | |
14 | |
15 while test $# -gt 0; do | |
16 case "$1" in | |
17 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; | |
18 *) optarg= ;; | |
19 esac | |
20 | |
21 case $1 in | |
22 --prefix=*) | |
23 prefix=$optarg | |
24 if test $exec_prefix_set = no ; then | |
25 exec_prefix=$optarg | |
26 fi | |
27 ;; | |
28 --prefix) | |
29 echo $prefix | |
30 ;; | |
31 --exec-prefix=*) | |
32 exec_prefix=$optarg | |
33 exec_prefix_set=yes | |
34 ;; | |
35 --exec-prefix) | |
36 echo $exec_prefix | |
37 ;; | |
38 --version) | |
39 echo @SDL_VERSION@ | |
40 ;; | |
41 --cflags) | |
42 if test @includedir@ != /usr/include ; then | |
43 # Handle oddities in Win32 path handling (assumes prefix) | |
44 prefix=`echo ${prefix} | sed 's,^//\([A-Z]\),\1:,'` | |
45 | |
46 includes=-I@includedir@ | |
47 fi | |
48 echo $includes -I@includedir@/SDL @SDL_CFLAGS@ | |
49 ;; | |
50 @ENABLE_SHARED_TRUE@ --libs) | |
51 @ENABLE_SHARED_TRUE@ libdirs="-L@libdir@ @SDL_RLD_FLAGS@" | |
52 @ENABLE_SHARED_TRUE@ echo $libdirs @SDL_LIBS@ | |
53 @ENABLE_SHARED_TRUE@ ;; | |
54 @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) | |
55 @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) | |
56 @ENABLE_STATIC_TRUE@ libdirs="-L@libdir@ @SDL_RLD_FLAGS@" | |
57 @ENABLE_STATIC_TRUE@ echo $libdirs @SDL_LIBS@ @SYSTEM_LIBS@ | |
58 @ENABLE_STATIC_TRUE@ ;; | |
168
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
59 @TARGET_MACOSX_TRUE@ --nib) |
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
60 @TARGET_MACOSX_TRUE@ echo @datadir@/sdl/SDLMain.nib |
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
61 @TARGET_MACOSX_TRUE@ ;; |
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
62 @TARGET_MACOSX_TRUE@ --plist) |
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
63 @TARGET_MACOSX_TRUE@ echo @datadir@/sdl/Info.plist |
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
64 @TARGET_MACOSX_TRUE@ ;; |
0 | 65 *) |
66 echo "${usage}" 1>&2 | |
67 exit 1 | |
68 ;; | |
69 esac | |
70 shift | |
71 done |