]>
Commit | Line | Data |
---|---|---|
df801fc6 JS |
1 | # |
2 | # File: makefile.b32 | |
3 | # Author: Julian Smart | |
4 | # Created: 2000 | |
5 | # Updated: | |
6 | # Copyright: | |
7 | # | |
8 | # Makefile : Builds BC++ library for 32-bit BC++ | |
9 | ||
10 | WXDIR = $(WXWIN) | |
11 | ||
62f1dc82 GT |
12 | |
13 | # Do not specify the 'libxml' directory on | |
14 | # this -I line, as the #includes use | |
15 | # <libxml/xxxx.h>. If your libxml is installed | |
16 | # in "d:\libxml\libxml2-2.1.1\libxml" you would use: | |
ecdce304 VS |
17 | # wxLIBXMLDIR=/Id:\libxml\libxml2-2.1.1\include |
18 | wxLIBXMLDIR=/Ic:\progra~1\libxml\libxml2-2.3.3\include | |
62f1dc82 GT |
19 | |
20 | !if "$(wxLIBXMLDIR)" == "" | |
21 | !message | |
22 | !message SETUP REQUIRED | |
23 | !message | |
24 | !message You must set the wxLIBXMLDIR variable in makefile.b32 before compiling | |
25 | !message | |
26 | !message If you do not have the libxml library, you will need to obtain & install | |
27 | !message it before compiling the wxXML code. You can obtain libxml from: | |
28 | !message http://www.xmlsoft.org | |
29 | !message | |
30 | !error | |
31 | !endif | |
32 | ||
33 | # Set this to where your libxml directory is | |
34 | EXTRACPPFLAGS=$(wxLIBXMLDIR) | |
35 | ||
df801fc6 JS |
36 | |
37 | LIBTARGET=$(WXDIR)\lib\wxxml.lib | |
38 | ||
39 | OBJECTS=xml.obj xmlbin.obj xmlbinz.obj xmlpars.obj xmlres.obj xmlrsall.obj \ | |
40 | xh_bttn.obj xh_chckb.obj xh_chckl.obj xh_choic.obj xh_combo.obj xh_dlg.obj \ | |
41 | xh_gauge.obj xh_html.obj xh_menu.obj xh_notbk.obj xh_panel.obj xh_radbt.obj \ | |
42 | xh_radbx.obj xh_sizer.obj xh_slidr.obj xh_spin.obj xh_stbmp.obj xh_sttxt.obj \ | |
28c0bed3 VS |
43 | xh_text.obj xh_listb.obj xh_toolb.obj xh_stlin.obj xh_bmp.obj \ |
44 | xh_bmpbt.obj xh_cald.obj xh_listc.obj xh_scrol.obj xh_stbox.obj \ | |
663af052 | 45 | xh_tree.obj xh_unkwn.obj xh_frame.obj |
df801fc6 JS |
46 | |
47 | !include $(WXDIR)\src\makelib.b32 | |
48 |