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