X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5620d8de24e4c8600e2d8a58c480cfa60d601053..0a68bc69086f122b9f7166f505c415db9ee21afe:/distrib/msw/tmake/makeall.sh diff --git a/distrib/msw/tmake/makeall.sh b/distrib/msw/tmake/makeall.sh index 0effc4fe91..39d15ef158 100755 --- a/distrib/msw/tmake/makeall.sh +++ b/distrib/msw/tmake/makeall.sh @@ -13,7 +13,8 @@ # Assume we are in distrib/msw/tmake # topdir="../../.." -mswdir="$topdir/src/msw" +srcdir="$topdir/src" +mswdir="$srcdir/msw" for tname in `ls *.t` do @@ -42,6 +43,18 @@ do echo "Generating $mswdir/makefile.vc for Visual C++ 4.0..." tmake -t vc wxwin.pro -o $mswdir/makefile.vc;; + vc6msw.t) + echo "Generating $srcdir/wxWindows.dsp for Visual C++ 6.0..." + tmake -t vc6msw wxwin.pro -o $srcdir/wxWindows.dsp;; + + vc6base.t) + echo "Generating $srcdir/wxBase.dsp for Visual C++ 6.0..." + tmake -t vc6base wxwin.pro -o $srcdir/wxBase.dsp;; + + vc6univ.t) + echo "Generating $srcdir/wxUniv.dsp for Visual C++ 6.0..." + tmake -t vc6univ wxwin.pro -o $srcdir/wxUniv.dsp;; + wat.t) echo "Generating $mswdir/makefile.wat for Watcom C++..." tmake -t wat wxwin.pro -o $mswdir/makefile.wat;; @@ -50,18 +63,26 @@ do 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;; + mgl.t) + echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..." + tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;; + + micro.t) + echo "Generating $topdir/src/micro/files.lst for MicroWindows and Configure..." + tmake -t micro wxwin.pro -o $topdir/src/microwin/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;; + mac.t) + echo "Generating $topdir/src/mac/files.lst for Mac and Configure..." + tmake -t mac wxwin.pro -o $topdir/src/mac/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;; @@ -77,6 +98,14 @@ do mgl.t) echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..." tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;; + + x11.t) + echo "Generating $topdir/src/x11/files.lst for X11 and Configure..." + tmake -t x11 wxwin.pro -o $topdir/src/x11/files.lst;; + + watmgl.t) + echo "Generating $topdir/src/mgl/makefile.wat for Watcom C++ and MGL+DOS..." + tmake -t watmgl wxwin.pro -o $topdir/src/mgl/makefile.wat;; esac done