]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tmake/b32.t
Added missing CreateManifest() to initialisation
[wxWidgets.git] / distrib / msw / tmake / b32.t
1 #!#############################################################################
2 #! File: b32.t
3 #! Purpose: tmake template file from which makefile.b32 is generated by running
4 #! tmake -t b32 wxwin.pro
5 #! Author: Vadim Zeitlin
6 #! Created: 14.07.99
7 #! Version: $Id$
8 #!#############################################################################
9
10 #${
11 #! include the code which parses filelist.txt file and initializes
12 #! %wxCommon, %wxGeneric and %wxMSW hashes.
13 IncludeTemplate("filelist.t");
14
15 #! now transform these hashes into $project tags
16 foreach $file (sort keys %wxGeneric) {
17 my $tag = "";
18 next if $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/;
19
20 $file =~ s/cp?p?$/obj/;
21 $project{"WXGENERICOBJS"} .= "\$(MSWDIR)\\" . $file . " "
22 }
23
24 foreach $file (sort keys %wxHTML) {
25 next if $wxHTML{$file} =~ /\b16\b/;
26
27 $file =~ s/cp?p?$/obj/;
28 $project{"WXHTMLOBJS"} .= "\$(MSWDIR)\\" . $file . " "
29 }
30
31 foreach $file (sort keys %wxCommon) {
32 next if $wxCommon{$file} =~ /\b(16|U)\b/;
33
34 $isCFile = $file =~ /\.c$/;
35 $file =~ s/cp?p?$/obj/;
36 $obj = "\$(MSWDIR)\\" . $file . " ";
37 $project{"WXCOMMONOBJS"} .= $obj;
38 $project{"WXCOBJS"} .= $obj if $isCFile;
39 }
40
41 foreach $file (sort keys %wxMSW) {
42 next if $wxMSW{$file} =~ /\b16\b/;
43
44 #! if ( $file =~ /^automtn/ ) {
45 #! #! comment in old makefile.b32 seems to imply that this file can not
46 #! #! be compiled with Borland (leads to crash in oleauto sample)
47 #! No longer true, at least for BC++ 5.2
48 #! next;
49 #! }
50
51 $isCFile = $file =~ /\.c$/;
52
53 my $isOleObj = $wxMSW{$file} =~ /\bO\b/;
54 $file =~ s/cp?p?$/obj/;
55 my $obj = "\$(MSWDIR)\\" . $file . " ";
56
57 $project{"WXMSWOBJS"} .= $obj;
58 if ( $isOleObj ) {
59 #! remember that this file is in ole subdir
60 $project{"WXOLEOBJS"} .= $obj;
61 }
62 $project{"WXCOBJS"} .= $obj if $isCFile;
63 }
64 #$}
65
66 # This file was automatically generated by tmake
67 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE B32.T!
68
69 #
70 # File: makefile.b32
71 # Author: Julian Smart
72 # Created: 1998
73 # Updated:
74 # Copyright:
75 #
76 # "%W% %G%"
77 #
78 # Makefile : Builds wxWindows library wx.lib for MS Windows,
79 # and Borland C++ (32-bit).
80
81 !if "$(BCCDIR)" == ""
82 !error You must define the BCCDIR variable in autoexec.bat, e.g. BCCDIR=d:\bc4
83 !endif
84
85 !if "$(WXWIN)" == ""
86 !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
87 !endif
88
89 WXDIR = $(WXWIN)
90 THISDIR = $(WXDIR)\src\msw
91
92 # Set all these to 1 if you want to build a dynamic library
93 !if "$(DLL)" == "1"
94 WXMAKINGDLL=1
95 WXBUILDDLL=1
96 !endif
97
98 !include $(WXDIR)\src\makeb32.env
99
100 # Please set these according to the settings in wx_setup.h, so we can include
101 # the appropriate libraries in wx.lib
102 USE_CTL3D=0
103
104 PERIPH_LIBS=
105 PERIPH_TARGET=
106 PERIPH_CLEAN_TARGET=
107
108 !if "$(USE_CTL3D)" == "1"
109 #Use WIN32S/WIN95 32 bit version ctl3d32.dll under win95 (Andre Beltman)
110 PERIPH_LIBS=$(WXDIR)\lib\ctl3d32.lib $(PERIPH_LIBS)
111 PERIPH_TARGET=ctl3d $(PERIPH_TARGET)
112 PERIPH_CLEAN_TARGET=clean_ctl3d $(PERIPH_CLEAN_TARGET)
113 !endif
114
115 #PERIPH_LIBS=$(WXDIR)\lib\zlib.lib $(WXDIR)\lib\winpng.lib $(WXDIR)\lib\jpeg.lib $(WXDIR)\lib\tiff.lib $(PERIPH_LIBS)
116 PERIPH_LIBS=
117 PERIPH_TARGET=zlib png jpeg tiff regex $(PERIPH_TARGET)
118 PERIPH_CLEAN_TARGET=clean_zlib clean_png clean_jpeg clean_tiff clean_regex $(PERIPH_CLEAN_TARGET)
119
120 !if "$(DLL)" == "0"
121 DUMMY=dummy
122 !else
123 DUMMY=dummydll
124 LIBS= cw32mti import32 ole2w32 odbc32 zlib winpng jpeg tiff regex
125 !endif
126
127 LIBTARGET=$(WXLIB)
128
129 GENDIR=..\generic
130 COMMDIR=..\common
131 HTMLDIR=..\html
132 OLEDIR=.\ole
133 MSWDIR=.
134
135 DOCDIR = $(WXDIR)\docs
136
137 GENERICOBJS= #$ ExpandList("WXGENERICOBJS");
138
139 # Not needed:
140 # $(MSWDIR)\colrdlgg.obj \
141 # $(MSWDIR)\fontdlgg.obj \
142 # $(MSWDIR)\msgdlgg.obj \
143 # $(MSWDIR)\printps.obj \
144 # $(MSWDIR)\prntdlgg.obj \
145 # $(MSWDIR)\listctrl.obj \
146 # $(MSWDIR)\notebook.obj \
147 # $(MSWDIR)\treectrl.obj
148
149 COMMONOBJS = \
150 $(MSWDIR)\y_tab.obj \
151 #$ ExpandList("WXCOMMONOBJS");
152
153 MSWOBJS = #$ ExpandList("WXMSWOBJS");
154
155 HTMLOBJS = #$ ExpandList("WXHTMLOBJS");
156
157 OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS) $(HTMLOBJS)
158 ARCHINCDIR=$(WXDIR)\lib\msw
159 ARCHSETUPH=$(ARCHINCDIR)\wx\setup.h
160
161 default: wx
162
163 wx: $(ARCHINCDIR)\wx makesetuph makearchsetuph $(CFG) $(DUMMY).obj $(OBJECTS) $(PERIPH_TARGET) $(LIBTARGET)
164
165 all: wx
166
167 # Copy the in-CVS setup0.h to setup.h if necessary
168 makesetuph:
169 cd $(WXDIR)\include\wx\msw
170 if not exist setup.h copy setup0.h setup.h
171 cd $(WXDIR)\src\msw
172
173 # Copy include\wx\msw\setup.h to the architecture-specific location
174 makearchsetuph:
175 copy $(WXDIR)\include\wx\msw\setup.h $(ARCHSETUPH)
176 cd $(WXDIR)\src\msw
177
178 $(ARCHINCDIR)\wx:
179 -mkdir $(ARCHINCDIR)
180 -mkdir $(ARCHINCDIR)\wx
181
182 !if "$(DLL)" == "0"
183
184 $(LIBTARGET): $(DUMMY).obj $(OBJECTS)
185 -erase $(LIBTARGET)
186 tlib "$(LIBTARGET)" /P1024 @&&!
187 +$(OBJECTS:.obj =.obj +) +$(PERIPH_LIBS:.lib =.lib +)
188 !
189
190 !else
191
192 $(LIBTARGET): $(DUMMY).obj $(OBJECTS)
193 -erase $(LIBTARGET)
194 -erase $(WXLIBDIR)\wx.dll
195 $(LINK) $(LINK_FLAGS) /L$(WXLIBDIR);$(BCCDIR)\lib;$(BCCDIR)\lib\psdk /v @&&!
196 c0d32.obj $(OBJECTS)
197 $(WXLIBDIR)\wx
198 nul
199 $(PERIPH_LIBS) $(LIBS)
200 wxb32
201 !
202 -erase $(WXLIBDIR)\version.res
203 brc32 -r -i$(WXDIR)\include\ $(MSWDIR)\version.rc
204 implib -c $(LIBTARGET) $(WXLIBDIR)\wx.dll
205
206 !endif
207
208 dummy.obj: dummy.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h
209 dummydll.obj: dummydll.$(SRCSUFF) $(LOCALHEADERS) $(BASEHEADERS) $(WXDIR)\include\wx\wx.h version.res
210
211 $(MSWDIR)\y_tab.obj: $(COMMDIR)\y_tab.c $(COMMDIR)\lex_yy.c
212
213 # cl @<<
214 # $(CPPFLAGS2) /c $*.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
215 # <<
216
217 $(COMMDIR)\y_tab.c: $(COMMDIR)\dosyacc.c
218 copy $(COMMDIR)\dosyacc.c $(COMMDIR)\y_tab.c
219
220 $(COMMDIR)\lex_yy.c: $(COMMDIR)\doslex.c
221 copy $(COMMDIR)\doslex.c $(COMMDIR)\lex_yy.c
222
223 # $(OBJECTS): $(WXDIR)\include\wx\setup.h
224
225 #${
226 $_ = $project{"WXMSWOBJS"};
227 my @objs = split;
228 foreach (@objs) {
229 $text .= $_ . ": ";
230 if ( $project{"WXOLEOBJS"} =~ /\Q$_/ ) { s/MSWDIR/OLEDIR/; }
231 $suffix = $project{"WXCOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
232 s/obj$/$suffix/;
233 $text .= $_ . "\n\n";
234 }
235 #$}
236
237 ########################################################
238 # Common objects (always compiled)
239
240 #${
241 $_ = $project{"WXCOMMONOBJS"};
242 my @objs = split;
243 foreach (@objs) {
244 $text .= $_ . ": ";
245 $suffix = $project{"WXCOBJS"} =~ /\Q$_/ ? "c" : '$(SRCSUFF)';
246 s/MSWDIR/COMMDIR/;
247 s/obj$/$suffix/;
248 $text .= $_ . "\n\n";
249 }
250 #$}
251
252 ########################################################
253 # Generic objects (not always compiled, depending on
254 # whether platforms have native implementations)
255
256 #${
257 $_ = $project{"WXGENERICOBJS"};
258 my @objs = split;
259 foreach (@objs) {
260 $text .= $_ . ": ";
261 s/MSWDIR/GENDIR/;
262 s/obj$/\$(SRCSUFF)/;
263 $text .= $_ . "\n\n";
264 }
265 #$}
266
267 ########################################################
268 # HTML objects (always compiled)
269
270 #${
271 $_ = $project{"WXHTMLOBJS"};
272 my @objs = split;
273 foreach (@objs) {
274 $text .= $_ . ": ";
275 s/MSWDIR/HTMLDIR/;
276 s/obj$/\$(SRCSUFF)/;
277 $text .= $_ . "\n\n";
278 }
279 #$}
280
281
282 all_utils:
283 cd $(WXDIR)\utils
284 make -f makefile.b32
285 cd $(WXDIR)\src\msw
286
287 all_samples:
288 cd $(WXDIR)\samples
289 make -f makefile.b32
290 cd $(WXDIR)\src\msw
291
292 all_execs:
293 cd $(WXDIR)\utils
294 make -f makefile.b32 all_execs
295 cd $(WXDIR)\src\msw
296
297 png: $(CFG)
298 cd $(WXDIR)\src\png
299 make -f makefile.b32
300 cd $(WXDIR)\src\msw
301
302 clean_png:
303 cd $(WXDIR)\src\png
304 make -f makefile.b32 clean
305 cd $(WXDIR)\src\msw
306
307 zlib: $(CFG)
308 cd $(WXDIR)\src\zlib
309 make -f makefile.b32 lib
310 cd $(WXDIR)\src\msw
311
312 clean_zlib:
313 cd $(WXDIR)\src\zlib
314 make -f makefile.b32 clean
315 cd $(WXDIR)\src\msw
316
317 jpeg: $(CFG)
318 cd $(WXDIR)\src\jpeg
319 make -f makefile.b32
320 cd $(WXDIR)\src\msw
321
322 clean_jpeg:
323 cd $(WXDIR)\src\jpeg
324 make -f makefile.b32 clean
325 cd $(WXDIR)\src\msw
326
327 regex: $(CFG)
328 cd $(WXDIR)\src\regex
329 make -f makefile.b32 lib
330 cd $(WXDIR)\src\msw
331
332 clean_regex:
333 cd $(WXDIR)\src\regex
334 make -f makefile.b32 clean
335 cd $(WXDIR)\src\msw
336
337 tiff: $(CFG)
338 cd $(WXDIR)\src\tiff
339 make -f makefile.b32 lib
340 cd $(WXDIR)\src\msw
341
342 clean_tiff:
343 cd $(WXDIR)\src\tiff
344 make -f makefile.b32 clean
345 cd $(WXDIR)\src\msw
346
347 $(CFG): makefile.b32
348 copy &&!
349 -Hc
350 -H=$(WXDIR)\src\msw\wx32.csm
351 -3
352 -d
353 -a1 # byte alignment
354 -R-
355 -X
356 -w-par
357 -w-aus
358 -w-hid # virtual function A hides virtual function B
359 -tWM
360
361 -I$(ARCHINCDIR);-I$(WXINC);$(BCCDIR)\include;$(WXDIR)/src/generic;$(WXDIR)/src/png;$(WXDIR)/src/jpeg;$(WXDIR)/src/zlib;$(WXDIR)/src/tiff
362 -I$(WXDIR)\include\wx\msw\gnuwin32
363
364 -L$(BCCDIR)\lib;$(BCCDIR)\lib\psdk
365 -D__WXWIN__
366 -D__WXMSW__
367 -D__WINDOWS__
368 -DWIN32
369 $(OPT)
370 $(DEBUG_FLAGS)
371 $(WIN95FLAG)
372 ! $(CFG)
373
374 clean: $(PERIPH_CLEAN_TARGET)
375 -erase $(LIBTARGET)
376 -erase $(WXLIBDIR)\wx.dll
377 -erase $(WXLIBDIR)\wx.tds
378 -erase $(WXLIBDIR)\wx.il?
379 -erase *.obj
380 -erase *.pch
381 -erase *.csm
382 -erase *.cfg
383 -erase "wx32.#??"
384 -erase ..\common\y_tab.c
385 -erase ..\common\lex_yy.c
386
387 cleanall: clean
388
389
390 # Making documents
391 docs: allhlp allhtml allpdfrtf
392 alldocs: docs
393 hlp: wxhlp portinghlp
394 wxhlp: $(DOCDIR)/winhelp/wx.hlp
395 prophlp: $(DOCDIR)/winhelp/prop.hlp
396 refhlp: $(DOCDIR)/winhelp/techref.hlp
397 rtf: $(DOCDIR)/winhelp/wx.rtf
398 proprtf: $(DOCDIR)/winhelp/prop.rtf
399 pdfrtf: $(DOCDIR)/pdf/wx.rtf
400 proppdfrtf: $(DOCDIR)/pdf/prop.rtf
401 refpdfrtf: $(DOCDIR)/pdf/techref.rtf
402 html: wxhtml portinghtml
403 wxhtml: $(DOCDIR)\html\wx\wx.htm
404 htmlhelp: $(DOCDIR)\html\wx\wx.chm
405 prophtml: $(DOCDIR)\html\proplist\prop.htm
406 ps: wxps referencps
407 wxps: $(WXDIR)\docs\ps\wx.ps
408 propps: $(WXDIR)\docs\ps\prop.ps
409 referencps: $(WXDIR)\docs\ps\referenc.ps
410
411 portinghtml: $(DOCDIR)\html\porting\port.htm
412 portingrtf: $(DOCDIR)/winhelp/porting.rtf
413 portinghlp: $(DOCDIR)/winhelp/porting.hlp
414 portingpdfrtf: $(DOCDIR)/pdf/porting.rtf
415 portingps: $(WXDIR)\docs\ps\porting.ps
416
417 allhlp: wxhlp portinghlp prophlp
418 cd $(WXDIR)\utils\dialoged\src
419 make -f makefile.b32 hlp
420 cd $(THISDIR)
421
422 # cd $(WXDIR)\utils\wxhelp\src
423 # make -f makefile.b32 hlp
424 # cd $(WXDIR)\utils\tex2rtf\src
425 # make -f makefile.b32 hlp
426 # cd $(WXDIR)\utils\wxgraph\src
427 # make -f makefile.b32 hlp
428 # cd $(WXDIR)\utils\wxchart\src
429 # make -f makefile.b32 hlp
430 # cd $(WXDIR)\utils\wxtree\src
431 # make -f makefile.b32 hlp
432 # cd $(WXDIR)\utils\wxbuild\src
433 # make -f makefile.b32 hlp
434 # cd $(WXDIR)\utils\wxgrid\src
435 # make -f makefile.b32 hlp
436
437 allhtml: wxhtml portinghtml prophtml
438 cd $(WXDIR)\utils\dialoged\src
439 make -f makefile.b32 html
440 cd $(THISDIR)
441
442 # make -f makefile.b32 html
443 # cd $(WXDIR)\utils\dialoged\src
444 # make -f makefile.b32 html
445 # cd $(WXDIR)\utils\hytext\src
446 # make -f makefile.b32 html
447 # cd $(WXDIR)\utils\wxhelp\src
448 # make -f makefile.b32 html
449 # cd $(WXDIR)\utils\tex2rtf\src
450 # make -f makefile.b32 html
451 # cd $(WXDIR)\utils\wxgraph\src
452 # make -f makefile.b32 html
453 # cd $(WXDIR)\utils\wxchart\src
454 # make -f makefile.b32 html
455 # cd $(WXDIR)\utils\wxtree\src
456 # make -f makefile.b32 html
457
458 allps: wxps referencps portingps propps
459 cd $(WXDIR)\utils\dialoged\src
460 make -f makefile.b32 ps
461 cd $(THISDIR)
462
463 allpdfrtf: pdfrtf portingpdfrtf proppdfrtf
464 cd $(WXDIR)\utils\dialoged\src
465 make -f makefile.b32 pdfrtf
466 cd $(THISDIR)
467
468 # cd $(WXDIR)\utils\wxhelp\src
469 # make -f makefile.b32 ps
470 # cd $(WXDIR)\utils\tex2rtf\src
471 # make -f makefile.b32 ps
472 # cd $(WXDIR)\utils\wxgraph\src
473 # make -f makefile.b32 ps
474 # cd $(WXDIR)\utils\wxchart\src
475 # make -f makefile.b32 ps
476 # cd $(WXDIR)\utils\wxtree\src
477 # make -f makefile.b32 ps
478 # cd $(THISDIR)
479
480 $(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
481 cd $(DOCDIR)/latex/wx
482 -erase wx.ph
483 hc wx
484 move wx.hlp $(DOCDIR)\winhelp\wx.hlp
485 move wx.cnt $(DOCDIR)\winhelp\wx.cnt
486 cd $(THISDIR)
487
488 $(DOCDIR)/winhelp/porting.hlp: $(DOCDIR)/latex/porting/porting.rtf $(DOCDIR)/latex/porting/porting.hpj
489 cd $(DOCDIR)/latex/porting
490 -erase porting.ph
491 hc porting
492 move porting.hlp $(DOCDIR)\winhelp\porting.hlp
493 move porting.cnt $(DOCDIR)\winhelp\porting.cnt
494 cd $(THISDIR)
495
496 $(DOCDIR)/winhelp/prop.hlp: $(DOCDIR)/latex/proplist/prop.rtf $(DOCDIR)/latex/proplist/prop.hpj
497 cd $(DOCDIR)/latex/proplist
498 -erase prop.ph
499 hc prop
500 move prop.hlp $(DOCDIR)\winhelp\prop.hlp
501 move prop.cnt $(DOCDIR)\winhelp\prop.cnt
502 cd $(THISDIR)
503
504 $(DOCDIR)/winhelp/techref.hlp: $(DOCDIR)/latex/techref/techref.rtf $(DOCDIR)/latex/techref/techref.hpj
505 cd $(DOCDIR)/latex/techref
506 -erase techref.ph
507 hc techref
508 move techref.hlp $(DOCDIR)\winhelp\techref.hlp
509 move techref.cnt $(DOCDIR)\winhelp\techref.cnt
510 cd $(THISDIR)
511
512 $(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
513 cd $(DOCDIR)\latex\wx
514 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
515 cd $(THISDIR)
516
517 $(DOCDIR)/latex/porting/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
518 cd $(DOCDIR)\latex\porting
519 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/latex/porting/porting.rtf -twice -winhelp
520 cd $(THISDIR)
521
522 $(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
523 cd $(DOCDIR)\latex\proplist
524 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/prop.rtf -twice -winhelp
525 cd $(THISDIR)
526
527 $(DOCDIR)/latex/techref/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
528 cd $(DOCDIR)\latex\techref
529 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/latex/techref/techref.rtf -twice -winhelp
530 cd $(THISDIR)
531
532 $(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
533 cd $(DOCDIR)\latex\wx
534 -copy *.wmf $(DOCDIR)\pdf
535 -copy *.bmp $(DOCDIR)\pdf
536 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
537 cd $(THISDIR)
538
539 $(DOCDIR)/pdf/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
540 cd $(DOCDIR)\latex\porting
541 -copy *.wmf $(DOCDIR)\pdf
542 -copy *.bmp $(DOCDIR)\pdf
543 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/pdf/porting.rtf -twice -rtf
544 cd $(THISDIR)
545
546 $(DOCDIR)/pdf/prop.rtf: $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/body.tex $(DOCDIR)/latex/proplist/classes.tex $(DOCDIR)/latex/proplist/changes.tex
547 cd $(DOCDIR)\latex\proplist
548 -copy *.wmf $(DOCDIR)\pdf
549 -copy *.bmp $(DOCDIR)\pdf
550 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/pdf/prop.rtf -twice -rtf
551 cd $(THISDIR)
552
553 $(DOCDIR)/pdf/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
554 cd $(DOCDIR)\latex\techref
555 -copy *.wmf $(DOCDIR)\pdf
556 -copy *.bmp $(DOCDIR)\pdf
557 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/pdf/techref.rtf -twice -rtf
558 cd $(THISDIR)
559
560 $(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
561 cd $(DOCDIR)\latex\wx
562 -mkdir $(DOCDIR)\html\wx
563 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
564 -erase $(DOCDIR)\html\wx\*.con
565 -erase $(DOCDIR)\html\wx\*.ref
566 -erase $(DOCDIR)\latex\wx\*.con
567 -erase $(DOCDIR)\latex\wx\*.ref
568 cd $(THISDIR)
569
570 $(DOCDIR)\html\wx\wx.chm : $(DOCDIR)\html\wx\wx.htm $(DOCDIR)\html\wx\wx.hhp
571 cd $(DOCDIR)\html\wx
572 -hhc wx.hhp
573 cd $(THISDIR)
574
575
576 $(DOCDIR)\html\porting\port.htm: $(DOCDIR)\latex\porting\porting.tex
577 cd $(DOCDIR)\latex\porting
578 -mkdir $(DOCDIR)\html\porting
579 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\porting\porting.tex $(DOCDIR)\html\porting\port.htm -twice -html
580 -erase $(DOCDIR)\html\porting\*.con
581 -erase $(DOCDIR)\html\porting\*.ref
582 -erase $(DOCDIR)\latex\porting\*.con
583 -erase $(DOCDIR)\latex\porting\*.ref
584 cd $(THISDIR)
585
586 $(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
587 cd $(DOCDIR)\latex\proplist
588 -mkdir $(DOCDIR)\html\proplist
589 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\proplist\prop.tex $(DOCDIR)\html\proplist\prop.htm -twice -html
590 -erase $(DOCDIR)\html\proplist\*.con
591 -erase $(DOCDIR)\html\proplist\*.ref
592 -erase $(DOCDIR)\latex\proplist\*.con
593 -erase $(DOCDIR)\latex\proplist\*.ref
594 cd $(THISDIR)
595
596 $(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
597 cd $(WXDIR)\docs\latex\wx
598 -latex manual
599 -latex manual
600 -makeindx manual
601 -bibtex manual
602 -latex manual
603 -latex manual
604 cd $(THISDIR)
605
606 $(WXDIR)\docs\latex\porting\porting.dvi: $(DOCDIR)/latex/porting/porting.tex
607 cd $(WXDIR)\docs\latex\porting
608 -latex porting
609 -latex porting
610 -makeindx porting
611 -bibtex porting
612 -latex porting
613 -latex porting
614 cd $(THISDIR)
615
616 $(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
617 cd $(WXDIR)\docs\latex\wx
618 -dvips32 -o wx.ps manual
619 move wx.ps $(WXDIR)\docs\ps\wx.ps
620 cd $(THISDIR)
621
622 $(WXDIR)\docs\ps\porting.ps: $(WXDIR)\docs\latex\porting\porting.dvi
623 cd $(WXDIR)\docs\latex\porting
624 -dvips32 -o porting.ps porting
625 move porting.ps $(WXDIR)\docs\ps\porting.ps
626 cd $(THISDIR)
627
628 $(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
629 cd $(WXDIR)\docs\latex\wx
630 -latex referenc
631 -latex referenc
632 -makeindx referenc
633 -bibtex referenc
634 -latex referenc
635 -latex referenc
636 cd $(THISDIR)
637
638 $(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
639 cd $(WXDIR)\docs\latex\wx
640 -dvips32 -o referenc.ps referenc
641 move referenc.ps $(WXDIR)\docs\ps\referenc.ps
642 cd $(THISDIR)
643
644 # In order to force document reprocessing
645 touchmanual:
646 -touch $(WXDIR)\docs\latex\wx\manual.tex
647
648 updatedocs: touchmanual alldocs
649
650 # Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
651 # Office StartUp folder, and PDFMaker should be installed.
652 updatepdf: # touchmanual pdfrtf
653 start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\wx.rtf /mGeneratePDF"
654
655
656 MFTYPE=b32
657 # Can't use this or we'll have to distribute all tmake files with wxWindows
658 # makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
659
660 self:
661 cd $(WXWIN)\distrib\msw\tmake
662 tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
663 copy makefile.$(MFTYPE) $(WXWIN)\src\msw
664