1 #!#############################################################################
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
8 #!#############################################################################
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric and %wxMSW hashes.
12 IncludeTemplate("filelist.t");
14 #! now transform these hashes into $project tags
15 foreach $file (sort keys %wxGeneric) {
17 if ( $wxGeneric{$file} =~ /\b(PS|G|16|U)\b/ ) {
18 $tag = "WXNONESSENTIALOBJS";
21 $tag = "WXGENERICOBJS";
24 $file =~ s/cp?p?$/obj/;
25 $project{$tag} .= "..\\generic\\\$D\\" . $file . " "
28 foreach $file (sort keys %wxCommon) {
29 next if $wxCommon{$file} =~ /\b16\b/;
31 $file =~ s/cp?p?$/obj/;
32 $project{"WXCOMMONOBJS"} .= "..\\common\\\$D\\" . $file . " "
35 foreach $file (sort keys %wxMSW) {
36 next if $wxMSW{$file} =~ /\b16\b/;
38 #! OLE files live in a subdir
39 $project{"WXMSWOBJS"} .= '..\msw\\';
40 $project{"WXMSWOBJS"} .= 'ole\\' if $wxMSW{$file} =~ /\bO\b/;
41 $file =~ s/cp?p?$/obj/;
42 $project{"WXMSWOBJS"} .= '$D\\' . $file . " ";
45 foreach $file (sort keys %wxHTML) {
46 next if $wxHTML{$file} =~ /\b16\b/;
48 $file =~ s/cp?p?$/obj/;
49 $project{"WXHTMLOBJS"} .= "..\\html\\\$D\\" . $file . " "
53 # This file was automatically generated by tmake at #$ Now()
54 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE VC.T!
57 # Author: Julian Smart
60 # Copyright: (c) 1997, Julian Smart
64 # Makefile : Builds wxWindows library wx.lib for VC++ (32-bit)
67 # FINAL=1 argument to nmake to build version with no debugging info.
68 # dll builds a library (wxdll.lib) suitable for creating DLLs
70 !include <..\makevc.env>
72 THISDIR=$(WXWIN)\src\msw
74 !if "$(WXMAKINGDLL)" == "1"
75 LIBTARGET=$(WXDIR)\lib\$(WXLIBNAME).dll
76 DUMMYOBJ=$D\dummydll.obj
82 # Please set these according to the settings in setup.h, so we can include
83 # the appropriate libraries in wx.lib
85 # This one overrides the others, to be consistent with the settings in setup.h
86 MINIMAL_WXWINDOWS_SETUP=0
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.
96 GENDIR=$(WXDIR)\src\generic
97 COMMDIR=$(WXDIR)\src\common
99 MSWDIR=$(WXDIR)\src\msw
100 DOCDIR = $(WXDIR)\docs
101 HTMLDIR = $(WXDIR)\src\html
103 {..\generic}.cpp{..\generic\$D}.obj:
105 $(CPPFLAGS) /Fo$@ /c /Tp $<
108 {..\common}.cpp{..\common\$D}.obj:
110 $(CPPFLAGS) /Fo$@ /c /Tp $<
113 {..\common}.c{..\common\$D}.obj:
115 $(CPPFLAGS2) /Fo$@ /c /Tc $<
118 {..\msw}.cpp{..\msw\$D}.obj:
120 $(CPPFLAGS) /Fo$@ /c /Tp $<
123 {..\msw}.c{..\msw\$D}.obj:
125 $(CPPFLAGS2) /Fo$@ /c /Tc $<
128 {..\msw\ole}.cpp{..\msw\ole\$D}.obj:
130 $(CPPFLAGS) /Fo$@ /c /Tp $<
133 {..\html}.cpp{..\html\$D}.obj:
135 $(CPPFLAGS) /Fo$@ /c /Tp $<
138 GENERICOBJS= #$ ExpandList("WXGENERICOBJS");
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.
142 NONESSENTIALOBJS= #$ ExpandList("WXNONESSENTIALOBJS");
145 ..\common\$D\y_tab.obj \
146 #$ ExpandList("WXCOMMONOBJS");
148 MSWOBJS = #$ ExpandList("WXMSWOBJS");
150 HTMLOBJS = #$ ExpandList("WXHTMLOBJS");
153 # Add $(NONESSENTIALOBJS) if wanting generic dialogs, PostScript etc.
154 # Add $(HTMLOBJS) if wanting wxHTML classes
155 OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS) $(HTMLOBJS)
157 # Normal, static library
158 all: dirs $(DUMMYOBJ) $(OBJECTS) $(PERIPH_TARGET) png zlib xpm jpeg tiff $(LIBTARGET)
160 dirs: $(MSWDIR)\$D $(COMMDIR)\$D $(GENDIR)\$D $(OLEDIR)\$D $(HTMLDIR)\$D
181 # wxWindows library as DLL
183 nmake -f makefile.vc all FINAL=$(FINAL) DLL=1 WXMAKINGDLL=1 NEW_WXLIBNAME=$(NEW_WXLIBNAME)
186 nmake -f makefile.vc clean FINAL=$(FINAL) DLL=1 WXMAKINGDLL=1 NEW_WXLIBNAME=$(NEW_WXLIBNAME)
188 # wxWindows + app as DLL. Only affects main.cpp.
190 nmake -f makefile.vc all FINAL=$(FINAL) DLL=1
192 # wxWindows + app as DLL, for Netscape plugin - remove DllMain.
194 nmake -f makefile.vc all NOMAIN=1 FINAL=$(FINAL) DLL=1
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.
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.
207 nmake -f makefile.vc pch1 WXUSINGDLL=1 FINAL=$(FINAL) NEW_WXLIBNAME=$(NEW_WXLIBNAME)
209 pch1: dirs $(DUMMYOBJ)
212 !if "$(WXMAKINGDLL)" != "1"
216 $(WXDIR)\lib\$(WXLIBNAME).lib: $D\dummy.obj $(OBJECTS) $(PERIPH_LIBS)
221 $(OBJECTS) $D\dummy.obj $(PERIPH_LIBS)
226 ### Update the import library
228 $(WXDIR)\lib\$(WXLIBNAME).lib: $(DUMMYOBJ) $(OBJECTS)
232 $(DUMMYOBJ) $(OBJECTS)
233 -out:$(WXDIR)\lib\$(WXLIBNAME).lib
236 !if "$(USE_GLCANVAS)" == "1"
237 GL_LIBS=opengl32.lib glu32.lib
238 GL_LIBS_DELAY=/delayload:opengl32.dll
241 # Update the dynamic link library
242 $(WXDIR)\lib\$(WXLIBNAME).dll: $(DUMMYOBJ) $(OBJECTS)
245 -out:$(WXDIR)\lib\$(WXLIBNAME).dll
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
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
250 /delayload:oleaut32.dll /delayload:rpcrt4.dll /delayload:winmm.dll $(GL_LIBS_DELAY)
256 ########################################################
257 # Windows-specific objects
259 $D\dummy.obj: dummy.$(SRCSUFF) $(WXDIR)\include\wx\wx.h $(WXDIR)\include\wx\msw\setup.h
260 cl $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummy.obj /c /Tp dummy.cpp
262 $D\dummydll.obj: dummydll.$(SRCSUFF) $(WXDIR)\include\wx\wx.h $(WXDIR)\include\wx\msw\setup.h
264 $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummydll.obj /c /Tp dummydll.cpp
267 # Compile certain files with no optimization (some files cause a
268 # compiler crash for buggy versions of VC++, e.g. 4.0).
269 # Don't forget to put FINAL=1 on the command line.
272 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\datetime.obj /c /Tp $(COMMDIR)\datetime.cpp
275 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\encconv.obj /c /Tp $(COMMDIR)\encconv.cpp
278 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\fileconf.obj /c /Tp $(COMMDIR)\fileconf.cpp
281 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\hash.obj /c /Tp $(COMMDIR)\hash.cpp
284 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\resource.obj /c /Tp $(COMMDIR)\resource.cpp
287 $(CPPFLAGS2) /Od /Fo$(COMMDIR)\$D\textfile.obj /c /Tp $(COMMDIR)\textfile.cpp
290 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\choicdgg.obj /c /Tp $(GENDIR)\choicdgg.cpp
293 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\grid.obj /c /Tp $(GENDIR)\grid.cpp
296 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\gridsel.obj /c /Tp $(GENDIR)\gridsel.cpp
299 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\logg.obj /c /Tp $(GENDIR)\logg.cpp
302 $(CPPFLAGS2) /Od /Fo$(GENDIR)\$D\proplist.obj /c /Tp $(GENDIR)\proplist.cpp
305 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\clipbrd.obj /c /Tp $(MSWDIR)\clipbrd.cpp
308 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\control.obj /c /Tp $(MSWDIR)\control.cpp
311 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\listbox.obj /c /Tp $(MSWDIR)\listbox.cpp
314 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\mdi.obj /c /Tp $(MSWDIR)\mdi.cpp
317 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\menu.obj /c /Tp $(MSWDIR)\menu.cpp
320 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\notebook.obj /c /Tp $(MSWDIR)\notebook.cpp
323 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\tbar95.obj /c /Tp $(MSWDIR)\tbar95.cpp
326 $(CPPFLAGS2) /Od /Fo$(MSWDIR)\$D\treectrl.obj /c /Tp $(MSWDIR)\treectrl.cpp
329 $(CPPFLAGS2) /Od /Fo$(HTMLDIR)\$D\helpfrm.obj /c /Tp $(HTMLDIR)\helpfrm.cpp
332 # If taking wxWindows from CVS, setup.h doesn't exist yet.
333 # Actually the 'if not exist setup.h' test doesn't work
334 # (copies the file anyway)
335 # we'll have to comment this rule out.
337 # $(WXDIR)\include\wx\msw\setup.h: $(WXDIR)\include\wx\msw\setup0.h
338 # cd "$(WXDIR)"\include\wx\msw
339 # if not exist setup.h copy setup0.h setup.h
340 # cd "$(WXDIR)"\src\msw
342 ..\common\$D\y_tab.obj: ..\common\y_tab.c ..\common\lex_yy.c
344 $(CPPFLAGS2) /c ..\common\y_tab.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
347 ..\common\y_tab.c: ..\common\dosyacc.c
348 copy "..\common"\dosyacc.c "..\common"\y_tab.c
350 ..\common\lex_yy.c: ..\common\doslex.c
351 copy "..\common"\doslex.c "..\common"\lex_yy.c
353 $(OBJECTS): $(WXDIR)/include/wx/setup.h
355 ..\common\$D\unzip.obj: ..\common\unzip.c
357 $(CPPFLAGS2) /c $(COMMDIR)\unzip.c /Fo$@
360 # Peripheral components
364 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG)
369 nmake -f makefile.vc clean
374 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG)
379 nmake -f makefile.vc clean
384 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG) all
389 nmake -f makefile.vc clean
394 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG) all
399 nmake -f makefile.vc clean
404 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) CRTFLAG=$(CRTFLAG)
409 nmake -f makefile.vc clean
413 cd $(WXDIR)\utils\rcparser\src
414 nmake -f makefile.vc FINAL=$(FINAL)
417 cleanall: clean clean_png clean_zlib clean_xpm clean_jpeg clean_tiff
418 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).dll
419 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).lib
420 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).exp
421 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).pdb
422 -erase ..\..\lib\wx$(WXVERSION)$(LIBEXT).ilk
425 clean: $(PERIPH_CLEAN_TARGET)
427 -erase $(WXDIR)\lib\$(WXLIBNAME).pdb
430 -erase $(WXLIBNAME).pch
431 -erase $(GENDIR)\$D\*.obj
432 -erase $(GENDIR)\$D\*.pdb
433 -erase $(GENDIR)\$D\*.sbr
434 -erase $(COMMDIR)\$D\*.obj
435 -erase $(COMMDIR)\$D\*.pdb
436 -erase $(COMMDIR)\$D\*.sbr
437 -erase $(COMMDIR)\y_tab.c
438 -erase $(COMMDIR)\lex_yy.c
439 -erase $(MSWDIR)\$D\*.obj
440 -erase $(MSWDIR)\$D\*.sbr
441 -erase $(MSWDIR)\$D\*.pdb
442 -erase $(OLEDIR)\$D\*.obj
443 -erase $(OLEDIR)\$D\*.sbr
444 -erase $(OLEDIR)\$D\*.pdb
445 -erase $(HTMLDIR)\$D\*.obj
446 -erase $(HTMLDIR)\$D\*.sbr
447 -erase $(HTMLDIR)\$D\*.pdb
450 -rmdir ..\generic\$(D)
451 -rmdir ..\common\$(D)
456 docs: allhlp allhtml allpdfrtf htb htmlhelp
459 wxhlp: $(DOCDIR)/winhelp/wx.hlp
460 refhlp: $(DOCDIR)/winhelp/techref.hlp
461 rtf: $(DOCDIR)/winhelp/wx.rtf
462 pdfrtf: $(DOCDIR)/pdf/wx.rtf
463 refpdfrtf: $(DOCDIR)/pdf/techref.rtf
465 htb: $(DOCDIR)\htb\wx.htb
466 wxhtml: $(DOCDIR)\html\wx\wx.htm
467 htmlhelp: $(DOCDIR)\htmlhelp\wx.chm
469 wxps: $(WXDIR)\docs\ps\wx.ps
470 referencps: $(WXDIR)\docs\ps\referenc.ps
473 cd $(WXDIR)\utils\dialoged\src
474 nmake -f makefile.vc hlp
477 # cd $(WXDIR)\utils\wxhelp\src
478 # nmake -f makefile.vc hlp
479 # cd $(WXDIR)\utils\tex2rtf\src
480 # nmake -f makefile.vc hlp
481 # cd $(WXDIR)\utils\wxgraph\src
482 # nmake -f makefile.vc hlp
483 # cd $(WXDIR)\utils\wxchart\src
484 # nmake -f makefile.vc hlp
485 # cd $(WXDIR)\utils\wxtree\src
486 # nmake -f makefile.vc hlp
487 # cd $(WXDIR)\utils\wxbuild\src
488 # nmake -f makefile.vc hlp
489 # cd $(WXDIR)\utils\wxgrid\src
490 # nmake -f makefile.vc hlp
493 cd $(WXDIR)\utils\dialoged\src
494 nmake -f makefile.vc html
497 # nmake -f makefile.vc html
498 # cd $(WXDIR)\utils\dialoged\src
499 # nmake -f makefile.vc html
500 # cd $(WXDIR)\utils\hytext\src
501 # nmake -f makefile.vc html
502 # cd $(WXDIR)\utils\wxhelp\src
503 # nmake -f makefile.vc html
504 # cd $(WXDIR)\utils\tex2rtf\src
505 # nmake -f makefile.vc html
506 # cd $(WXDIR)\utils\wxgraph\src
507 # nmake -f makefile.vc html
508 # cd $(WXDIR)\utils\wxchart\src
509 # nmake -f makefile.vc html
510 # cd $(WXDIR)\utils\wxtree\src
511 # nmake -f makefile.vc html
513 allps: wxps referencps
514 cd $(WXDIR)\utils\dialoged\src
515 nmake -f makefile.vc ps
519 cd $(WXDIR)\utils\dialoged\src
520 nmake -f makefile.vc pdfrtf
523 # cd $(WXDIR)\utils\wxhelp\src
524 # nmake -f makefile.vc ps
525 # cd $(WXDIR)\utils\tex2rtf\src
526 # nmake -f makefile.vc ps
527 # cd $(WXDIR)\utils\wxgraph\src
528 # nmake -f makefile.vc ps
529 # cd $(WXDIR)\utils\wxchart\src
530 # nmake -f makefile.vc ps
531 # cd $(WXDIR)\utils\wxtree\src
532 # nmake -f makefile.vc ps
535 $(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
536 cd $(DOCDIR)/latex/wx
539 move wx.hlp $(DOCDIR)\winhelp\wx.hlp
540 move wx.cnt $(DOCDIR)\winhelp\wx.cnt
543 $(DOCDIR)/winhelp/techref.hlp: $(DOCDIR)/latex/techref/techref.rtf $(DOCDIR)/latex/techref/techref.hpj
544 cd $(DOCDIR)/latex/techref
547 move techref.hlp $(DOCDIR)\winhelp\techref.hlp
548 move techref.cnt $(DOCDIR)\winhelp\techref.cnt
551 $(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
552 cd $(DOCDIR)\latex\wx
553 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
556 $(DOCDIR)/latex/techref/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
557 cd $(DOCDIR)\latex\techref
558 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/latex/techref/techref.rtf -twice -winhelp
561 $(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
562 cd $(DOCDIR)\latex\wx
563 -copy *.wmf $(DOCDIR)\pdf
564 -copy *.bmp $(DOCDIR)\pdf
565 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
568 $(DOCDIR)/pdf/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
569 cd $(DOCDIR)\latex\techref
570 -copy *.wmf $(DOCDIR)\pdf
571 -copy *.bmp $(DOCDIR)\pdf
572 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/pdf/techref.rtf -twice -rtf
575 $(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
576 cd $(DOCDIR)\latex\wx
577 -mkdir $(DOCDIR)\html\wx
578 copy *.gif $(DOCDIR)\html\wx
579 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
580 -erase $(DOCDIR)\html\wx\*.con
581 -erase $(DOCDIR)\html\wx\*.ref
582 -erase $(DOCDIR)\latex\wx\*.con
583 -erase $(DOCDIR)\latex\wx\*.ref
586 $(DOCDIR)\htmlhelp\wx.chm : $(DOCDIR)\html\wx\wx.htm $(DOCDIR)\html\wx\wx.hhp
589 -mkdir ..\..\htmlhelp
590 move wx.chm ..\..\htmlhelp
593 $(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
594 cd $(WXDIR)\docs\latex\wx
603 $(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
604 cd $(WXDIR)\docs\latex\wx
605 -dvips32 -o wx.ps manual
606 move wx.ps $(WXDIR)\docs\ps\wx.ps
609 $(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
610 cd $(WXDIR)\docs\latex\wx
619 $(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
620 cd $(WXDIR)\docs\latex\wx
621 -dvips32 -o referenc.ps referenc
622 move referenc.ps $(WXDIR)\docs\ps\referenc.ps
625 # An htb file is a zip file containing the .htm, .gif, .hhp, .hhc and .hhk
626 # files, renamed to htb.
627 # This can then be used with e.g. helpview.
628 # Optionally, a cached version of the .hhp file can be generated with hhp2cached.
629 $(DOCDIR)\htb\wx.htb: $(DOCDIR)\html\wx\wx.htm
630 cd $(WXDIR)\docs\html\wx
631 -erase /Y wx.zip wx.htb
632 zip32 wx.zip *.htm *.gif *.hhp *.hhc *.hhk
634 move wx.zip $(DOCDIR)\htb\wx.htb
637 # In order to force document reprocessing
639 -touch $(WXDIR)\docs\latex\wx\manual.tex
641 updatedocs: touchmanual alldocs
644 -erase /Y $(DOCDIR)\html\wx\wx.htm
645 -erase /Y $(DOCDIR)\pdf\wx.rtf
646 -erase /Y $(DOCDIR)\latex\wx\wx.rtf
647 -erase /Y $(DOCDIR)\htmlhelp\wx.chm
648 -erase /Y $(DOCDIR)\htb\wx.htb
650 # Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
651 # Office StartUp folder, and PDFMaker should be installed.
652 updatepdf: # touchmanual pdfrtf
653 start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\wx.rtf /mGeneratePDF"
657 makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
658 cd $(WXWIN)\distrib\msw\tmake
659 tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
660 copy makefile.$(MFTYPE) $(WXWIN)\src\msw