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
16 foreach $file (sort keys %wxUNIV) {
17 next if $wxUNIV{$file} =~ /\T\b/;
19 $file =~ s/cp?p?$/obj/;
20 $obj = "\$(UNIVDIR)\\" . $file . " ";
21 $project{"WXUNIVOBJS"} .= "\$(MSWDIR)\\" . $file . " "
24 foreach $file (sort keys %wxUNIV) {
25 next unless $wxUNIV{$file} =~ /\T\b/;
27 $file =~ s/cp?p?$/obj/;
28 $obj = "\$(UNIVTHEMEDIR)\\" . $file . " ";
29 $project{"WXUNIVTHEMEOBJS"} .= "\$(MSWDIR)\\" . $file . " "
32 foreach $file (sort keys %wxHTML) {
33 next if $wxHTML{$file} =~ /\b16\b/;
35 $file =~ s/cp?p?$/obj/;
36 $project{"WXHTMLOBJS"} .= "\$(MSWDIR)\\" . $file . " "
39 foreach $file (sort keys %wxCommon) {
40 next if $wxCommon{$file} =~ /\b(16|U)\b/;
42 $isCFile = $file =~ /\.c$/;
43 $file =~ s/cp?p?$/obj/;
44 $obj = "\$(MSWDIR)\\" . $file . " ";
45 $project{"WXCOMMONOBJS"} .= $obj;
46 $project{"WXCOBJS"} .= $obj if $isCFile;
49 #! MSW dir for native port
50 foreach $file (sort keys %wxMSW) {
51 next if $wxMSW{$file} =~ /\b16\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 #! Now do MSW dir for UNIV
75 foreach $file (sort keys %wxMSW) {
76 next unless $wxMSW{$file} =~ /\b(L|B)\b/;
78 #! if ( $file =~ /^automtn/ ) {
79 #! #! comment in old makefile.b32 seems to imply that this file can not
80 #! #! be compiled with Borland (leads to crash in oleauto sample)
81 #! No longer true, at least for BC++ 5.2
85 $isCFile = $file =~ /\.c$/;
87 my $isOleObj = $wxMSW{$file} =~ /\bO\b/;
88 $file =~ s/cp?p?$/obj/;
89 my $obj = "\$(MSWDIR)\\" . $file . " ";
91 $project{"WXMSWUNIVOBJS"} .= $obj;
93 #! remember that this file is in ole subdir
94 $project{"WXOLEUNIVOBJS"} .= $obj;
96 $project{"WXCUNIVOBJS"} .= $obj if $isCFile;
99 #! Generic Dir for Native Port
100 foreach $file (sort keys %wxGeneric) {
102 next if $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/;
104 $file =~ s/cp?p?$/obj/;
105 $project{"WXGENERICOBJS"} .= "\$(MSWDIR)\\" . $file . " "
108 #! Generic Dir for UNIV Port
109 foreach $file (sort keys %wxGeneric) {
110 my $filereal = $file;
111 if ( $file =~ /^([^.]+)g.cpp$/ ) {
112 $filereal = "$1.cpp";
114 $file =~ s/cp?p?$/obj/;
115 $filereal =~ s/cp?p?$/obj/;
117 next if $project{"WXMSWUNIVOBJS"} =~ /\b$filereal\b/ ||
118 $project{"WXUNIVOBJS"} =~ /\b$filereal\b/;
121 $project{"WXGENERICUNIVOBJS"} .= "\$(MSWDIR)\\" . $file . " "
126 # This file was automatically generated by tmake
127 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE B32.T!
131 # Author: Julian Smart
138 # Makefile : Builds wxWindows library wx.lib for MS Windows,
139 # and Borland C++ (32-bit).
141 # BCCDIR now defined in ../makeb32.env
144 !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
148 THISDIR = $(WXDIR)\src\msw
151 # Set all these to 1 if you want to build a dynamic library
157 !include $(WXDIR)\src\makeb32.env
159 # Please set these according to the settings in wx_setup.h, so we can include
160 # the appropriate libraries in wx.lib
167 !if "$(USE_CTL3D)" == "1"
168 #Use WIN32S/WIN95 32 bit version ctl3d32.dll under win95 (Andre Beltman)
169 PERIPH_LIBS=$(WXDIR)\lib\ctl3d32.lib $(PERIPH_LIBS)
170 PERIPH_TARGET=ctl3d $(PERIPH_TARGET)
171 PERIPH_CLEAN_TARGET=clean_ctl3d $(PERIPH_CLEAN_TARGET)
174 #PERIPH_LIBS=$(WXDIR)\lib\zlib.lib $(WXDIR)\lib\winpng.lib $(WXDIR)\lib\jpeg.lib $(WXDIR)\lib\tiff.lib $(PERIPH_LIBS)
176 PERIPH_TARGET=zlib png jpeg tiff regex $(PERIPH_TARGET)
177 PERIPH_CLEAN_TARGET=clean_zlib clean_png clean_jpeg clean_tiff clean_regex $(PERIPH_CLEAN_TARGET)
183 LIBS= cw32mti import32 ole2w32 odbc32 zlib winpng jpeg tiff regex
193 UNIVTHEMEDIR=..\univ\themes
196 DOCDIR = $(WXDIR)\docs
198 GENERICOBJS= #$ ExpandList("WXGENERICOBJS");
200 MSWOBJS = #$ ExpandList("WXMSWOBJS");
202 GENERICUNIVOBJS= #$ ExpandList("WXGENERICUNIVOBJS");
204 MSWUNIVOBJS = #$ ExpandList("WXMSWUNIVOBJS");
206 UNIVOBJS = #$ ExpandList("WXUNIVOBJS");
208 UNIVTHEMEOBJS = #$ ExpandList("WXUNIVTHEMEOBJS");
210 HTMLOBJS = #$ ExpandList("WXHTMLOBJS");
213 $(MSWDIR)\y_tab.obj \
214 #$ ExpandList("WXCOMMONOBJS");
216 !if "$(WXUSINGUNIV)" == "1"
217 OBJECTS = $(COMMONOBJS) $(GENERICUNIVOBJS) $(MSWUNIVOBJS) $(HTMLOBJS) $(UNIVOBJS) $(UNIVTHEMEOBJS)
219 OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS) $(HTMLOBJS)
224 wx: $(ARCHINCDIR)\wx makesetuph makearchsetuph $(CFG) $(DUMMY).obj $(OBJECTS) $(PERIPH_TARGET) $(LIBTARGET)
228 # Copy the in-CVS setup0.h to setup.h if necessary
230 cd $(WXDIR)\include\wx\msw
231 if not exist setup.h copy setup0.h setup.h
234 # Copy include\wx\msw\setup.h to the architecture-specific location
236 copy $(SETUPSRCDIR)\setup.h $(ARCHSETUPH)
241 -mkdir $(ARCHINCDIR)\wx
246 $(LIBTARGET): $(DUMMY).obj $(OBJECTS)
248 tlib "$(LIBTARGET)" /P1024 $(LINKDEBUGFLAGS) @&&!
249 +$(OBJECTS:.obj =.obj +) +$(PERIPH_LIBS:.lib =.lib +)
254 $(LIBTARGET): $(DUMMY).obj $(OBJECTS)
257 $(LINK) $(LINK_FLAGS) $(LINKDEBUGFLAGS) /L$(WXLIBDIR);$(BCCDIR)\lib;$(BCCDIR)\lib\psdk @&&!
261 $(PERIPH_LIBS) $(LIBS)
264 implib -c $(LIBTARGET) $(WXDLL)
267 dummy.obj: dummy.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
268 dummydll.obj: dummydll.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h version.res
271 brc32 -r -i$(WXDIR)\include\ $(MSWDIR)\version.rc
273 $(MSWDIR)\y_tab.obj: $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
276 # $(CPPFLAGS2) /c $*.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
279 $(COMMDIR)\y_tab.c: $(COMMDIR)\dosyacc.c
280 copy $(COMMDIR)\dosyacc.c $(COMMDIR)\y_tab.c
282 $(COMMDIR)\lex_yy.c: $(COMMDIR)\doslex.c
283 copy $(COMMDIR)\doslex.c $(COMMDIR)\lex_yy.c
285 # $(OBJECTS): $(WXDIR)\include\wx\setup.h
287 !if "$(WXUSINGUNIV)" == "1"
288 ########################################################
289 # MSW objects (compile Native or UNIV) - UNIV
292 $_ = $project{"WXMSWUNIVOBJS"};
296 if ( $project{"WXOLEOBJS"} =~ /\Q$_/ ) { s/MSWDIR/OLEDIR/; }
297 $suffix = $project{"WXCUNIVOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
299 $text .= $_ . "\n\n";
305 ########################################################
306 # MSW objects (compile Native or UNIV) - Native
309 $_ = $project{"WXMSWOBJS"};
313 if ( $project{"WXOLEOBJS"} =~ /\Q$_/ ) { s/MSWDIR/OLEDIR/; }
314 $suffix = $project{"WXCOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
316 $text .= $_ . "\n\n";
321 !if "$(WXUSINGUNIV)" == "1"
322 ########################################################
325 $_ = $project{"WXUNIVOBJS"};
331 $text .= $_ . "\n\n";
336 ########################################################
340 $_ = $project{"WXUNIVTHEMEOBJS"};
344 s/MSWDIR/UNIVTHEMEDIR/;
346 $text .= $_ . "\n\n";
352 ########################################################
353 # Common objects (always compiled)
356 $_ = $project{"WXCOMMONOBJS"};
360 $suffix = $project{"WXCOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
363 $text .= $_ . "\n\n";
367 !if "$(WXUSINGUNIV)" == "1"
368 ########################################################
369 # Generic objects (not always compiled, depending on
370 # whether platforms have native implementations)
375 $_ = $project{"WXGENERICUNIVOBJS"};
381 $text .= $_ . "\n\n";
386 ########################################################
387 # Generic objects (not always compiled, depending on
388 # whether platforms have native implementations)
392 $_ = $project{"WXGENERICOBJS"};
398 $text .= $_ . "\n\n";
403 ########################################################
404 # HTML objects (always compiled)
407 $_ = $project{"WXHTMLOBJS"};
413 $text .= $_ . "\n\n";
420 ${MAKE} -f makefile.b32
425 ${MAKE} -f makefile.b32
430 ${MAKE} -f makefile.b32 all_execs
435 ${MAKE} -f makefile.b32 FINAL=$(FINAL)
440 ${MAKE} -f makefile.b32 clean
445 ${MAKE} -f makefile.b32 FINAL=$(FINAL) lib
450 ${MAKE} -f makefile.b32 clean
455 ${MAKE} -f makefile.b32 FINAL=$(FINAL)
460 ${MAKE} -f makefile.b32 clean
464 cd $(WXDIR)\src\regex
465 ${MAKE} -f makefile.b32 FINAL=$(FINAL) lib
469 cd $(WXDIR)\src\regex
470 ${MAKE} -f makefile.b32 clean
475 ${MAKE} -f makefile.b32 FINAL=$(FINAL) lib
480 ${MAKE} -f makefile.b32 clean
486 -H=$(WXDIR)\src\msw\wx32.csm
494 -w-hid # virtual function A hides virtual function B
497 -I$(ARCHINCDIR);$(WXINC);$(BCCDIR)\include;$(WXDIR)/src/generic;$(WXDIR)/src/png;$(WXDIR)/src/jpeg;$(WXDIR)/src/zlib;$(WXDIR)/src/tiff
498 -I$(WXDIR)\include\wx\msw\gnuwin32
500 -L$(BCCDIR)\lib;$(BCCDIR)\lib\psdk
510 clean: $(PERIPH_CLEAN_TARGET)
511 -erase $(WXLIBDIR)\wx.tds
512 -erase $(WXLIBDIR)\wx.il?
517 -erase ..\common\y_tab.c
518 -erase ..\common\lex_yy.c
524 docs: allhlp allhtml allpdfrtf
526 hlp: wxhlp portinghlp
527 wxhlp: $(DOCDIR)/winhelp/wx.hlp
528 prophlp: $(DOCDIR)/winhelp/prop.hlp
529 refhlp: $(DOCDIR)/winhelp/techref.hlp
530 rtf: $(DOCDIR)/winhelp/wx.rtf
531 proprtf: $(DOCDIR)/winhelp/prop.rtf
532 pdfrtf: $(DOCDIR)/pdf/wx.rtf
533 proppdfrtf: $(DOCDIR)/pdf/prop.rtf
534 refpdfrtf: $(DOCDIR)/pdf/techref.rtf
535 html: wxhtml portinghtml
536 wxhtml: $(DOCDIR)\html\wx\wx.htm
537 htmlhelp: $(DOCDIR)\html\wx\wx.chm
538 prophtml: $(DOCDIR)\html\proplist\prop.htm
540 wxps: $(WXDIR)\docs\ps\wx.ps
541 propps: $(WXDIR)\docs\ps\prop.ps
542 referencps: $(WXDIR)\docs\ps\referenc.ps
544 portinghtml: $(DOCDIR)\html\porting\port.htm
545 portingrtf: $(DOCDIR)/winhelp/porting.rtf
546 portinghlp: $(DOCDIR)/winhelp/porting.hlp
547 portingpdfrtf: $(DOCDIR)/pdf/porting.rtf
548 portingps: $(WXDIR)\docs\ps\porting.ps
550 allhlp: wxhlp portinghlp prophlp
551 cd $(WXDIR)\utils\dialoged\src
552 ${MAKE} -f makefile.b32 hlp
555 # cd $(WXDIR)\utils\wxhelp\src
556 # ${MAKE} -f makefile.b32 hlp
557 # cd $(WXDIR)\utils\tex2rtf\src
558 # ${MAKE} -f makefile.b32 hlp
559 # cd $(WXDIR)\utils\wxgraph\src
560 # ${MAKE} -f makefile.b32 hlp
561 # cd $(WXDIR)\utils\wxchart\src
562 # ${MAKE} -f makefile.b32 hlp
563 # cd $(WXDIR)\utils\wxtree\src
564 # ${MAKE} -f makefile.b32 hlp
565 # cd $(WXDIR)\utils\wxbuild\src
566 # ${MAKE} -f makefile.b32 hlp
567 # cd $(WXDIR)\utils\wxgrid\src
568 # ${MAKE} -f makefile.b32 hlp
570 allhtml: wxhtml portinghtml prophtml
571 cd $(WXDIR)\utils\dialoged\src
572 ${MAKE} -f makefile.b32 html
575 # ${MAKE} -f makefile.b32 html
576 # cd $(WXDIR)\utils\dialoged\src
577 # ${MAKE} -f makefile.b32 html
578 # cd $(WXDIR)\utils\hytext\src
579 # ${MAKE} -f makefile.b32 html
580 # cd $(WXDIR)\utils\wxhelp\src
581 # ${MAKE} -f makefile.b32 html
582 # cd $(WXDIR)\utils\tex2rtf\src
583 # ${MAKE} -f makefile.b32 html
584 # cd $(WXDIR)\utils\wxgraph\src
585 # ${MAKE} -f makefile.b32 html
586 # cd $(WXDIR)\utils\wxchart\src
587 # ${MAKE} -f makefile.b32 html
588 # cd $(WXDIR)\utils\wxtree\src
589 # ${MAKE} -f makefile.b32 html
591 allps: wxps referencps portingps propps
592 cd $(WXDIR)\utils\dialoged\src
593 ${MAKE} -f makefile.b32 ps
596 allpdfrtf: pdfrtf portingpdfrtf proppdfrtf
597 cd $(WXDIR)\utils\dialoged\src
598 ${MAKE} -f makefile.b32 pdfrtf
601 # cd $(WXDIR)\utils\wxhelp\src
602 # ${MAKE} -f makefile.b32 ps
603 # cd $(WXDIR)\utils\tex2rtf\src
604 # ${MAKE} -f makefile.b32 ps
605 # cd $(WXDIR)\utils\wxgraph\src
606 # ${MAKE} -f makefile.b32 ps
607 # cd $(WXDIR)\utils\wxchart\src
608 # ${MAKE} -f makefile.b32 ps
609 # cd $(WXDIR)\utils\wxtree\src
610 # ${MAKE} -f makefile.b32 ps
613 $(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
614 cd $(DOCDIR)/latex/wx
617 move wx.hlp $(DOCDIR)\winhelp\wx.hlp
618 move wx.cnt $(DOCDIR)\winhelp\wx.cnt
621 $(DOCDIR)/winhelp/porting.hlp: $(DOCDIR)/latex/porting/porting.rtf $(DOCDIR)/latex/porting/porting.hpj
622 cd $(DOCDIR)/latex/porting
625 move porting.hlp $(DOCDIR)\winhelp\porting.hlp
626 move porting.cnt $(DOCDIR)\winhelp\porting.cnt
629 $(DOCDIR)/winhelp/prop.hlp: $(DOCDIR)/latex/proplist/prop.rtf $(DOCDIR)/latex/proplist/prop.hpj
630 cd $(DOCDIR)/latex/proplist
633 move prop.hlp $(DOCDIR)\winhelp\prop.hlp
634 move prop.cnt $(DOCDIR)\winhelp\prop.cnt
637 $(DOCDIR)/winhelp/techref.hlp: $(DOCDIR)/latex/techref/techref.rtf $(DOCDIR)/latex/techref/techref.hpj
638 cd $(DOCDIR)/latex/techref
641 move techref.hlp $(DOCDIR)\winhelp\techref.hlp
642 move techref.cnt $(DOCDIR)\winhelp\techref.cnt
645 $(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
646 cd $(DOCDIR)\latex\wx
647 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
650 $(DOCDIR)/latex/porting/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
651 cd $(DOCDIR)\latex\porting
652 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/latex/porting/porting.rtf -twice -winhelp
655 $(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
656 cd $(DOCDIR)\latex\proplist
657 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/prop.rtf -twice -winhelp
660 $(DOCDIR)/latex/techref/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
661 cd $(DOCDIR)\latex\techref
662 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/latex/techref/techref.rtf -twice -winhelp
665 $(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
666 cd $(DOCDIR)\latex\wx
667 -copy *.wmf $(DOCDIR)\pdf
668 -copy *.bmp $(DOCDIR)\pdf
669 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
672 $(DOCDIR)/pdf/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
673 cd $(DOCDIR)\latex\porting
674 -copy *.wmf $(DOCDIR)\pdf
675 -copy *.bmp $(DOCDIR)\pdf
676 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/pdf/porting.rtf -twice -rtf
679 $(DOCDIR)/pdf/prop.rtf: $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/body.tex $(DOCDIR)/latex/proplist/classes.tex $(DOCDIR)/latex/proplist/changes.tex
680 cd $(DOCDIR)\latex\proplist
681 -copy *.wmf $(DOCDIR)\pdf
682 -copy *.bmp $(DOCDIR)\pdf
683 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/pdf/prop.rtf -twice -rtf
686 $(DOCDIR)/pdf/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
687 cd $(DOCDIR)\latex\techref
688 -copy *.wmf $(DOCDIR)\pdf
689 -copy *.bmp $(DOCDIR)\pdf
690 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/pdf/techref.rtf -twice -rtf
693 $(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
694 cd $(DOCDIR)\latex\wx
695 -mkdir $(DOCDIR)\html\wx
696 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
697 -erase $(DOCDIR)\html\wx\*.con
698 -erase $(DOCDIR)\html\wx\*.ref
699 -erase $(DOCDIR)\latex\wx\*.con
700 -erase $(DOCDIR)\latex\wx\*.ref
703 $(DOCDIR)\html\wx\wx.chm : $(DOCDIR)\html\wx\wx.htm $(DOCDIR)\html\wx\wx.hhp
709 $(DOCDIR)\html\porting\port.htm: $(DOCDIR)\latex\porting\porting.tex
710 cd $(DOCDIR)\latex\porting
711 -mkdir $(DOCDIR)\html\porting
712 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\porting\porting.tex $(DOCDIR)\html\porting\port.htm -twice -html
713 -erase $(DOCDIR)\html\porting\*.con
714 -erase $(DOCDIR)\html\porting\*.ref
715 -erase $(DOCDIR)\latex\porting\*.con
716 -erase $(DOCDIR)\latex\porting\*.ref
719 $(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
720 cd $(DOCDIR)\latex\proplist
721 -mkdir $(DOCDIR)\html\proplist
722 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\proplist\prop.tex $(DOCDIR)\html\proplist\prop.htm -twice -html
723 -erase $(DOCDIR)\html\proplist\*.con
724 -erase $(DOCDIR)\html\proplist\*.ref
725 -erase $(DOCDIR)\latex\proplist\*.con
726 -erase $(DOCDIR)\latex\proplist\*.ref
729 $(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
730 cd $(WXDIR)\docs\latex\wx
739 $(WXDIR)\docs\latex\porting\porting.dvi: $(DOCDIR)/latex/porting/porting.tex
740 cd $(WXDIR)\docs\latex\porting
749 $(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
750 cd $(WXDIR)\docs\latex\wx
751 -dvips32 -o wx.ps manual
752 move wx.ps $(WXDIR)\docs\ps\wx.ps
755 $(WXDIR)\docs\ps\porting.ps: $(WXDIR)\docs\latex\porting\porting.dvi
756 cd $(WXDIR)\docs\latex\porting
757 -dvips32 -o porting.ps porting
758 move porting.ps $(WXDIR)\docs\ps\porting.ps
761 $(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
762 cd $(WXDIR)\docs\latex\wx
771 $(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
772 cd $(WXDIR)\docs\latex\wx
773 -dvips32 -o referenc.ps referenc
774 move referenc.ps $(WXDIR)\docs\ps\referenc.ps
777 # In order to force document reprocessing
779 -touch $(WXDIR)\docs\latex\wx\manual.tex
781 updatedocs: touchmanual alldocs
783 # Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
784 # Office StartUp folder, and PDFMaker should be installed.
785 updatepdf: # touchmanual pdfrtf
786 start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\wx.rtf /mGeneratePDF"
790 # Can't use this or we'll have to distribute all tmake files with wxWindows
791 # makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
794 cd $(WXWIN)\distrib\msw\tmake
795 tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
796 copy makefile.$(MFTYPE) $(WXWIN)\src\msw