Mercurial > sdl-ios-xcode
annotate sdl-config.in @ 1944:91f41fc124a7
The AAlib driver is fun, but not worth rewriting for SDL 1.3
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 26 Jul 2006 03:24:27 +0000 |
parents | c121d94672cb |
children | 62debeaac5e9 |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 | |
3 prefix=@prefix@ | |
4 exec_prefix=@exec_prefix@ | |
5 exec_prefix_set=no | |
6 | |
1647
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
7 @ENABLE_STATIC_FALSE@usage="\ |
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
8 @ENABLE_STATIC_FALSE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]" |
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
9 @ENABLE_STATIC_TRUE@usage="\ |
2af911d41a08
Date: Thu, 20 Apr 2006 10:13:34 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
1548
diff
changeset
|
10 @ENABLE_STATIC_TRUE@Usage: sdl-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--static-libs]" |
0 | 11 |
12 if test $# -eq 0; then | |
13 echo "${usage}" 1>&2 | |
14 exit 1 | |
15 fi | |
16 | |
17 while test $# -gt 0; do | |
18 case "$1" in | |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1856
diff
changeset
|
19 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; |
0 | 20 *) optarg= ;; |
21 esac | |
22 | |
23 case $1 in | |
24 --prefix=*) | |
25 prefix=$optarg | |
26 if test $exec_prefix_set = no ; then | |
27 exec_prefix=$optarg | |
28 fi | |
29 ;; | |
30 --prefix) | |
31 echo $prefix | |
32 ;; | |
33 --exec-prefix=*) | |
34 exec_prefix=$optarg | |
35 exec_prefix_set=yes | |
36 ;; | |
37 --exec-prefix) | |
38 echo $exec_prefix | |
39 ;; | |
40 --version) | |
41 echo @SDL_VERSION@ | |
42 ;; | |
43 --cflags) | |
490
7e53d17ec798
The portable way of including SDL is #include "SDL.h"
Sam Lantinga <slouken@libsdl.org>
parents:
296
diff
changeset
|
44 echo -I@includedir@/SDL @SDL_CFLAGS@ |
0 | 45 ;; |
46 @ENABLE_SHARED_TRUE@ --libs) | |
1548
a77c022733fe
EXTRA_LDFLAGS are the linker flags and libraries needed to build SDL.
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
47 @ENABLE_SHARED_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_LIBS@ |
0 | 48 @ENABLE_SHARED_TRUE@ ;; |
49 @ENABLE_STATIC_TRUE@@ENABLE_SHARED_TRUE@ --static-libs) | |
50 @ENABLE_STATIC_TRUE@@ENABLE_SHARED_FALSE@ --libs|--static-libs) | |
1548
a77c022733fe
EXTRA_LDFLAGS are the linker flags and libraries needed to build SDL.
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
51 @ENABLE_STATIC_TRUE@ echo -L@libdir@ @SDL_RLD_FLAGS@ @SDL_STATIC_LIBS@ |
0 | 52 @ENABLE_STATIC_TRUE@ ;; |
53 *) | |
54 echo "${usage}" 1>&2 | |
55 exit 1 | |
56 ;; | |
57 esac | |
58 shift | |
59 done |