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