diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-04-11 20:25:39 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-04-11 20:25:39 +0000 |
commit | a6c8b4498363db99d0de8f15e7bc8a9cfc1a7f81 (patch) | |
tree | 3641cf009bd21d947059c48bd2402ce90e0e37d7 /src/install.sh | |
parent | ba60e6f1f7ec109a1214aba3e6c8f2f5b78fc230 (diff) |
Added Common::DirSelect(). Also added '--archive' switch to w32dlib-config.
Diffstat (limited to 'src/install.sh')
-rw-r--r-- | src/install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/install.sh b/src/install.sh index e3274ae..54afb53 100644 --- a/src/install.sh +++ b/src/install.sh @@ -34,8 +34,10 @@ if [ "\$1" == "--libs" ] ; then echo -L$libdir -mwindows -lw32dlib elif [ "\$1" == "--cflags" ] ; then echo -I$incbase +elif [ "\$1" == "--archive" ] ; then + echo $libdir/libw32dlib.a else - echo usage: \$0 [--libs\|--cflags] + echo usage: \$0 [--libs\|--cflags\|-archive] fi EOF |