A shell script to run tmake for all template files similar to
Vadim's makeall.bat for DOS. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3513 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
75ceb69db0
commit
ef3a5c9e09
40
distrib/msw/tmake/makeall.sh
Executable file
40
distrib/msw/tmake/makeall.sh
Executable file
@ -0,0 +1,40 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
|
||||||
|
for tname in `ls *.t`
|
||||||
|
do
|
||||||
|
case $tname in
|
||||||
|
b32.t)
|
||||||
|
echo "Generating for Borland C++ (32 bits)..."
|
||||||
|
tmake -t b32 wxwin.pro -o makefile.b32;;
|
||||||
|
|
||||||
|
bcc.t)
|
||||||
|
echo "Generating for Borland C++ (16 bits)..."
|
||||||
|
tmake -t bcc wxwin.pro -o makefile.bcc;;
|
||||||
|
|
||||||
|
dos.t)
|
||||||
|
echo "Generating for Visual C++ 1.52..."
|
||||||
|
tmake -t dos wxwin.pro -o makefile.dos;;
|
||||||
|
|
||||||
|
g95.t)
|
||||||
|
echo "Generating for Cygwin/Mingw32..."
|
||||||
|
tmake -t g95 wxwin.pro -o makefile.g95;;
|
||||||
|
|
||||||
|
sc.t)
|
||||||
|
echo "Generating for Symantec C++..."
|
||||||
|
tmake -t sc wxwin.pro -o makefile.sc;;
|
||||||
|
|
||||||
|
vc.t)
|
||||||
|
echo "Generating for Visual C++ 4.0..."
|
||||||
|
tmake -t vc wxwin.pro -o makefile.vc;;
|
||||||
|
|
||||||
|
wat.t)
|
||||||
|
echo "Generating for Watcom C++..."
|
||||||
|
tmake -t wat wxwin.pro -o makefile.wat;;
|
||||||
|
|
||||||
|
unx.t)
|
||||||
|
echo "Generating for Unix and Configure..."
|
||||||
|
tmake -t unx wxwin.pro -o Makefile.in;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user