]> git.saurik.com Git - wxWidgets.git/blob - src/msw/makefile.vc
Some minors changes, like adding empty lines at end of files, to be able to compile...
[wxWidgets.git] / src / msw / makefile.vc
1 #
2 # File: makefile.nt
3 # Author: Julian Smart
4 # Created: 1997
5 # Updated:
6 # Copyright: (c) 1997, Julian Smart
7 #
8 # "%W% %G%"
9 #
10 # Makefile : Builds wxWindows library wx.lib for VC++ (32-bit)
11 # Arguments:
12 #
13 # FINAL=1 argument to nmake to build version with no debugging info.
14 # dll builds a library (wxdll.lib) suitable for creating DLLs
15 #
16 !include <..\makevc.env>
17
18 THISDIR=$(WXWIN)\src\msw
19
20 !if "$(WXMAKINGDLL)" == "1"
21 LIBTARGET=$(WXDIR)\lib\$(WXLIBNAME).dll
22 DUMMYOBJ=$D\dummydll.obj
23 !else
24 LIBTARGET=$(WXLIB)
25 DUMMYOBJ=$D\dummy.obj
26 !endif
27
28 # Please set these according to the settings in setup.h, so we can include
29 # the appropriate libraries in wx.lib
30
31 # This one overrides the others, to be consistent with the settings in setup.h
32 MINIMAL_WXWINDOWS_SETUP=0
33
34 PERIPH_LIBS=
35 PERIPH_TARGET=
36 PERIPH_CLEAN_TARGET=
37
38 # These are absolute paths, so that the compiler
39 # generates correct __FILE__ symbols for debugging.
40 # Otherwise you don't be able to double-click on a memory
41 # error to load that file.
42 GENDIR=$(WXDIR)\src\generic
43 COMMDIR=$(WXDIR)\src\common
44 OLEDIR=ole
45 MSWDIR=$(WXDIR)\src\msw
46 DOCDIR = $(WXDIR)\docs
47
48 {..\generic}.cpp{..\generic\$D}.obj:
49 cl @<<
50 $(CPPFLAGS) /Fo$@ /c /Tp $<
51 <<
52
53 {..\common}.cpp{..\common\$D}.obj:
54 cl @<<
55 $(CPPFLAGS) /Fo$@ /c /Tp $<
56 <<
57
58 {..\msw}.cpp{..\msw\$D}.obj:
59 cl @<<
60 $(CPPFLAGS) /Fo$@ /c /Tp $<
61 <<
62
63 {..\msw\ole}.cpp{..\msw\ole\$D}.obj:
64 cl @<<
65 $(CPPFLAGS) /Fo$@ /c /Tp $<
66 <<
67
68 GENERICOBJS= \
69 ..\generic\$D\choicdgg.obj \
70 ..\generic\$D\gridg.obj \
71 ..\generic\$D\laywin.obj \
72 ..\generic\$D\panelg.obj \
73 ..\generic\$D\progdlgg.obj \
74 ..\generic\$D\prop.obj \
75 ..\generic\$D\propform.obj \
76 ..\generic\$D\proplist.obj \
77 ..\generic\$D\sashwin.obj \
78 ..\generic\$D\scrolwin.obj \
79 ..\generic\$D\splitter.obj \
80 ..\generic\$D\statusbr.obj \
81 ..\generic\$D\tabg.obj \
82 ..\generic\$D\textdlgg.obj \
83 ..\generic\$D\tipdlg.obj
84
85 # ..\generic\$D\imaglist.obj \
86 # ..\generic\$D\treectrl.obj \
87 # ..\generic\$D\listctrl.obj \
88 # ..\generic\$D\notebook.obj \
89
90 # These are generic things that don't need to be compiled on MSW,
91 # but sometimes it's useful to do so for testing purposes.
92 NONESSENTIALOBJS= \
93 ..\generic\$D\printps.obj \
94 ..\generic\$D\prntdlgg.obj \
95 ..\generic\$D\msgdlgg.obj \
96 ..\generic\$D\helpxlp.obj \
97 ..\generic\$D\colrdlgg.obj \
98 ..\generic\$D\fontdlgg.obj
99
100 COMMONOBJS = \
101 ..\common\$D\cmndata.obj \
102 ..\common\$D\config.obj \
103 ..\common\$D\dcbase.obj \
104 ..\common\$D\db.obj \
105 ..\common\$D\dbtable.obj \
106 ..\common\$D\docview.obj \
107 ..\common\$D\docmdi.obj \
108 ..\common\$D\dynarray.obj \
109 ..\common\$D\dynlib.obj \
110 ..\common\$D\event.obj \
111 ..\common\$D\file.obj \
112 ..\common\$D\filefn.obj \
113 ..\common\$D\fileconf.obj \
114 ..\common\$D\framecmn.obj \
115 ..\common\$D\ftp.obj \
116 ..\common\$D\gdicmn.obj \
117 ..\common\$D\image.obj \
118 ..\common\$D\imagbmp.obj \
119 ..\common\$D\imagjpeg.obj \
120 ..\common\$D\imagpng.obj \
121 ..\common\$D\imaggif.obj \
122 ..\common\$D\intl.obj \
123 ..\common\$D\ipcbase.obj \
124 ..\common\$D\helpbase.obj \
125 ..\common\$D\layout.obj \
126 ..\common\$D\log.obj \
127 ..\common\$D\memory.obj \
128 ..\common\$D\mimetype.obj \
129 ..\common\$D\module.obj \
130 ..\common\$D\odbc.obj \
131 ..\common\$D\object.obj \
132 ..\common\$D\prntbase.obj \
133 ..\common\$D\resource.obj \
134 ..\common\$D\tbarbase.obj \
135 ..\common\$D\tbarsmpl.obj \
136 ..\common\$D\textfile.obj \
137 ..\common\$D\timercmn.obj \
138 ..\common\$D\utilscmn.obj \
139 ..\common\$D\validate.obj \
140 ..\common\$D\valgen.obj \
141 ..\common\$D\valtext.obj \
142 ..\common\$D\date.obj \
143 ..\common\$D\hash.obj \
144 ..\common\$D\list.obj \
145 ..\common\$D\paper.obj \
146 ..\common\$D\string.obj \
147 ..\common\$D\socket.obj \
148 ..\common\$D\sckaddr.obj \
149 ..\common\$D\sckint.obj \
150 ..\common\$D\sckfile.obj \
151 ..\common\$D\sckipc.obj \
152 ..\common\$D\sckstrm.obj \
153 ..\common\$D\url.obj \
154 ..\common\$D\http.obj \
155 ..\common\$D\protocol.obj \
156 ..\common\$D\time.obj \
157 ..\common\$D\tokenzr.obj \
158 ..\common\$D\wxexpr.obj \
159 ..\common\$D\y_tab.obj \
160 ..\common\$D\extended.obj \
161 ..\common\$D\process.obj \
162 ..\common\$D\wfstream.obj \
163 ..\common\$D\mstream.obj \
164 ..\common\$D\zstream.obj \
165 ..\common\$D\stream.obj \
166 ..\common\$D\datstrm.obj \
167 ..\common\$D\objstrm.obj \
168 ..\common\$D\variant.obj \
169 ..\common\$D\dlgcmn.obj \
170 ..\common\$D\wincmn.obj \
171 ..\common\$D\txtstrm.obj \
172 ..\common\$D\wxchar.obj
173
174 MSWOBJS = \
175 ..\msw\$D\accel.obj \
176 ..\msw\$D\app.obj \
177 ..\msw\$D\bitmap.obj \
178 ..\msw\$D\bmpbuttn.obj \
179 ..\msw\$D\brush.obj \
180 ..\msw\$D\button.obj \
181 ..\msw\$D\checkbox.obj \
182 ..\msw\$D\checklst.obj \
183 ..\msw\$D\caret.obj \
184 ..\msw\$D\choice.obj \
185 ..\msw\$D\clipbrd.obj \
186 ..\msw\$D\colordlg.obj \
187 ..\msw\$D\colour.obj \
188 ..\msw\$D\combobox.obj \
189 ..\msw\$D\control.obj \
190 ..\msw\$D\curico.obj \
191 ..\msw\$D\cursor.obj \
192 ..\msw\$D\data.obj \
193 ..\msw\$D\dc.obj \
194 ..\msw\$D\dcmemory.obj \
195 ..\msw\$D\dcclient.obj \
196 ..\msw\$D\dcprint.obj \
197 ..\msw\$D\dcscreen.obj \
198 ..\msw\$D\dde.obj \
199 ..\msw\$D\dialog.obj \
200 ..\msw\$D\dib.obj \
201 ..\msw\$D\dibutils.obj \
202 ..\msw\$D\dirdlg.obj \
203 ..\msw\$D\dragimag.obj \
204 ..\msw\$D\filedlg.obj \
205 ..\msw\$D\font.obj \
206 ..\msw\$D\fontdlg.obj \
207 ..\msw\$D\frame.obj \
208 ..\msw\$D\gauge95.obj \
209 ..\msw\$D\gaugemsw.obj \
210 ..\msw\$D\gdiobj.obj \
211 ..\msw\$D\helpwin.obj \
212 ..\msw\$D\icon.obj \
213 ..\msw\$D\iniconf.obj \
214 ..\msw\$D\joystick.obj \
215 ..\msw\$D\imaglist.obj \
216 ..\msw\$D\listbox.obj \
217 ..\msw\$D\listctrl.obj \
218 ..\msw\$D\main.obj \
219 ..\msw\$D\mdi.obj \
220 ..\msw\$D\menu.obj \
221 ..\msw\$D\menuitem.obj \
222 ..\msw\$D\metafile.obj \
223 ..\msw\$D\minifram.obj \
224 ..\msw\$D\msgdlg.obj \
225 ..\msw\$D\nativdlg.obj \
226 ..\msw\$D\notebook.obj \
227 ..\msw\$D\ownerdrw.obj \
228 ..\msw\$D\palette.obj \
229 ..\msw\$D\pen.obj \
230 ..\msw\$D\penwin.obj \
231 ..\msw\$D\pnghand.obj \
232 ..\msw\$D\printdlg.obj \
233 ..\msw\$D\printwin.obj \
234 ..\msw\$D\radiobox.obj \
235 ..\msw\$D\radiobut.obj \
236 ..\msw\$D\region.obj \
237 ..\msw\$D\registry.obj \
238 ..\msw\$D\regconf.obj \
239 ..\msw\$D\scrolbar.obj \
240 ..\msw\$D\settings.obj \
241 ..\msw\$D\slidrmsw.obj \
242 ..\msw\$D\slider95.obj \
243 ..\msw\$D\spinbutt.obj \
244 ..\msw\$D\statbmp.obj \
245 ..\msw\$D\statbox.obj \
246 ..\msw\$D\statline.obj \
247 ..\msw\$D\statbr95.obj \
248 ..\msw\$D\stattext.obj \
249 ..\msw\$D\tabctrl.obj \
250 ..\msw\$D\taskbar.obj \
251 ..\msw\$D\tbar95.obj \
252 ..\msw\$D\tbarmsw.obj \
253 ..\msw\$D\textctrl.obj \
254 ..\msw\$D\thread.obj \
255 ..\msw\$D\timer.obj \
256 ..\msw\$D\tooltip.obj \
257 ..\msw\$D\treectrl.obj \
258 ..\msw\$D\utils.obj \
259 ..\msw\$D\utilsexc.obj \
260 ..\msw\ole\$D\uuid.obj \
261 ..\msw\$D\wave.obj \
262 ..\msw\$D\window.obj \
263 ..\msw\$D\xpmhand.obj \
264 ..\msw\ole\$D\dataobj.obj \
265 ..\msw\ole\$D\automtn.obj \
266 ..\msw\ole\$D\droptgt.obj \
267 ..\msw\ole\$D\dropsrc.obj \
268 ..\msw\ole\$D\oleutils.obj
269
270 # Add $(NONESSENTIALOBJS) if wanting generic dialogs, PostScript etc.
271 OBJECTS = $(COMMONOBJS) $(GENERICOBJS) $(MSWOBJS)
272
273 # Normal, static library
274 all: dirs $(DUMMYOBJ) $(OBJECTS) $(PERIPH_TARGET) png zlib xpm jpeg $(LIBTARGET)
275
276 dirs: $(MSWDIR)\$D $(COMMDIR)\$D $(GENDIR)\$D $(OLEDIR)\$D
277
278 test: $(MSWDIR)\$D\wave.obj
279 test2: ..\common\Debug\config.obj
280
281 $D:
282 mkdir $D
283
284 $(COMMDIR)\$D:
285 mkdir $(COMMDIR)\$D
286
287 $(MSWDIR)\$D:
288 mkdir $(MSWDIR)\$D
289
290 $(GENDIR)\$D:
291 mkdir $(GENDIR)\$D
292
293 $(OLEDIR)\$D:
294 mkdir $(OLEDIR)\$D
295
296 # wxWindows library as DLL
297 dll:
298 nmake -f makefile.vc all FINAL=$(FINAL) DLL=1 WXMAKINGDLL=1 NEW_WXLIBNAME=$(NEW_WXLIBNAME)
299
300 cleandll:
301 nmake -f makefile.vc clean FINAL=$(FINAL) DLL=1 WXMAKINGDLL=1 NEW_WXLIBNAME=$(NEW_WXLIBNAME)
302
303 # wxWindows + app as DLL. Only affects main.cpp.
304 dllapp:
305 nmake -f makefile.vc all FINAL=$(FINAL) DLL=1
306
307 # wxWindows + app as DLL, for Netscape plugin - remove DllMain.
308 dllnp:
309 nmake -f makefile.vc all NOMAIN=1 FINAL=$(FINAL) DLL=1
310
311 # Use this to make dummy.obj and generate a PCH.
312 # You might use the dll target, then the pch target, in order to
313 # generate a DLL, then a PCH/dummy.obj for compiling your applications with.
314 #
315 # Explanation: Normally, when compiling a static version of wx.lib, your dummy.obj/PCH
316 # are associated with wx.lib. When using a DLL version of wxWindows, however,
317 # the DLL is compiled without a PCH, so you only need it for compiling the app.
318 # In fact headers are compiled differently depending on whether a DLL is being made
319 # or an app is calling the DLL exported functionality (WXDLLEXPORT is different
320 # in each case) so you couldn't use the same PCH.
321 pch:
322 nmake -f makefile.vc pch1 WXUSINGDLL=1 FINAL=$(FINAL) NEW_WXLIBNAME=$(NEW_WXLIBNAME)
323
324 pch1: dirs $(DUMMYOBJ)
325 echo $(DUMMYOBJ)
326
327 !if "$(WXMAKINGDLL)" != "1"
328
329 ### Static library
330
331 $(WXDIR)\lib\$(WXLIBNAME).lib: $D\dummy.obj $(OBJECTS) $(PERIPH_LIBS)
332 -erase $(LIBTARGET)
333 $(implib) @<<
334 -out:$@
335 -machine:$(CPU)
336 $(OBJECTS) $(PERIPH_LIBS)
337 <<
338
339 !else
340
341 ### Update the import library
342
343 $(WXDIR)\lib\$(WXLIBNAME).lib: $(DUMMYOBJ) $(OBJECTS)
344 $(implib) @<<
345 -machine:$(CPU)
346 -def:wx.def
347 $(DUMMYOBJ) $(OBJECTS)
348 -out:$(WXDIR)\lib\$(WXLIBNAME).lib
349 <<
350
351 # Update the dynamic link library
352 $(WXDIR)\lib\$(WXLIBNAME).dll: $(DUMMYOBJ) $(OBJECTS) $(WXDIR)\lib\$(WXLIBNAME).lib
353 $(link) @<<
354 $(LINKFLAGS)
355 -out:$(WXDIR)\lib\$(WXLIBNAME).dll
356 $(DUMMYOBJ) $(OBJECTS) $(guilibsdll) shell32.lib comctl32.lib ctl3d32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib odbc32.lib advapi32.lib winmm.lib $(WXDIR)\lib\winpng.lib $(WXDIR)\lib\zlib.lib $(WXDIR)\lib\xpm.lib $(WXDIR)\lib\jpeg.lib
357 <<
358
359 !endif
360
361
362 ########################################################
363 # Windows-specific objects
364
365 $D\dummy.obj: dummy.$(SRCSUFF) $(WXDIR)\include\wx\wx.h $(WXDIR)\include\wx\msw\setup.h
366 cl $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummy.obj /c /Tp dummy.cpp
367
368 $D\dummydll.obj: dummydll.$(SRCSUFF) $(WXDIR)\include\wx\wx.h $(WXDIR)\include\wx\msw\setup.h
369 cl @<<
370 $(CPPFLAGS) $(MAKEPRECOMP) /Fo$D\dummydll.obj /c /Tp dummydll.cpp
371 <<
372
373 # If taking wxWindows from CVS, setup.h doesn't exist yet.
374 # Actually the 'if not exist setup.h' test doesn't work
375 # (copies the file anyway)
376 # we'll have to comment this rule out.
377
378 #$(WXDIR)\include\wx\msw\setup.h: $(WXDIR)\include\wx\msw\setup0.h
379 # cd "$(WXDIR)"\include\wx\msw
380 # if not exist setup.h copy setup0.h setup.h
381 # cd "$(WXDIR)"\src\msw
382
383 ..\common\$D\extended.obj: ..\common\extended.c
384 cl @<<
385 $(CPPFLAGS2) /c $(COMMDIR)\extended.c /Fo$@
386 <<
387
388 ..\common\$D\y_tab.obj: ..\common\y_tab.c ..\common\lex_yy.c
389 cl @<<
390 $(CPPFLAGS2) /c ..\common\y_tab.c -DUSE_DEFINE -DYY_USE_PROTOS /Fo$@
391 <<
392
393 ..\common\y_tab.c: ..\common\dosyacc.c
394 copy "..\common"\dosyacc.c "..\common"\y_tab.c
395
396 ..\common\lex_yy.c: ..\common\doslex.c
397 copy "..\common"\doslex.c "..\common"\lex_yy.c
398
399 $(OBJECTS): $(WXDIR)/include/wx/setup.h
400
401 # Peripheral components
402
403 png:
404 cd $(WXDIR)\src\png
405 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL)
406 cd $(WXDIR)\src\msw
407
408 clean_png:
409 cd $(WXDIR)\src\png
410 nmake -f makefile.vc clean
411 cd $(WXDIR)\src\msw
412
413 zlib:
414 cd $(WXDIR)\src\zlib
415 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL)
416 cd $(WXDIR)\src\msw
417
418 clean_zlib:
419 cd $(WXDIR)\src\zlib
420 nmake -f makefile.vc clean
421 cd $(WXDIR)\src\msw
422
423 jpeg:
424 cd $(WXDIR)\src\jpeg
425 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL) all
426 cd $(WXDIR)\src\msw
427
428 clean_jpeg:
429 cd $(WXDIR)\src\jpeg
430 nmake -f makefile.vc clean
431 cd $(WXDIR)\src\msw
432
433 xpm:
434 cd $(WXDIR)\src\xpm
435 nmake -f makefile.vc FINAL=$(FINAL) DLL=$(DLL) WXMAKINGDLL=$(WXMAKINGDLL)
436 cd $(WXDIR)\src\msw
437
438 clean_xpm:
439 cd $(WXDIR)\src\xpm
440 nmake -f makefile.vc clean
441 cd $(WXDIR)\src\msw
442
443 rcparser:
444 cd $(WXDIR)\utils\rcparser\src
445 nmake -f makefile.vc FINAL=$(FINAL)
446 cd $(WXDIR)\src\msw
447
448 clean: $(PERIPH_CLEAN_TARGET) clean_png clean_zlib clean_jpeg clean_xpm
449 -erase $(LIBTARGET)
450 -erase $(WXDIR)\lib\$(WXLIBNAME).pdb
451 -erase ..\..\lib\wx200.dll
452 -erase ..\..\lib\wx200.lib
453 -erase ..\..\lib\wx200.exp
454 -erase ..\..\lib\wx200.pdb
455 -erase ..\..\lib\wx200.ilk
456 -erase *.pdb
457 -erase *.sbr
458 -erase $(WXLIBNAME).pch
459 -erase $(GENDIR)\$D\*.obj
460 -erase $(GENDIR)\$D\*.pdb
461 -erase $(GENDIR)\$D\*.sbr
462 -erase $(COMMDIR)\$D\*.obj
463 -erase $(COMMDIR)\$D\*.pdb
464 -erase $(COMMDIR)\$D\*.sbr
465 -erase $(COMMDIR)\\y_tab.c
466 -erase $(COMMDIR)\lex_yy.c
467 -erase $(MSWDIR)\$D\*.obj
468 -erase $(MSWDIR)\$D\*.sbr
469 -erase $(MSWDIR)\$D\*.pdb
470 -erase $(OLEDIR)\$D\*.obj
471 -erase $(OLEDIR)\$D\*.sbr
472 -erase $(OLEDIR)\$D\*.pdb
473 -rmdir $(D)
474 -rmdir ole\$(D)
475 -rmdir ..\generic\$(D)
476 -rmdir ..\common\$(D)
477
478 cleanall: clean
479
480 # Making documents
481 docs: allhlp allhtml allpdfrtf
482 alldocs: docs
483 hlp: wxhlp portinghlp
484 wxhlp: $(DOCDIR)/winhelp/wx.hlp
485 prophlp: $(DOCDIR)/winhelp/prop.hlp
486 refhlp: $(DOCDIR)/winhelp/techref.hlp
487 rtf: $(DOCDIR)/winhelp/wx.rtf
488 proprtf: $(DOCDIR)/winhelp/prop.rtf
489 pdfrtf: $(DOCDIR)/pdf/wx.rtf
490 proppdfrtf: $(DOCDIR)/pdf/prop.rtf
491 refpdfrtf: $(DOCDIR)/pdf/techref.rtf
492 html: wxhtml portinghtml
493 wxhtml: $(DOCDIR)\html\wx\wx.htm
494 htmlhelp: $(DOCDIR)\html\wx\wx.chm
495 prophtml: $(DOCDIR)\html\proplist\prop.htm
496 ps: wxps referencps
497 wxps: $(WXDIR)\docs\ps\wx.ps
498 propps: $(WXDIR)\docs\ps\prop.ps
499 referencps: $(WXDIR)\docs\ps\referenc.ps
500
501 portinghtml: $(DOCDIR)\html\porting\port.htm
502 portingrtf: $(DOCDIR)/winhelp/porting.rtf
503 portinghlp: $(DOCDIR)/winhelp/porting.hlp
504 portingpdfrtf: $(DOCDIR)/pdf/porting.rtf
505 portingps: $(WXDIR)\docs\ps\porting.ps
506
507 allhlp: wxhlp portinghlp prophlp
508 cd $(WXDIR)\utils\dialoged\src
509 nmake -f makefile.vc hlp
510 cd $(THISDIR)
511
512 # cd $(WXDIR)\utils\wxhelp\src
513 # nmake -f makefile.vc hlp
514 # cd $(WXDIR)\utils\tex2rtf\src
515 # nmake -f makefile.vc hlp
516 # cd $(WXDIR)\utils\wxgraph\src
517 # nmake -f makefile.vc hlp
518 # cd $(WXDIR)\utils\wxchart\src
519 # nmake -f makefile.vc hlp
520 # cd $(WXDIR)\utils\wxtree\src
521 # nmake -f makefile.vc hlp
522 # cd $(WXDIR)\utils\wxbuild\src
523 # nmake -f makefile.vc hlp
524 # cd $(WXDIR)\utils\wxgrid\src
525 # nmake -f makefile.vc hlp
526
527 allhtml: wxhtml portinghtml prophtml
528 cd $(WXDIR)\utils\dialoged\src
529 nmake -f makefile.vc html
530 cd $(THISDIR)
531
532 # nmake -f makefile.vc html
533 # cd $(WXDIR)\utils\dialoged\src
534 # nmake -f makefile.vc html
535 # cd $(WXDIR)\utils\hytext\src
536 # nmake -f makefile.vc html
537 # cd $(WXDIR)\utils\wxhelp\src
538 # nmake -f makefile.vc html
539 # cd $(WXDIR)\utils\tex2rtf\src
540 # nmake -f makefile.vc html
541 # cd $(WXDIR)\utils\wxgraph\src
542 # nmake -f makefile.vc html
543 # cd $(WXDIR)\utils\wxchart\src
544 # nmake -f makefile.vc html
545 # cd $(WXDIR)\utils\wxtree\src
546 # nmake -f makefile.vc html
547
548 allps: wxps referencps portingps propps
549 cd $(WXDIR)\utils\dialoged\src
550 nmake -f makefile.vc ps
551 cd $(THISDIR)
552
553 allpdfrtf: pdfrtf portingpdfrtf proppdfrtf
554 cd $(WXDIR)\utils\dialoged\src
555 nmake -f makefile.vc pdfrtf
556 cd $(THISDIR)
557
558 # cd $(WXDIR)\utils\wxhelp\src
559 # nmake -f makefile.vc ps
560 # cd $(WXDIR)\utils\tex2rtf\src
561 # nmake -f makefile.vc ps
562 # cd $(WXDIR)\utils\wxgraph\src
563 # nmake -f makefile.vc ps
564 # cd $(WXDIR)\utils\wxchart\src
565 # nmake -f makefile.vc ps
566 # cd $(WXDIR)\utils\wxtree\src
567 # nmake -f makefile.vc ps
568 # cd $(THISDIR)
569
570 $(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
571 cd $(DOCDIR)/latex/wx
572 -erase wx.ph
573 hc wx
574 move wx.hlp $(DOCDIR)\winhelp\wx.hlp
575 move wx.cnt $(DOCDIR)\winhelp\wx.cnt
576 cd $(THISDIR)
577
578 $(DOCDIR)/winhelp/porting.hlp: $(DOCDIR)/latex/porting/porting.rtf $(DOCDIR)/latex/porting/porting.hpj
579 cd $(DOCDIR)/latex/porting
580 -erase porting.ph
581 hc porting
582 move porting.hlp $(DOCDIR)\winhelp\porting.hlp
583 move porting.cnt $(DOCDIR)\winhelp\porting.cnt
584 cd $(THISDIR)
585
586 $(DOCDIR)/winhelp/prop.hlp: $(DOCDIR)/latex/proplist/prop.rtf $(DOCDIR)/latex/proplist/prop.hpj
587 cd $(DOCDIR)/latex/proplist
588 -erase prop.ph
589 hc prop
590 move prop.hlp $(DOCDIR)\winhelp\prop.hlp
591 move prop.cnt $(DOCDIR)\winhelp\prop.cnt
592 cd $(THISDIR)
593
594 $(DOCDIR)/winhelp/techref.hlp: $(DOCDIR)/latex/techref/techref.rtf $(DOCDIR)/latex/techref/techref.hpj
595 cd $(DOCDIR)/latex/techref
596 -erase techref.ph
597 hc techref
598 move techref.hlp $(DOCDIR)\winhelp\techref.hlp
599 move techref.cnt $(DOCDIR)\winhelp\techref.cnt
600 cd $(THISDIR)
601
602 $(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
603 cd $(DOCDIR)\latex\wx
604 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
605 cd $(THISDIR)
606
607 $(DOCDIR)/latex/porting/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
608 cd $(DOCDIR)\latex\porting
609 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/latex/porting/porting.rtf -twice -winhelp
610 cd $(THISDIR)
611
612 $(DOCDIR)/latex/proplist/prop.rtf: $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/body.tex $(DOCDIR)/latex/proplist/classes.tex $(DOCDIR)/latex/proplist/changes.tex
613 cd $(DOCDIR)\latex\proplist
614 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/prop.rtf -twice -winhelp
615 cd $(THISDIR)
616
617 $(DOCDIR)/latex/techref/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
618 cd $(DOCDIR)\latex\techref
619 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/latex/techref/techref.rtf -twice -winhelp
620 cd $(THISDIR)
621
622 $(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
623 cd $(DOCDIR)\latex\wx
624 -copy *.bmp *.wmf $(DOCDIR)\pdf
625 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
626 cd $(THISDIR)
627
628 $(DOCDIR)/pdf/porting.rtf: $(DOCDIR)/latex/porting/porting.tex
629 cd $(DOCDIR)\latex\porting
630 -copy *.bmp *.wmf $(DOCDIR)\pdf
631 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/porting/porting.tex $(DOCDIR)/pdf/porting.rtf -twice -rtf
632 cd $(THISDIR)
633
634 $(DOCDIR)/pdf/prop.rtf: $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/latex/proplist/body.tex $(DOCDIR)/latex/proplist/classes.tex $(DOCDIR)/latex/proplist/changes.tex
635 cd $(DOCDIR)\latex\proplist
636 -copy *.bmp *.wmf $(DOCDIR)\pdf
637 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/proplist/prop.tex $(DOCDIR)/pdf/prop.rtf -twice -rtf
638 cd $(THISDIR)
639
640 $(DOCDIR)/pdf/techref.rtf: $(DOCDIR)/latex/techref/techref.tex
641 cd $(DOCDIR)\latex\techref
642 -copy *.bmp *.wmf $(DOCDIR)\pdf
643 -start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/techref/techref.tex $(DOCDIR)/pdf/techref.rtf -twice -rtf
644 cd $(THISDIR)
645
646 $(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
647 cd $(DOCDIR)\latex\wx
648 -mkdir $(DOCDIR)\html\wx
649 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
650 -erase $(DOCDIR)\html\wx\*.con
651 -erase $(DOCDIR)\html\wx\*.ref
652 -erase $(DOCDIR)\latex\wx\*.con
653 -erase $(DOCDIR)\latex\wx\*.ref
654 cd $(THISDIR)
655
656 $(DOCDIR)\html\wx\wx.chm : $(DOCDIR)\html\wx\wx.htm $(DOCDIR)\html\wx\wx.hhp
657 cd $(DOCDIR)\html\wx
658 -hhc wx.hhp
659 cd $(THISDIR)
660
661
662 $(DOCDIR)\html\porting\port.htm: $(DOCDIR)\latex\porting\porting.tex
663 cd $(DOCDIR)\latex\porting
664 -mkdir $(DOCDIR)\html\porting
665 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\porting\porting.tex $(DOCDIR)\html\porting\port.htm -twice -html
666 -erase $(DOCDIR)\html\porting\*.con
667 -erase $(DOCDIR)\html\porting\*.ref
668 -erase $(DOCDIR)\latex\porting\*.con
669 -erase $(DOCDIR)\latex\porting\*.ref
670 cd $(THISDIR)
671
672 $(DOCDIR)\html\proplist\prop.htm: $(DOCDIR)\latex\proplist\prop.tex $(DOCDIR)\latex\proplist\body.tex $(DOCDIR)\latex\proplist\classes.tex $(DOCDIR)\latex\proplist\changes.tex
673 cd $(DOCDIR)\latex\proplist
674 -mkdir $(DOCDIR)\html\proplist
675 -start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\proplist\prop.tex $(DOCDIR)\html\proplist\prop.htm -twice -html
676 -erase $(DOCDIR)\html\proplist\*.con
677 -erase $(DOCDIR)\html\proplist\*.ref
678 -erase $(DOCDIR)\latex\proplist\*.con
679 -erase $(DOCDIR)\latex\proplist\*.ref
680 cd $(THISDIR)
681
682 $(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
683 cd $(WXDIR)\docs\latex\wx
684 -latex manual
685 -latex manual
686 -makeindx manual
687 -bibtex manual
688 -latex manual
689 -latex manual
690 cd $(THISDIR)
691
692 $(WXDIR)\docs\latex\porting\porting.dvi: $(DOCDIR)/latex/porting/porting.tex
693 cd $(WXDIR)\docs\latex\porting
694 -latex porting
695 -latex porting
696 -makeindx porting
697 -bibtex porting
698 -latex porting
699 -latex porting
700 cd $(THISDIR)
701
702 $(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
703 cd $(WXDIR)\docs\latex\wx
704 -dvips32 -o wx.ps manual
705 move wx.ps $(WXDIR)\docs\ps\wx.ps
706 cd $(THISDIR)
707
708 $(WXDIR)\docs\ps\porting.ps: $(WXDIR)\docs\latex\porting\porting.dvi
709 cd $(WXDIR)\docs\latex\porting
710 -dvips32 -o porting.ps porting
711 move porting.ps $(WXDIR)\docs\ps\porting.ps
712 cd $(THISDIR)
713
714 $(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
715 cd $(WXDIR)\docs\latex\wx
716 -latex referenc
717 -latex referenc
718 -makeindx referenc
719 -bibtex referenc
720 -latex referenc
721 -latex referenc
722 cd $(THISDIR)
723
724 $(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
725 cd $(WXDIR)\docs\latex\wx
726 -dvips32 -o referenc.ps referenc
727 move referenc.ps $(WXDIR)\docs\ps\referenc.ps
728 cd $(THISDIR)
729
730 # In order to force document reprocessing
731 touchmanual:
732 -touch $(WXDIR)\docs\latex\wx\manual.tex
733
734 updatedocs: touchmanual alldocs
735
736 # Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
737 # Office StartUp folder, and PDFMaker should be installed.
738 updatepdf: # touchmanual pdfrtf
739 start $(WAITFLAG) "winword d:\wx2\wxWindows\docs\latex\pdf\wx.rtf /mGeneratePDF"
740