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