]>
Commit | Line | Data |
---|---|---|
ef3a5c9e MB |
1 | #!/bin/sh |
2 | # | |
f3391ea5 MB |
3 | # File: makeall.sh |
4 | # Purpose: create wxWindows makefiles for all compilers | |
5 | # Author: Michael Bedward | |
6 | # Created: 29 Aug 1999 | |
7 | # Copyright: (c) 1999 Michael Bedward | |
8 | # Version: $Id$ | |
9 | # | |
10 | # This creates the makefiles for all compilers from the templates using | |
da906b97 | 11 | # tmake. The tmake executable should be in the path. |
f3391ea5 MB |
12 | |
13 | # Assume we are in distrib/msw/tmake | |
14 | # | |
15 | topdir="../../.." | |
c5627cd8 VZ |
16 | srcdir="$topdir/src" |
17 | mswdir="$srcdir/msw" | |
ef3a5c9e | 18 | |
da906b97 | 19 | for tname in `ls *.t` |
ef3a5c9e MB |
20 | do |
21 | case $tname in | |
22 | b32.t) | |
f3391ea5 | 23 | echo "Generating $mswdir/makefile.b32 for Borland C++ (32 bits)..." |
da906b97 RD |
24 | ./tmake -t b32 wxwin.pro -o $mswdir/makefile.b32 |
25 | ./tmake -t b32univ wxwin.pro -o $mswdir/makeuniv.b32 | |
95f102ab | 26 | ./tmake -t b32base wxwin.pro -o $mswdir/makebase.b32 ;; |
ef3a5c9e MB |
27 | |
28 | bcc.t) | |
f3391ea5 | 29 | echo "Generating $mswdir/makefile.bcc for Borland C++ (16 bits)..." |
c15521c6 | 30 | ./tmake -t bcc wxwin.pro -o $mswdir/makefile.bcc;; |
ef3a5c9e MB |
31 | |
32 | dos.t) | |
f3391ea5 | 33 | echo "Generating $mswdir/makefile.dos for Visual C++ 1.52..." |
c15521c6 | 34 | ./tmake -t dos wxwin.pro -o $mswdir/makefile.dos;; |
ef3a5c9e MB |
35 | |
36 | g95.t) | |
f3391ea5 | 37 | echo "Generating $mswdir/makefile.g95 for Cygwin/Mingw32..." |
c15521c6 | 38 | ./tmake -t g95 wxwin.pro -o $mswdir/makefile.g95;; |
ef3a5c9e MB |
39 | |
40 | sc.t) | |
f3391ea5 | 41 | echo "Generating $mswdir/makefile.sc for Symantec C++..." |
c15521c6 | 42 | ./tmake -t sc wxwin.pro -o $mswdir/makefile.sc;; |
ef3a5c9e | 43 | |
da906b97 | 44 | vc.t) |
f3391ea5 | 45 | echo "Generating $mswdir/makefile.vc for Visual C++ 4.0..." |
c15521c6 | 46 | ./tmake -t vc wxwin.pro -o $mswdir/makefile.vc;; |
ef3a5c9e | 47 | |
da906b97 | 48 | vc6msw.t) |
c5627cd8 | 49 | echo "Generating $srcdir/wxWindows.dsp for Visual C++ 6.0..." |
c15521c6 | 50 | ./tmake -t vc6msw wxwin.pro -o $srcdir/wxWindows.dsp;; |
c5627cd8 | 51 | |
da906b97 | 52 | vc6base.t) |
c5627cd8 | 53 | echo "Generating $srcdir/wxBase.dsp for Visual C++ 6.0..." |
c15521c6 | 54 | ./tmake -t vc6base wxwin.pro -o $srcdir/wxBase.dsp;; |
c5627cd8 | 55 | |
da906b97 | 56 | vc6univ.t) |
c5627cd8 | 57 | echo "Generating $srcdir/wxUniv.dsp for Visual C++ 6.0..." |
c15521c6 | 58 | ./tmake -t vc6univ wxwin.pro -o $srcdir/wxUniv.dsp;; |
c5627cd8 | 59 | |
ef3a5c9e | 60 | wat.t) |
f3391ea5 | 61 | echo "Generating $mswdir/makefile.wat for Watcom C++..." |
c15521c6 | 62 | ./tmake -t wat wxwin.pro -o $mswdir/makefile.wat;; |
ef3a5c9e | 63 | |
7b0b2dcc VS |
64 | base.t) |
65 | echo "Generating $topdir/src/files.lst for Configure..." | |
c15521c6 | 66 | ./tmake -t base wxwin.pro -o $topdir/src/files.lst ;; |
5da2c444 | 67 | |
e00a0183 SN |
68 | gtk.t) |
69 | echo "Generating $topdir/src/gtk/files.lst for GTK and Configure..." | |
c15521c6 | 70 | ./tmake -t gtk wxwin.pro -o $topdir/src/gtk/files.lst;; |
e00a0183 | 71 | |
1725144d RR |
72 | mgl.t) |
73 | echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..." | |
c15521c6 | 74 | ./tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;; |
1725144d RR |
75 | |
76 | micro.t) | |
77 | echo "Generating $topdir/src/micro/files.lst for MicroWindows and Configure..." | |
c15521c6 | 78 | ./tmake -t micro wxwin.pro -o $topdir/src/microwin/files.lst;; |
1725144d | 79 | |
a54a9cd3 VZ |
80 | msw.t) |
81 | echo "Generating $topdir/src/msw/files.lst for MSW and Configure..." | |
c15521c6 | 82 | ./tmake -t msw wxwin.pro -o $topdir/src/msw/files.lst;; |
a54a9cd3 | 83 | |
2b03b51b GD |
84 | mac.t) |
85 | echo "Generating $topdir/src/mac/files.lst for Mac and Configure..." | |
c15521c6 | 86 | ./tmake -t mac wxwin.pro -o $topdir/src/mac/files.lst;; |
2b03b51b | 87 | |
e00a0183 SN |
88 | motif.t) |
89 | echo "Generating $topdir/src/motif/files.lst for Motif and Configure..." | |
c15521c6 | 90 | ./tmake -t motif wxwin.pro -o $topdir/src/motif/files.lst;; |
e00a0183 | 91 | |
1e6feb95 VZ |
92 | univ.t) |
93 | echo "Generating $topdir/src/univ/files.lst for wxUniversal..." | |
c15521c6 | 94 | ./tmake -t univ wxwin.pro -o $topdir/src/univ/files.lst;; |
1e6feb95 | 95 | |
ef3a5c9e | 96 | unx.t) |
e00a0183 | 97 | echo "Generating $topdir/src/os2/files.lst for OS/2 PM and Configure..." |
c15521c6 | 98 | ./tmake -t os2 wxwin.pro -o $topdir/src/os2/files.lst;; |
5620d8de VS |
99 | |
100 | mgl.t) | |
101 | echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..." | |
c15521c6 | 102 | ./tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;; |
f17fb297 | 103 | |
49f72157 RR |
104 | x11.t) |
105 | echo "Generating $topdir/src/x11/files.lst for X11 and Configure..." | |
c15521c6 | 106 | ./tmake -t x11 wxwin.pro -o $topdir/src/x11/files.lst;; |
49f72157 | 107 | |
f17fb297 VS |
108 | watmgl.t) |
109 | echo "Generating $topdir/src/mgl/makefile.wat for Watcom C++ and MGL+DOS..." | |
c15521c6 | 110 | ./tmake -t watmgl wxwin.pro -o $topdir/src/mgl/makefile.wat;; |
ef3a5c9e MB |
111 | esac |
112 | done | |
113 |