]>
git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tmake/makeall.sh
4 # Purpose: create wxWindows makefiles for all compilers
5 # Author: Michael Bedward
7 # Copyright: (c) 1999 Michael Bedward
10 # This creates the makefiles for all compilers from the templates using
11 # tmake. The tmake executable should be in the path.
13 # Assume we are in distrib/msw/tmake
16 mswdir
="$topdir/src/msw"
22 echo "Generating $mswdir/makefile.b32 for Borland C++ (32 bits)..."
23 tmake
-t b32 wxwin.pro
-o $mswdir/makefile.b32
;;
26 echo "Generating $mswdir/makefile.bcc for Borland C++ (16 bits)..."
27 tmake
-t bcc wxwin.pro
-o $mswdir/makefile.bcc
;;
30 echo "Generating $mswdir/makefile.dos for Visual C++ 1.52..."
31 tmake
-t dos wxwin.pro
-o $mswdir/makefile.dos
;;
34 echo "Generating $mswdir/makefile.g95 for Cygwin/Mingw32..."
35 tmake
-t g95 wxwin.pro
-o $mswdir/makefile.g95
;;
38 echo "Generating $mswdir/makefile.sc for Symantec C++..."
39 tmake
-t sc wxwin.pro
-o $mswdir/makefile.sc
;;
42 echo "Generating $mswdir/makefile.vc for Visual C++ 4.0..."
43 tmake
-t vc wxwin.pro
-o $mswdir/makefile.vc
;;
46 echo "Generating $mswdir/makefile.wat for Watcom C++..."
47 tmake
-t wat wxwin.pro
-o $mswdir/makefile.wat
;;
50 echo "Generating $topdir/Makefile.in for Unix and Configure..."
51 tmake
-t unx wxwin.pro
-o $topdir/Makefile.
in;;