1e6feb95a7
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10673 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
79 lines
2.3 KiB
Bash
Executable File
79 lines
2.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# File: makeall.sh
|
|
# Purpose: create wxWindows makefiles for all compilers
|
|
# Author: Michael Bedward
|
|
# Created: 29 Aug 1999
|
|
# Copyright: (c) 1999 Michael Bedward
|
|
# Version: $Id$
|
|
#
|
|
# This creates the makefiles for all compilers from the templates using
|
|
# tmake. The tmake executable should be in the path.
|
|
|
|
# Assume we are in distrib/msw/tmake
|
|
#
|
|
topdir="../../.."
|
|
mswdir="$topdir/src/msw"
|
|
|
|
for tname in `ls *.t`
|
|
do
|
|
case $tname in
|
|
b32.t)
|
|
echo "Generating $mswdir/makefile.b32 for Borland C++ (32 bits)..."
|
|
tmake -t b32 wxwin.pro -o $mswdir/makefile.b32 ;;
|
|
|
|
bcc.t)
|
|
echo "Generating $mswdir/makefile.bcc for Borland C++ (16 bits)..."
|
|
tmake -t bcc wxwin.pro -o $mswdir/makefile.bcc;;
|
|
|
|
dos.t)
|
|
echo "Generating $mswdir/makefile.dos for Visual C++ 1.52..."
|
|
tmake -t dos wxwin.pro -o $mswdir/makefile.dos;;
|
|
|
|
g95.t)
|
|
echo "Generating $mswdir/makefile.g95 for Cygwin/Mingw32..."
|
|
tmake -t g95 wxwin.pro -o $mswdir/makefile.g95;;
|
|
|
|
sc.t)
|
|
echo "Generating $mswdir/makefile.sc for Symantec C++..."
|
|
tmake -t sc wxwin.pro -o $mswdir/makefile.sc;;
|
|
|
|
vc.t)
|
|
echo "Generating $mswdir/makefile.vc for Visual C++ 4.0..."
|
|
tmake -t vc wxwin.pro -o $mswdir/makefile.vc;;
|
|
|
|
wat.t)
|
|
echo "Generating $mswdir/makefile.wat for Watcom C++..."
|
|
tmake -t wat wxwin.pro -o $mswdir/makefile.wat;;
|
|
|
|
base.t)
|
|
echo "Generating $topdir/src/files.lst for Configure..."
|
|
tmake -t base wxwin.pro -o $topdir/src/files.lst ;;
|
|
|
|
baserpm.t)
|
|
echo "Generating $topdir/src/rpmfiles.lst for wxBase RPM..."
|
|
tmake -t baserpm wxwin.pro -o $topdir/src/rpmfiles.lst ;;
|
|
|
|
gtk.t)
|
|
echo "Generating $topdir/src/gtk/files.lst for GTK and Configure..."
|
|
tmake -t gtk wxwin.pro -o $topdir/src/gtk/files.lst;;
|
|
|
|
msw.t)
|
|
echo "Generating $topdir/src/msw/files.lst for MSW and Configure..."
|
|
tmake -t msw wxwin.pro -o $topdir/src/msw/files.lst;;
|
|
|
|
motif.t)
|
|
echo "Generating $topdir/src/motif/files.lst for Motif and Configure..."
|
|
tmake -t motif wxwin.pro -o $topdir/src/motif/files.lst;;
|
|
|
|
univ.t)
|
|
echo "Generating $topdir/src/univ/files.lst for wxUniversal..."
|
|
tmake -t univ wxwin.pro -o $topdir/src/univ/files.lst;;
|
|
|
|
unx.t)
|
|
echo "Generating $topdir/src/os2/files.lst for OS/2 PM and Configure..."
|
|
tmake -t os2 wxwin.pro -o $topdir/src/os2/files.lst;;
|
|
esac
|
|
done
|
|
|