1 #!#############################################################################
3 #! Purpose: tmake template file from which makefile.b32 is generated by running
4 #! tmake -t b32 wxwin.pro
5 #! Author: Vadim Zeitlin
8 #!#############################################################################
11 #! include the code which parses filelist.txt file and initializes
12 #! %wxCommon, %wxGeneric and %wxMSW hashes.
13 IncludeTemplate("filelist.t");
15 #! now transform these hashes into $project tags
17 foreach $file (sort keys %wxUNIV) {
18 next if $wxUNIV{$file} =~ /\T\b/;
20 $file =~ s/cp?p?$/obj/;
21 $obj = "\$(UNIVDIR)\\" . $file . " ";
22 $project{"WXUNIVOBJS"} .= "\$(MSWDIR)\\" . $file . " "
25 foreach $file (sort keys %wxUNIV) {
26 next unless $wxUNIV{$file} =~ /\T\b/;
28 $file =~ s/cp?p?$/obj/;
29 $obj = "\$(UNIVTHEMEDIR)\\" . $file . " ";
30 $project{"WXUNIVTHEMEOBJS"} .= "\$(MSWDIR)\\" . $file . " "
33 foreach $file (sort keys %wxHTML) {
34 next if $wxHTML{$file} =~ /\b16\b/;
36 $file =~ s/cp?p?$/obj/;
37 $project{"WXHTMLOBJS"} .= "\$(MSWDIR)\\" . $file . " "
40 foreach $file (sort keys %wxCommon) {
41 next if $wxCommon{$file} =~ /\b(16|U)\b/;
43 $isCFile = $file =~ /\.c$/;
44 $file =~ s/cp?p?$/obj/;
45 $obj = "\$(MSWDIR)\\" . $file . " ";
46 $project{"WXCOMMONOBJS"} .= $obj;
47 $project{"WXCOBJS"} .= $obj if $isCFile;
50 foreach $file (sort keys %wxMSW) {
51 next unless $wxMSW{$file} =~ /\b(L|B)\b/;
53 #! if ( $file =~ /^automtn/ ) {
54 #! #! comment in old makefile.b32 seems to imply that this file can not
55 #! #! be compiled with Borland (leads to crash in oleauto sample)
56 #! No longer true, at least for BC++ 5.2
60 $isCFile = $file =~ /\.c$/;
62 my $isOleObj = $wxMSW{$file} =~ /\bO\b/;
63 $file =~ s/cp?p?$/obj/;
64 my $obj = "\$(MSWDIR)\\" . $file . " ";
66 $project{"WXMSWOBJS"} .= $obj;
68 #! remember that this file is in ole subdir
69 $project{"WXOLEOBJS"} .= $obj;
71 $project{"WXCOBJS"} .= $obj if $isCFile;
74 foreach $file (sort keys %wxGeneric) {
76 if ( $file =~ /^([^.]+)g.cpp$/ ) {
79 $file =~ s/cp?p?$/obj/;
80 $filereal =~ s/cp?p?$/obj/;
82 next if $project{"WXMSWOBJS"} =~ /\b$filereal\b/ ||
83 $project{"WXUNIVOBJS"} =~ /\b$filereal\b/;
86 $project{"WXGENERICOBJS"} .= "\$(MSWDIR)\\" . $file . " "
91 # This file was automatically generated by tmake
92 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE B32.T!
96 # Author: Julian Smart
103 # Makefile : Builds wxWindows library wx.lib for MS Windows,
104 # and Borland C++ (32-bit).
106 # BCCDIR now defined in ../makeb32.env
109 !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
113 THISDIR = $(WXDIR)\src\msw
115 # Set all these to 1 if you want to build a dynamic library
121 !include $(WXDIR)\src\makeb32.env
123 # Please set these according to the settings in wx_setup.h, so we can include
124 # the appropriate libraries in wx.lib
131 !if "$(USE_CTL3D)" == "1"
132 #Use WIN32S/WIN95 32 bit version ctl3d32.dll under win95 (Andre Beltman)
133 PERIPH_LIBS=$(WXDIR)\lib\ctl3d32.lib $(PERIPH_LIBS)
134 PERIPH_TARGET=ctl3d $(PERIPH_TARGET)
135 PERIPH_CLEAN_TARGET=clean_ctl3d $(PERIPH_CLEAN_TARGET)
138 #PERIPH_LIBS=$(WXDIR)\lib\zlib.lib $(WXDIR)\lib\winpng.lib $(WXDIR)\lib\jpeg.lib $(WXDIR)\lib\tiff.lib $(PERIPH_LIBS)
140 PERIPH_TARGET=zlib png jpeg tiff regex $(PERIPH_TARGET)
141 PERIPH_CLEAN_TARGET=clean_zlib clean_png clean_jpeg clean_tiff clean_regex $(PERIPH_CLEAN_TARGET)
147 LIBS= cw32mti import32 ole2w32 odbc32 zlib winpng jpeg tiff regex
157 UNIVTHEMEDIR=..\univ\themes
160 DOCDIR = $(WXDIR)\docs
162 GENERICOBJS= #$ ExpandList("WXGENERICOBJS");
165 # $(MSWDIR)\colrdlgg.obj \
166 # $(MSWDIR)\fontdlgg.obj \
167 # $(MSWDIR)\msgdlgg.obj \
168 # $(MSWDIR)\printps.obj \
169 # $(MSWDIR)\prntdlgg.obj \
170 # $(MSWDIR)\listctrl.obj \
171 # $(MSWDIR)\notebook.obj \
172 # $(MSWDIR)\treectrl.obj
175 $(MSWDIR)\y_tab.obj \
176 #$ ExpandList("WXCOMMONOBJS");
178 MSWOBJS = #$ ExpandList("WXMSWOBJS");
180 HTMLOBJS = #$ ExpandList("WXHTMLOBJS");
182 UNIVOBJS = #$ ExpandList("WXUNIVOBJS");
184 UNIVTHEMEOBJS = #$ ExpandList("WXUNIVTHEMEOBJS");
186 OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS) $(HTMLOBJS) $(UNIVOBJS) $(UNIVTHEMEOBJS)
190 wx: $(ARCHINCDIR)\wx makesetuph makearchsetuph $(CFG) $(DUMMY).obj $(OBJECTS) $(PERIPH_TARGET) $(LIBTARGET)
194 # Copy the in-CVS setup0.h to setup.h if necessary
196 cd $(WXDIR)\include\wx\msw
197 if not exist setup.h copy setup0.h setup.h
200 # Copy include\wx\univ\setup.h to the architecture-specific location
202 copy $(WXDIR)\include\wx\univ\setup.h $(ARCHSETUPH)
207 -mkdir $(ARCHINCDIR)\wx
211 $(LIBTARGET): $(DUMMY).obj $(OBJECTS)
213 tlib "$(LIBTARGET)" /P1024 @&&!
214 +$(OBJECTS:.obj =.obj +) +$(PERIPH_LIBS:.lib =.lib +)
219 $(LIBTARGET): $(DUMMY).obj $(OBJECTS)
221 -erase $(WXLIBDIR)\wx.dll
222 $(LINK) $(LINK_FLAGS) /L$(WXLIBDIR);$(BCCDIR)\lib;$(BCCDIR)\lib\psdk /v @&&!
226 $(PERIPH_LIBS) $(LIBS)
229 -erase $(WXLIBDIR)\version.res
230 brc32 -r -i$(WXDIR)\include\ $(MSWDIR)\version.rc
231 implib -c $(LIBTARGET) $(WXLIBDIR)\wx.dll
235 dummy.obj: dummy.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
236 dummydll.obj: dummydll.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h version.res
238 $(MSWDIR)\y_tab.obj: $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
241 # $(CPPFLAGS2) /c $*.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
244 $(COMMDIR)\y_tab.c: $(COMMDIR)\dosyacc.c
245 copy $(COMMDIR)\dosyacc.c $(COMMDIR)\y_tab.c
247 $(COMMDIR)\lex_yy.c: $(COMMDIR)\doslex.c
248 copy $(COMMDIR)\doslex.c $(COMMDIR)\lex_yy.c
250 # $(OBJECTS): $(WXDIR)\include\wx\setup.h
253 $_ = $project{"WXMSWOBJS"};
257 if ( $project{"WXOLEOBJS"} =~ /\Q$_/ ) { s/MSWDIR/OLEDIR/; }
258 $suffix = $project{"WXCOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
260 $text .= $_ . "\n\n";
264 ########################################################
265 # Common objects (always compiled)
268 $_ = $project{"WXCOMMONOBJS"};
272 $suffix = $project{"WXCOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
275 $text .= $_ . "\n\n";
279 ########################################################
280 # Generic objects (not always compiled, depending on
281 # whether platforms have native implementations)
284 $_ = $project{"WXGENERICOBJS"};
290 $text .= $_ . "\n\n";
294 ########################################################
295 # HTML objects (always compiled)
298 $_ = $project{"WXHTMLOBJS"};
304 $text .= $_ . "\n\n";
309 ########################################################
310 # UNIV objects (always compiled)
313 $_ = $project{"WXUNIVOBJS"};
319 $text .= $_ . "\n\n";
324 ########################################################
325 # UNIV THEME objects (always compiled)
328 $_ = $project{"WXUNIVTHEMEOBJS"};
332 s/MSWDIR/UNIVTHEMEDIR/;
334 $text .= $_ . "\n\n";
351 make -f makefile.b32 all_execs
361 make -f makefile.b32 clean
366 make -f makefile.b32 lib
371 make -f makefile.b32 clean
381 make -f makefile.b32 clean
385 cd $(WXDIR)\src\regex
386 make -f makefile.b32 lib
390 cd $(WXDIR)\src\regex
391 make -f makefile.b32 clean
396 make -f makefile.b32 lib
401 make -f makefile.b32 clean
407 -H=$(WXDIR)\src\msw\wx32.csm
415 -w-hid # virtual function A hides virtual function B
418 -I$(ARCHINCDIR);$(WXINC);$(BCCDIR)\include;$(WXDIR)/src/generic;$(WXDIR)/src/png;$(WXDIR)/src/jpeg;$(WXDIR)/src/zlib;$(WXDIR)/src/tiff
419 -I$(WXDIR)\include\wx\msw\gnuwin32
421 -L$(BCCDIR)\lib;$(BCCDIR)\lib\psdk
432 clean: $(PERIPH_CLEAN_TARGET)
434 -erase $(WXLIBDIR)\wx.dll
435 -erase $(WXLIBDIR)\wx.tds
436 -erase $(WXLIBDIR)\wx.il?
442 -erase ..\common\y_tab.c
443 -erase ..\common\lex_yy.c
449 docs: allhlp allhtml allpdfrtf
451 hlp: wxhlp portinghlp
452 wxhlp: $(DOCDIR)/winhelp/wx.hlp
453 prophlp: $(DOCDIR)/winhelp/prop.hlp
454 refhlp: $(DOCDIR)/winhelp/techref.hlp
455 rtf: $(DOCDIR)/winhelp/wx.rtf
456 proprtf: $(DOCDIR)/winhelp/prop.rtf
457 pdfrtf: $(DOCDIR)/pdf/wx.rtf
458 proppdfrtf: $(DOCDIR)/pdf/prop.rtf
459 refpdfrtf: $(DOCDIR)/pdf/techref.rtf
460 html: wxhtml portinghtml
461 wxhtml: $(DOCDIR)\html\wx\wx.htm
462 htmlhelp: $(DOCDIR)\html\wx\wx.chm
463 prophtml: $(DOCDIR)\html\proplist\prop.htm
465 wxps: $(WXDIR)\docs\ps\wx.ps
466 propps: $(WXDIR)\docs\ps\prop.ps
467 referencps: $(WXDIR)\docs\ps\referenc.ps
469 portinghtml: $(DOCDIR)\html\porting\port.htm
470 portingrtf: $(DOCDIR)/winhelp/porting.rtf
471 portinghlp: $(DOCDIR)/winhelp/porting.hlp
472 portingpdfrtf: $(DOCDIR)/pdf/porting.rtf
473 portingps: $(WXDIR)\docs\ps\porting.ps
475 allhlp: wxhlp portinghlp prophlp
476 cd $(WXDIR)\utils\dialoged\src
477 make -f makefile.b32 hlp
480 # cd $(WXDIR)\utils\wxhelp\src
481 # make -f makefile.b32 hlp
482 # cd $(WXDIR)\utils\tex2rtf\src
483 # make -f makefile.b32 hlp
484 # cd $(WXDIR)\utils\wxgraph\src
485 # make -f makefile.b32 hlp
486 # cd $(WXDIR)\utils\wxchart\src
487 # make -f makefile.b32 hlp
488 # cd $(WXDIR)\utils\wxtree\src
489 # make -f makefile.b32 hlp
490 # cd $(WXDIR)\utils\wxbuild\src
491 # make -f makefile.b32 hlp
492 # cd $(WXDIR)\utils\wxgrid\src
493 # make -f makefile.b32 hlp
495 allhtml: wxhtml portinghtml prophtml
496 cd $(WXDIR)\utils\dialoged\src
497 make -f makefile.b32 html
500 # make -f makefile.b32 html
501 # cd $(WXDIR)\utils\dialoged\src
502 # make -f makefile.b32 html
503 # cd $(WXDIR)\utils\hytext\src
504 # make -f makefile.b32 html
505 # cd $(WXDIR)\utils\wxhelp\src
506 # make -f makefile.b32 html
507 # cd $(WXDIR)\utils\tex2rtf\src
508 # make -f makefile.b32 html
509 # cd $(WXDIR)\utils\wxgraph\src
510 # make -f makefile.b32 html
511 # cd $(WXDIR)\utils\wxchart\src
512 # make -f makefile.b32 html
513 # cd $(WXDIR)\utils\wxtree\src
514 # make -f makefile.b32 html
516 allps: wxps referencps portingps propps
517 cd $(WXDIR)\utils\dialoged\src
518 make -f makefile.b32 ps
521 allpdfrtf: pdfrtf portingpdfrtf proppdfrtf
522 cd $(WXDIR)\utils\dialoged\src
523 make -f makefile.b32 pdfrtf
526 # cd $(WXDIR)\utils\wxhelp\src
527 # make -f makefile.b32 ps
528 # cd $(WXDIR)\utils\tex2rtf\src
529 # make -f makefile.b32 ps
530 # cd $(WXDIR)\utils\wxgraph\src
531 # make -f makefile.b32 ps
532 # cd $(WXDIR)\utils\wxchart\src
533 # make -f makefile.b32 ps
534 # cd $(WXDIR)\utils\wxtree\src
535 # make -f makefile.b32 ps
538 $(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
539 cd $(DOCDIR)/latex/wx
542 move wx.hlp $(DOCDIR)\winhelp\wx.hlp
543 move wx.cnt $(DOCDIR)\winhelp\wx.cnt
546 $(DOCDIR)/winhelp/porting.hlp: $(DOCDIR)/latex/porting/porting.rtf $(DOCDIR)/latex/porting/porting.hpj
547 cd $(DOCDIR)/latex/porting
550 move porting.hlp $(DOCDIR)\winhelp\porting.hlp
551 move porting.cnt $(DOCDIR)\winhelp\porting.cnt
554 $(DOCDIR)/winhelp/prop.hlp: $(DOCDIR)/latex/proplist/prop.rtf $(DOCDIR)/latex/proplist/prop.hpj
555 cd $(DOCDIR)/latex/proplist
558 move prop.hlp $(DOCDIR)\winhelp\prop.hlp
559 move prop.cnt $(DOCDIR)\winhelp\prop.cnt
562 $(DOCDIR)/winhelp/techref.hlp: $(DOCDIR)/latex/techref/techref.rtf $(DOCDIR)/latex/techref/techref.hpj
563 cd $(DOCDIR)/latex/techref
566 move techref.hlp $(DOCDIR)\winhelp\techref.hlp
567 move techref.cnt $(DOCDIR)\winhelp\techref.cnt
570 $(DOCDIR)/latex/wx/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
571 cd $(DOCDIR)\latex\wx
572 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
575 $(DOCDIR)/latex/porting/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
576 cd $(DOCDIR)\latex\porting
577 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/latex/porting/porting.rtf -twice -winhelp
580 $(DOCDIR)/latex/proplist/prop.rtf: $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/body.tex $(DOCDIR)/latex/proplist/classes.tex $(DOCDIR)/latex/proplist/changes.tex
581 cd $(DOCDIR)\latex\proplist
582 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/prop.rtf -twice -winhelp
585 $(DOCDIR)/latex/techref/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
586 cd $(DOCDIR)\latex\techref
587 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/latex/techref/techref.rtf -twice -winhelp
590 $(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
591 cd $(DOCDIR)\latex\wx
592 -copy *.wmf $(DOCDIR)\pdf
593 -copy *.bmp $(DOCDIR)\pdf
594 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
597 $(DOCDIR)/pdf/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
598 cd $(DOCDIR)\latex\porting
599 -copy *.wmf $(DOCDIR)\pdf
600 -copy *.bmp $(DOCDIR)\pdf
601 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/pdf/porting.rtf -twice -rtf
604 $(DOCDIR)/pdf/prop.rtf: $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/body.tex $(DOCDIR)/latex/proplist/classes.tex $(DOCDIR)/latex/proplist/changes.tex
605 cd $(DOCDIR)\latex\proplist
606 -copy *.wmf $(DOCDIR)\pdf
607 -copy *.bmp $(DOCDIR)\pdf
608 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/pdf/prop.rtf -twice -rtf
611 $(DOCDIR)/pdf/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
612 cd $(DOCDIR)\latex\techref
613 -copy *.wmf $(DOCDIR)\pdf
614 -copy *.bmp $(DOCDIR)\pdf
615 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/pdf/techref.rtf -twice -rtf
618 $(DOCDIR)\html\wx\wx.htm: $(DOCDIR)\latex\wx\classes.tex $(DOCDIR)\latex\wx\body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)\latex\wx\manual.tex
619 cd $(DOCDIR)\latex\wx
620 -mkdir $(DOCDIR)\html\wx
621 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
622 -erase $(DOCDIR)\html\wx\*.con
623 -erase $(DOCDIR)\html\wx\*.ref
624 -erase $(DOCDIR)\latex\wx\*.con
625 -erase $(DOCDIR)\latex\wx\*.ref
628 $(DOCDIR)\html\wx\wx.chm : $(DOCDIR)\html\wx\wx.htm $(DOCDIR)\html\wx\wx.hhp
634 $(DOCDIR)\html\porting\port.htm: $(DOCDIR)\latex\porting\porting.tex
635 cd $(DOCDIR)\latex\porting
636 -mkdir $(DOCDIR)\html\porting
637 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\porting\porting.tex $(DOCDIR)\html\porting\port.htm -twice -html
638 -erase $(DOCDIR)\html\porting\*.con
639 -erase $(DOCDIR)\html\porting\*.ref
640 -erase $(DOCDIR)\latex\porting\*.con
641 -erase $(DOCDIR)\latex\porting\*.ref
644 $(DOCDIR)\html\proplist\prop.htm: $(DOCDIR)\latex\proplist\prop.tex $(DOCDIR)\latex\proplist\body.tex $(DOCDIR)\latex\proplist\classes.tex $(DOCDIR)\latex\proplist\changes.tex
645 cd $(DOCDIR)\latex\proplist
646 -mkdir $(DOCDIR)\html\proplist
647 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\proplist\prop.tex $(DOCDIR)\html\proplist\prop.htm -twice -html
648 -erase $(DOCDIR)\html\proplist\*.con
649 -erase $(DOCDIR)\html\proplist\*.ref
650 -erase $(DOCDIR)\latex\proplist\*.con
651 -erase $(DOCDIR)\latex\proplist\*.ref
654 $(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
655 cd $(WXDIR)\docs\latex\wx
664 $(WXDIR)\docs\latex\porting\porting.dvi: $(DOCDIR)/latex/porting/porting.tex
665 cd $(WXDIR)\docs\latex\porting
674 $(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
675 cd $(WXDIR)\docs\latex\wx
676 -dvips32 -o wx.ps manual
677 move wx.ps $(WXDIR)\docs\ps\wx.ps
680 $(WXDIR)\docs\ps\porting.ps: $(WXDIR)\docs\latex\porting\porting.dvi
681 cd $(WXDIR)\docs\latex\porting
682 -dvips32 -o porting.ps porting
683 move porting.ps $(WXDIR)\docs\ps\porting.ps
686 $(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
687 cd $(WXDIR)\docs\latex\wx
696 $(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
697 cd $(WXDIR)\docs\latex\wx
698 -dvips32 -o referenc.ps referenc
699 move referenc.ps $(WXDIR)\docs\ps\referenc.ps
702 # In order to force document reprocessing
704 -touch $(WXDIR)\docs\latex\wx\manual.tex
706 updatedocs: touchmanual alldocs
708 # Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
709 # Office StartUp folder, and PDFMaker should be installed.
710 updatepdf: # touchmanual pdfrtf
711 start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\wx.rtf /mGeneratePDF"
715 # Can't use this or we'll have to distribute all tmake files with wxWindows
716 # makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
719 cd $(WXWIN)\distrib\msw\tmake
720 tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
721 copy makefile.$(MFTYPE) $(WXWIN)\src\msw