You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
338 B
15 lines
338 B
15 years ago
|
#!/bin/bash
|
||
|
# compile entire kdelibs/win32 : common part for dbg and release target
|
||
|
# (c) 2005, Jaroslaw Staniek, js@iidea.pl
|
||
|
|
||
|
pwd=`pwd`
|
||
|
if [ -n "$MSVC" ] ; then
|
||
|
make='nmake -nologo'
|
||
|
elif [ -n "$BCB" ] ; then
|
||
|
#sometimes this could bmake (see qt3/free bootstrap)
|
||
|
make='make'
|
||
|
else
|
||
|
echo "No compiler detected (MSVC or other)"
|
||
|
exit 1
|
||
|
fi
|