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