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