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