From e00a018306b2ad9320faad611a60ac63d2b6f632 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Wed, 2 Feb 2000 00:08:20 +0000 Subject: [PATCH] Added rules using motif.t gtk.t os2.t git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/msw/tmake/Makefile | 10 ++++++++-- distrib/msw/tmake/makeall.bat | 5 +++-- distrib/msw/tmake/makeall.sh | 12 ++++++++++-- 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/distrib/msw/tmake/Makefile b/distrib/msw/tmake/Makefile index a40a96db81..00cd18fd74 100644 --- a/distrib/msw/tmake/Makefile +++ b/distrib/msw/tmake/Makefile @@ -40,5 +40,11 @@ $(MSW_MAKEFILES_DIR)/makefile.g95: filelist.txt wxwin.pro $(MSW_MAKEFILES_DIR)/makefile.g295: filelist.txt wxwin.pro g295.t $(TMAKE) -t g295 wxwin.pro -o $@ -$(WXDIR)/Makefile.in: filelist.txt wxwin.pro - $(TMAKE) -t unx wxwin.pro -o $@ +$(WXDIR)/src/gtk/files.lst: filelist.txt wxwin.pro + $(TMAKE) -t gtk wxwin.pro -o $@ + +$(WXDIR)/src/motif/files.lst: filelist.txt wxwin.pro + $(TMAKE) -t motif wxwin.pro -o $@ + +$(WXDIR)/src/os2/files.lst: filelist.txt wxwin.pro + $(TMAKE) -t os2 wxwin.pro -o $@ diff --git a/distrib/msw/tmake/makeall.bat b/distrib/msw/tmake/makeall.bat index 064401de8c..498080c768 100755 --- a/distrib/msw/tmake/makeall.bat +++ b/distrib/msw/tmake/makeall.bat @@ -50,6 +50,7 @@ E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t sc wxwin.pro echo Generating for Watcom C++... E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t wat wxwin.pro -o %WXDIR%\src\msw\makefile.wat echo Generating for Unix and Configure... -E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t unx wxwin.pro -o %WXDIR%\Makefile.in - +E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t gtk wxwin.pro -o %WXDIR%\src\gtk\files.lst +E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t motif wxwin.pro -o %WXDIR%\src\motif\files.lst +E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t os2 wxwin.pro -o %WXDIR%\src\os2\files.lst :end diff --git a/distrib/msw/tmake/makeall.sh b/distrib/msw/tmake/makeall.sh index 220e863805..cd3ffec0dc 100755 --- a/distrib/msw/tmake/makeall.sh +++ b/distrib/msw/tmake/makeall.sh @@ -46,9 +46,17 @@ do echo "Generating $mswdir/makefile.wat for Watcom C++..." tmake -t wat wxwin.pro -o $mswdir/makefile.wat;; + gtk.t) + echo "Generating $topdir/src/gtk/files.lst for GTK and Configure..." + tmake -t gtk wxwin.pro -o $topdir/src/gtk/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;; + unx.t) - echo "Generating $topdir/Makefile.in for Unix and Configure..." - tmake -t unx wxwin.pro -o $topdir/Makefile.in;; + 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