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