summaryrefslogtreecommitdiff
path: root/src/install.sh
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-04-11 20:25:39 +0000
committerIan C <ianc@noddybox.co.uk>2005-04-11 20:25:39 +0000
commita6c8b4498363db99d0de8f15e7bc8a9cfc1a7f81 (patch)
tree3641cf009bd21d947059c48bd2402ce90e0e37d7 /src/install.sh
parentba60e6f1f7ec109a1214aba3e6c8f2f5b78fc230 (diff)
Added Common::DirSelect(). Also added '--archive' switch to w32dlib-config.
Diffstat (limited to 'src/install.sh')
-rw-r--r--src/install.sh4
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