]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tmake/vc.t
Added wxPopupWindow to GTK port, wxComboBox had to
[wxWidgets.git] / distrib / msw / tmake / vc.t
1 #!#############################################################################
2 #! File: vc.t
3 #! Purpose: tmake template file from which makefile.vc is generated by running
4 #! tmake -t vc wxwin.pro -o makefile.vc
5 #! Author: Vadim Zeitlin
6 #! Created: 14.07.99
7 #! Version: $Id$
8 #!#############################################################################
9 #${
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric and %wxMSW hashes.
12 IncludeTemplate("filelist.t");
13
14 #! now transform these hashes into $project tags
15 foreach $file (sort keys %wxGeneric) {
16 next if $wxGeneric{$file} =~ /\bU\b/;
17
18 my $tag = "";
19 if ( $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/ ) {
20 $tag = "WXNONESSENTIALOBJS";
21 }
22 else {
23 $tag = "WXGENERICOBJS";
24 }
25
26 $file =~ s/cp?p?$/obj/;
27 $project{$tag} .= "..\\generic\\\$D\\" . $file . " "
28 }
29
30 foreach $file (sort keys %wxCommon) {
31 next if $wxCommon{$file} =~ /\b16\b/;
32
33 $file =~ s/cp?p?$/obj/;
34 $project{"WXCOMMONOBJS"} .= "..\\common\\\$D\\" . $file . " "
35 }
36
37 foreach $file (sort keys %wxMSW) {
38 next if $wxMSW{$file} =~ /\b16\b/;
39
40 #! OLE files live in a subdir
41 $project{"WXMSWOBJS"} .= '..\\msw\\';
42 $project{"WXMSWOBJS"} .= 'ole\\' if $wxMSW{$file} =~ /\bO\b/;
43 $file =~ s/cp?p?$/obj/;
44 $project{"WXMSWOBJS"} .= '$D\\' . $file . " ";
45 }
46
47 foreach $file (sort keys %wxHTML) {
48 next if $wxHTML{$file} =~ /\b16\b/;
49
50 $file =~ s/cp?p?$/obj/;
51 $project{"WXHTMLOBJS"} .= "..\\html\\\$D\\" . $file . " "
52 }
53
54 #$}
55 # This file was automatically generated by tmake at #$ Now()
56 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE VC.T!
57
58 # File: makefile.vc
59 # Author: Julian Smart
60 # Created: 1997
61 # Updated:
62 # Copyright: (c) 1997, Julian Smart
63 #
64 # "%W% %G%"
65 #
66 # Makefile : Builds wxWindows library wx.lib for VC++ (32-bit)
67 # Arguments:
68 #
69 # FINAL=1 argument to nmake to build version with no debugging info.
70 # dll builds a library (wxdll.lib) suitable for creating DLLs
71 #
72 !include <..\makevc.env>
73
74 THISDIR=$(WXWIN)\src\msw
75
76 !if "$(WXMAKINGDLL)" == "1"
77 LIBTARGET=$(WXDIR)\lib\$(WXLIBNAME).dll
78 DUMMYOBJ=$D\dummydll.obj
79 !else
80 LIBTARGET=$(WXLIB)
81 DUMMYOBJ=$D\dummy.obj
82 !endif
83
84 # This one overrides the others, to be consistent with the settings in setup.h
85 MINIMAL_WXWINDOWS_SETUP=0
86
87 PERIPH_LIBS=
88 PERIPH_TARGET=
89 PERIPH_CLEAN_TARGET=
90
91 # Set to 0 if not using GLCanvas (only affects DLL build)
92 USE_GLCANVAS=1
93
94 # These are absolute paths, so that the compiler
95 # generates correct __FILE__ symbols for debugging.
96 # Otherwise you don't be able to double-click on a memory
97 # error to load that file.
98 GENDIR=$(WXDIR)\src\generic
99 COMMDIR=$(WXDIR)\src\common
100 OLEDIR=ole
101 MSWDIR=$(WXDIR)\src\msw
102 DOCDIR = $(WXDIR)\docs
103 HTMLDIR = $(WXDIR)\src\html
104 JPEGDIR = $(WXDIR)\src\jpeg
105 TIFFDIR = $(WXDIR)\src\tiff
106
107 {..\generic}.cpp{..\generic\$D}.obj:
108 cl @<<
109 $(CPPFLAGS) /Fo$@ /c /Tp $<
110 <<
111
112 {..\common}.cpp{..\common\$D}.obj:
113 cl @<<
114 $(CPPFLAGS) /Fo$@ /c /Tp $<
115 <<
116
117 {..\common}.c{..\common\$D}.obj:
118 cl @<<
119 $(CPPFLAGS2) /Fo$@ /c /Tc $<
120 <<
121
122 {..\msw}.cpp{..\msw\$D}.obj:
123 cl @<<
124 $(CPPFLAGS) /Fo$@ /c /Tp $<
125 <<
126
127 {..\msw}.c{..\msw\$D}.obj:
128 cl @<<
129 $(CPPFLAGS2) /Fo$@ /c /Tc $<
130 <<
131
132 {..\msw\ole}.cpp{..\msw\ole\$D}.obj:
133 cl @<<
134 $(CPPFLAGS) /Fo$@ /c /Tp $<
135 <<
136
137 {..\html}.cpp{..\html\$D}.obj:
138 cl @<<
139 $(CPPFLAGS) /Fo$@ /c /Tp $<
140 <<
141
142 GENERICOBJS= #$ ExpandList("WXGENERICOBJS");
143
144 # These are generic things that don't need to be compiled on MSW,
145 # but sometimes it's useful to do so for testing purposes.
146 NONESSENTIALOBJS= #$ ExpandList("WXNONESSENTIALOBJS");
147
148 COMMONOBJS = \
149 ..\common\$D\y_tab.obj \
150 #$ ExpandList("WXCOMMONOBJS");
151
152 MSWOBJS = #$ ExpandList("WXMSWOBJS");
153
154 HTMLOBJS = #$ ExpandList("WXHTMLOBJS");
155
156
157 # Add $(NONESSENTIALOBJS) if wanting generic dialogs, PostScript etc.
158 # Add $(HTMLOBJS) if wanting wxHTML classes
159 OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS) $(HTMLOBJS)
160
161 # Normal, static library
162 all: setuph dirs $(DUMMYOBJ) $(OBJECTS) $(PERIPH_TARGET) png zlib jpeg tiff $(LIBTARGET)
163
164 setuph:
165 cd $(WXDIR)\include\wx\msw
166 if not exist setup.h copy setup0.h setup.h
167 cd $(WXDIR)\src\msw
168
169 dirs: $(MSWDIR)\$D $(COMMDIR)\$D $(GENDIR)\$D $(OLEDIR)\$D $(HTMLDIR)\$D $(JPEGDIR)\$D $(TIFFDIR)\$D
170
171 $D:
172 mkdir $D
173
174 $(COMMDIR)\$D:
175 mkdir $(COMMDIR)\$D
176
177 $(MSWDIR)\$D:
178 mkdir $(MSWDIR)\$D
179
180 $(GENDIR)\$D:
181 mkdir $(GENDIR)\$D
182
183 $(OLEDIR)\$D:
184 mkdir $(OLEDIR)\$D
185
186 $(HTMLDIR)\$D:
187 mkdir $(HTMLDIR)\$D
188
189 $(JPEGDIR)\$D:
190 mkdir $(JPEGDIR)\$D
191
192 $(TIFFDIR)\$D:
193 mkdir $(TIFFDIR)\$D
194
195 # wxWindows library as DLL
196 dll:
197 nmake -f makefile.vc all FINAL=$(FINAL) DLL=1 WXMAKINGDLL=1 NEW_WXLIBNAME=$(NEW_WXLIBNAME)
198
199 cleandll:
200 nmake -f makefile.vc clean FINAL=$(FINAL) DLL=1 WXMAKINGDLL=1 NEW_WXLIBNAME=$(NEW_WXLIBNAME)
201
202 # wxWindows + app as DLL. Only affects main.cpp.
203 dllapp:
204 nmake -f makefile.vc all FINAL=$(FINAL) DLL=1
205
206 # wxWindows + app as DLL, for Netscape plugin - remove DllMain.
207 dllnp:
208 nmake -f makefile.vc all NOMAIN=1 FINAL=$(FINAL) DLL=1
209
210 # Use this to make dummy.obj and generate a PCH.
211 # You might use the dll target, then the pch target, in order to
212 # generate a DLL, then a PCH/dummy.obj for compiling your applications with.
213 #
214 # Explanation: Normally, when compiling a static version of wx.lib, your dummy.obj/PCH
215 # are associated with wx.lib. When using a DLL version of wxWindows, however,
216 # the DLL is compiled without a PCH, so you only need it for compiling the app.
217 # In fact headers are compiled differently depending on whether a DLL is being made
218 # or an app is calling the DLL exported functionality (WXDLLEXPORT is different
219 # in each case) so you couldn't use the same PCH.
220 pch:
221 nmake -f makefile.vc pch1 WXUSINGDLL=1 FINAL=$(FINAL) NEW_WXLIBNAME=$(NEW_WXLIBNAME)
222
223 pch1: dirs $(DUMMYOBJ)
224 echo $(DUMMYOBJ)
225
226 !if "$(WXMAKINGDLL)" != "1"
227
228 ### Static library
229
230 $(WXDIR)\lib\$(WXLIBNAME).lib: $D\dummy.obj $(OBJECTS) $(PERIPH_LIBS)
231 -erase $(LIBTARGET)
232 $(implib) @<<
233 -out:$@
234 -machine:$(CPU)
235 $(OBJECTS) $D\dummy.obj $(PERIPH_LIBS)
236 <<
237
238 !else
239
240 ### Update the import library
241
242 $(WXDIR)\lib\$(WXLIBNAME).lib: $(DUMMYOBJ) $(OBJECTS)
243 $(implib) @<<
244 -machine:$(CPU)
245 -def:wx.def
246 $(DUMMYOBJ) $(OBJECTS)
247 -out:$(WXDIR)\lib\$(WXLIBNAME).lib
248 <<
249
250 !if "$(USE_GLCANVAS)" == "1"
251 GL_LIBS=opengl32.lib glu32.lib
252 # GL_LIBS_DELAY=/delayload:opengl32.dll
253 !endif
254
255 # Update the dynamic link library
256 $(WXDIR)\lib\$(WXLIBNAME).dll: $(DUMMYOBJ) $(OBJECTS)
257 $(link) @<<
258 $(LINKFLAGS)
259 -out:$(WXDIR)\lib\$(WXLIBNAME).dll
260 $(DUMMYOBJ) $(OBJECTS) $(guilibsdll) shell32.lib comctl32.lib ctl3d32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib odbc32.lib advapi32.lib winmm.lib $(GL_LIBS) $(WXDIR)\lib\png$(LIBEXT).lib $(WXDIR)\lib\zlib$(LIBEXT).lib $(WXDIR)\lib\jpeg$(LIBEXT).lib $(WXDIR)\lib\tiff$(LIBEXT).lib
261 delayimp.lib
262 /delayload:ws2_32.dll /delayload:advapi32.dll /delayload:user32.dll /delayload:gdi32.dll
263 /delayload:comdlg32.dll /delayload:shell32.dll /delayload:comctl32.dll /delayload:ole32.dll
264 /delayload:oleaut32.dll /delayload:rpcrt4.dll $(GL_LIBS_DELAY)
265 <<
266
267 !endif
268
269 # /delayload:winmm.dll # Removed because it can cause a crash for some people
270
271 ########################################################
272 # Windows-specific objects
273
274 $D\dummy.obj: dummy.$(SRCSUFF) $(WXDIR)\include\wx\wx.h $(WXDIR)\include\wx\msw\setup.h
275 cl $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummy.obj /c /Tp dummy.cpp
276
277 $D\dummydll.obj: dummydll.$(SRCSUFF) $(WXDIR)\include\wx\wx.h $(WXDIR)\include\wx\msw\setup.h
278 cl @<<
279 $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummydll.obj /c /Tp dummydll.cpp
280 <<
281
282 # Compile certain files with no optimization (some files cause a
283 # compiler crash for buggy versions of VC++, e.g. 4.0).
284 # Don't forget to put FINAL=1 on the command line.
285 noopt:
286 cl @<<
287 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\datetime.obj /c /Tp $(COMMDIR)\datetime.cpp
288 <<
289 cl @<<
290 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\encconv.obj /c /Tp $(COMMDIR)\encconv.cpp
291 <<
292 cl @<<
293 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\fileconf.obj /c /Tp $(COMMDIR)\fileconf.cpp
294 <<
295 cl @<<
296 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\hash.obj /c /Tp $(COMMDIR)\hash.cpp
297 <<
298 cl @<<
299 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\resource.obj /c /Tp $(COMMDIR)\resource.cpp
300 <<
301 cl @<<
302 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\textfile.obj /c /Tp $(COMMDIR)\textfile.cpp
303 <<
304 cl @<<
305 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\choicdgg.obj /c /Tp $(GENDIR)\choicdgg.cpp
306 <<
307 cl @<<
308 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\grid.obj /c /Tp $(GENDIR)\grid.cpp
309 <<
310 cl @<<
311 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\gridsel.obj /c /Tp $(GENDIR)\gridsel.cpp
312 <<
313 cl @<<
314 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\logg.obj /c /Tp $(GENDIR)\logg.cpp
315 <<
316 cl @<<
317 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\proplist.obj /c /Tp $(GENDIR)\proplist.cpp
318 <<
319 cl @<<
320 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\clipbrd.obj /c /Tp $(MSWDIR)\clipbrd.cpp
321 <<
322 cl @<<
323 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\control.obj /c /Tp $(MSWDIR)\control.cpp
324 <<
325 cl @<<
326 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\listbox.obj /c /Tp $(MSWDIR)\listbox.cpp
327 <<
328 cl @<<
329 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\mdi.obj /c /Tp $(MSWDIR)\mdi.cpp
330 <<
331 cl @<<
332 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\menu.obj /c /Tp $(MSWDIR)\menu.cpp
333 <<
334 cl @<<
335 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\notebook.obj /c /Tp $(MSWDIR)\notebook.cpp
336 <<
337 cl @<<
338 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\tbar95.obj /c /Tp $(MSWDIR)\tbar95.cpp
339 <<
340 cl @<<
341 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\treectrl.obj /c /Tp $(MSWDIR)\treectrl.cpp
342 <<
343 cl @<<
344 $(CPPFLAGS2) /Od /Fo$(HTMLDIR)\$D\helpfrm.obj /c /Tp $(HTMLDIR)\helpfrm.cpp
345 <<
346
347 ..\common\$D\y_tab.obj: ..\common\y_tab.c ..\common\lex_yy.c
348 cl @<<
349 $(CPPFLAGS2) /c ..\common\y_tab.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
350 <<
351
352 ..\common\y_tab.c: ..\common\dosyacc.c
353 copy "..\common"\dosyacc.c "..\common"\y_tab.c
354
355 ..\common\lex_yy.c: ..\common\doslex.c
356 copy "..\common"\doslex.c "..\common"\lex_yy.c
357
358 $(OBJECTS): $(WXDIR)/include/wx/setup.h
359
360 ..\common\$D\unzip.obj: ..\common\unzip.c
361 cl @<<
362 $(CPPFLAGS2) /c $(COMMDIR)\unzip.c /Fo$@
363 <<
364
365 # Peripheral components
366
367 png:
368 cd $(WXDIR)\src\png
369 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG)
370 cd $(WXDIR)\src\msw
371
372 clean_png:
373 cd $(WXDIR)\src\png
374 nmake -f makefile.vc clean
375 cd $(WXDIR)\src\msw
376
377 zlib:
378 cd $(WXDIR)\src\zlib
379 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG)
380 cd $(WXDIR)\src\msw
381
382 clean_zlib:
383 cd $(WXDIR)\src\zlib
384 nmake -f makefile.vc clean
385 cd $(WXDIR)\src\msw
386
387 jpeg:
388 cd $(WXDIR)\src\jpeg
389 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG) all
390 cd $(WXDIR)\src\msw
391
392 clean_jpeg:
393 cd $(WXDIR)\src\jpeg
394 nmake -f makefile.vc clean
395 cd $(WXDIR)\src\msw
396
397 tiff:
398 cd $(WXDIR)\src\tiff
399 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG) all
400 cd $(WXDIR)\src\msw
401
402 clean_tiff:
403 cd $(WXDIR)\src\tiff
404 nmake -f makefile.vc clean
405 cd $(WXDIR)\src\msw
406
407 rcparser:
408 cd $(WXDIR)\utils\rcparser\src
409 nmake -f makefile.vc FINAL=$(FINAL)
410 cd $(WXDIR)\src\msw
411
412 cleanall: clean clean_png clean_zlib clean_jpeg clean_tiff
413 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).dll
414 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).lib
415 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).exp
416 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).pdb
417 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).ilk
418
419
420 clean: $(PERIPH_CLEAN_TARGET)
421 -erase $(LIBTARGET)
422 -erase $(WXDIR)\lib\$(WXLIBNAME).pdb
423 -erase *.pdb
424 -erase *.sbr
425 -erase $(WXLIBNAME).pch
426 -erase $(GENDIR)\$D\*.obj
427 -erase $(GENDIR)\$D\*.pdb
428 -erase $(GENDIR)\$D\*.sbr
429 -erase $(COMMDIR)\$D\*.obj
430 -erase $(COMMDIR)\$D\*.pdb
431 -erase $(COMMDIR)\$D\*.sbr
432 -erase $(COMMDIR)\y_tab.c
433 -erase $(COMMDIR)\lex_yy.c
434 -erase $(MSWDIR)\$D\*.obj
435 -erase $(MSWDIR)\$D\*.sbr
436 -erase $(MSWDIR)\$D\*.pdb
437 -erase $(MSWDIR)\$D\*.pch
438 -erase $(OLEDIR)\$D\*.obj
439 -erase $(OLEDIR)\$D\*.sbr
440 -erase $(OLEDIR)\$D\*.pdb
441 -erase $(HTMLDIR)\$D\*.obj
442 -erase $(HTMLDIR)\$D\*.sbr
443 -erase $(HTMLDIR)\$D\*.pdb
444 -erase $(JPEGDIR)\$D\*.obj
445 -erase $(JPEGDIR)\$D\*.sbr
446 -erase $(JPEGDIR)\$D\*.idb
447 -erase $(JPEGDIR)\$D\*.pdb
448 -erase $(TIFFDIR)\$D\*.obj
449 -erase $(TIFFDIR)\$D\*.sbr
450 -erase $(TIFFDIR)\$D\*.pdb
451 -erase $(TIFFDIR)\$D\*.idb
452 -rmdir $(D)
453 -rmdir $(GENDIR)\$(D)
454 -rmdir $(COMMDIR)\$(D)
455 -rmdir $(MSWDIR)\$(D)
456 -rmdir $(OLEDIR)\$(D)
457 -rmdir $(HTMLDIR)\$(D)
458 -rmdir $(JPEGDIR)\$(D)
459 -rmdir $(TIFFDIR)\$(D)
460
461 # Making documents
462 docs: allhlp allhtml allpdfrtf allhtb allhtmlhelp
463 alldocs: docs
464 hlp: wxhlp
465 wxhlp: $(DOCDIR)/winhelp/wx.hlp
466 refhlp: $(DOCDIR)/winhelp/techref.hlp
467 rtf: $(DOCDIR)/winhelp/wx.rtf
468 pdfrtf: $(DOCDIR)/pdf/wx.rtf
469 refpdfrtf: $(DOCDIR)/pdf/techref.rtf
470 html: wxhtml
471 htb: $(DOCDIR)\htb\wx.htb
472 wxhtml: $(DOCDIR)\html\wx\wx.htm
473 htmlhelp: $(DOCDIR)\htmlhelp\wx.chm
474 ps: wxps referencps
475 wxps: $(WXDIR)\docs\ps\wx.ps
476 referencps: $(WXDIR)\docs\ps\referenc.ps
477
478 allhlp: wxhlp
479 cd $(WXDIR)\utils\dialoged\src
480 nmake -f makefile.vc hlp
481 cd $(WXDIR)\utils\tex2rtf\src
482 nmake -f makefile.vc hlp
483 cd $(THISDIR)
484
485 allhtml: wxhtml
486 cd $(WXDIR)\utils\dialoged\src
487 nmake -f makefile.vc html
488 cd $(WXDIR)\utils\tex2rtf\src
489 nmake -f makefile.vc html
490 cd $(THISDIR)
491
492 allhtmlhelp: htmlhelp
493 cd $(WXDIR)\utils\dialoged\src
494 nmake -f makefile.vc htmlhelp
495 cd $(WXDIR)\utils\tex2rtf\src
496 nmake -f makefile.vc htmlhelp
497 cd $(THISDIR)
498
499 allhtb: htb
500 cd $(WXDIR)\utils\dialoged\src
501 nmake -f makefile.vc htb
502 cd $(WXDIR)\utils\tex2rtf\src
503 nmake -f makefile.vc htb
504 cd $(THISDIR)
505
506 allps: wxps referencps
507 cd $(WXDIR)\utils\dialoged\src
508 nmake -f makefile.vc ps
509 cd $(WXDIR)\utils\tex2rtf\src
510 nmake -f makefile.vc ps
511 cd $(THISDIR)
512
513 allpdfrtf: pdfrtf
514 cd $(WXDIR)\utils\dialoged\src
515 nmake -f makefile.vc pdfrtf
516 cd $(WXDIR)\utils\tex2rtf\src
517 nmake -f makefile.vc pdfrtf
518 cd $(THISDIR)
519
520 $(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
521 cd $(DOCDIR)/latex/wx
522 -erase wx.ph
523 hc wx
524 -erase $(DOCDIR)\winhelp\wx.hlp
525 -erase $(DOCDIR)\winhelp\wx.cnt
526 move wx.hlp $(DOCDIR)\winhelp\wx.hlp
527 move wx.cnt $(DOCDIR)\winhelp\wx.cnt
528 cd $(THISDIR)
529
530 $(DOCDIR)/winhelp/techref.hlp: $(DOCDIR)/latex/techref/techref.rtf $(DOCDIR)/latex/techref/techref.hpj
531 cd $(DOCDIR)/latex/techref
532 -erase techref.ph
533 hc techref
534 move techref.hlp $(DOCDIR)\winhelp\techref.hlp
535 move techref.cnt $(DOCDIR)\winhelp\techref.cnt
536 cd $(THISDIR)
537
538 $(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
539 cd $(DOCDIR)\latex\wx
540 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
541 cd $(THISDIR)
542
543 $(DOCDIR)/latex/techref/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
544 cd $(DOCDIR)\latex\techref
545 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/latex/techref/techref.rtf -twice -winhelp
546 cd $(THISDIR)
547
548 $(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
549 cd $(DOCDIR)\latex\wx
550 -copy *.wmf $(DOCDIR)\pdf
551 -copy *.bmp $(DOCDIR)\pdf
552 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
553 cd $(THISDIR)
554
555 $(DOCDIR)/pdf/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
556 cd $(DOCDIR)\latex\techref
557 -copy *.wmf $(DOCDIR)\pdf
558 -copy *.bmp $(DOCDIR)\pdf
559 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/pdf/techref.rtf -twice -rtf
560 cd $(THISDIR)
561
562 $(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
563 cd $(DOCDIR)\latex\wx
564 -mkdir $(DOCDIR)\html\wx
565 copy *.gif $(DOCDIR)\html\wx
566 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
567 -erase $(DOCDIR)\html\wx\*.con
568 -erase $(DOCDIR)\html\wx\*.ref
569 -erase $(DOCDIR)\latex\wx\*.con
570 -erase $(DOCDIR)\latex\wx\*.ref
571 cd $(THISDIR)
572
573 $(DOCDIR)\htmlhelp\wx.chm : $(DOCDIR)\html\wx\wx.htm $(DOCDIR)\html\wx\wx.hhp
574 cd $(DOCDIR)\html\wx
575 -hhc wx.hhp
576 -mkdir ..\..\htmlhelp
577 -erase $(DOCDIR)\htmlhelp\wx.chm
578 move wx.chm ..\..\htmlhelp
579 cd $(THISDIR)
580
581 $(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
582 cd $(WXDIR)\docs\latex\wx
583 -latex manual
584 -latex manual
585 -makeindx manual
586 -bibtex manual
587 -latex manual
588 -latex manual
589 cd $(THISDIR)
590
591 $(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
592 cd $(WXDIR)\docs\latex\wx
593 -dvips32 -o wx.ps manual
594 move wx.ps $(WXDIR)\docs\ps\wx.ps
595 cd $(THISDIR)
596
597 $(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
598 cd $(WXDIR)\docs\latex\wx
599 -latex referenc
600 -latex referenc
601 -makeindx referenc
602 -bibtex referenc
603 -latex referenc
604 -latex referenc
605 cd $(THISDIR)
606
607 $(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
608 cd $(WXDIR)\docs\latex\wx
609 -dvips32 -o referenc.ps referenc
610 move referenc.ps $(WXDIR)\docs\ps\referenc.ps
611 cd $(THISDIR)
612
613 # An htb file is a zip file containing the .htm, .gif, .hhp, .hhc and .hhk
614 # files, renamed to htb.
615 # This can then be used with e.g. helpview.
616 # Optionally, a cached version of the .hhp file can be generated with hhp2cached.
617 $(DOCDIR)\htb\wx.htb: $(DOCDIR)\html\wx\wx.htm
618 cd $(WXDIR)\docs\html\wx
619 -erase wx.zip wx.htb
620 zip wx.zip *.htm *.gif *.hhp *.hhc *.hhk
621 -mkdir $(DOCDIR)\htb
622 move wx.zip $(DOCDIR)\htb\wx.htb
623 cd $(THISDIR)
624
625 # In order to force document reprocessing
626 touchmanual:
627 -touch $(WXDIR)\docs\latex\wx\manual.tex
628
629 updatedocs: touchmanual alldocs
630
631 cleandocs:
632 -erase $(DOCDIR)\winhelp\wx.hlp
633 -erase $(DOCDIR)\winhelp\wx.cnt
634 -erase $(DOCDIR)\html\wx\*.htm
635 -erase $(DOCDIR)\pdf\wx.rtf
636 -erase $(DOCDIR)\latex\wx\wx.rtf
637 -erase $(DOCDIR)\latex\wx\WX.PH
638 -erase $(DOCDIR)\htmlhelp\wx.chm
639 -erase $(DOCDIR)\htb\wx.htb
640
641 # Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
642 # Office StartUp folder, and PDFMaker should be installed.
643 updatepdf: # touchmanual pdfrtf
644 start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\wx.rtf /mGeneratePDF"
645
646
647 MFTYPE=vc
648 makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
649 cd $(WXWIN)\distrib\msw\tmake
650 tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
651 copy makefile.$(MFTYPE) $(WXWIN)\src\msw
652