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