]> git.saurik.com Git - wxWidgets.git/blob - build/bakefiles/wx.bkl
006715349853bc320825de2c8aa1a74552cac924
[wxWidgets.git] / build / bakefiles / wx.bkl
1 <?xml version="1.0" ?>
2 <!-- $Id$ -->
3
4
5 <!-- Master bakefile for wxWidgets -->
6
7 <makefile>
8
9 <!-- make sure setup.h is created as soon as possible: -->
10 <phony id="setup_h" cond="FORMAT!='autoconf'">
11 <dependency-of>all</dependency-of>
12 </phony>
13
14 <set var="BUILDING_LIB">1</set>
15
16 <!-- common rules, names etc. for wx: -->
17 <include file="common.bkl"/>
18
19 <!-- list of files sorted into categories: -->
20 <include file="files.bkl"/>
21
22 <!-- wxWidgets variant where everything is in one library: -->
23 <include file="monolithic.bkl"/>
24 <!-- ...and when there are multiple libraries: -->
25 <include file="multilib.bkl"/>
26
27 <if cond="FORMAT in ['msvc6prj','msevc4prj']">
28 <set var="MSVC6PRJ_MERGED_TARGETS">
29 <if cond="MONOLITHIC=='0'">$(MSVC6PRJ_MERGED_TARGETS_MULTILIB)</if>
30 <if cond="MONOLITHIC=='1'">$(MSVC6PRJ_MERGED_TARGETS_MONOLIB)</if>
31 </set>
32 </if>
33
34 <!-- OpenGL canvas is built as separate library in both cases: -->
35 <include file="opengl.bkl"/>
36 <!-- Dynamically loadable plugins: -->
37 <include file="plugins.bkl"/>
38
39 <!-- Samples target (not dependency of 'all'): -->
40 <subproject id="samples">
41 <installable>no</installable>
42 <dir cond="FORMAT=='autoconf'">samples</dir>
43 <dir cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">../../samples</dir>
44 </subproject>
45
46 <if cond="FORMAT=='autoconf'">
47 <!-- "make install": -->
48
49 <data-files>
50 <files>wxwin.m4</files>
51 <install-to>$(DATADIR)/aclocal</install-to>
52 </data-files>
53
54 <data-files-tg id="install-afm" cond="USE_GUI=='1'">
55 <files>misc/afm/*.afm</files>
56 <install-to>$(DATADIR)/wx/$(WXVER_MAJOR).$(WXVER_MINOR)/afm</install-to>
57 </data-files-tg>
58 <data-files-tg id="install-gsafm" cond="USE_GUI=='1'">
59 <files>misc/gs_afm/*.afm</files>
60 <install-to>$(DATADIR)/wx/$(WXVER_MAJOR).$(WXVER_MINOR)/gs_afm</install-to>
61 </data-files-tg>
62
63 <action id="install-wxconfig">
64 <dependency-of>install</dependency-of>
65 <command>
66 $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
67 $(INSTALL_DIR) $(DESTDIR)$(LIBDIR)/wx/config
68 $(INSTALL_PROGRAM) lib/wx/config/@WXCONFIG_DATA_FILE@ $(DESTDIR)$(LIBDIR)/wx/config
69 (cd $(DESTDIR)$(LIBDIR)/wx/config &amp;&amp; rm -f $(TOOLCHAIN_NAME) &amp;&amp; $(LN_S) @WXCONFIG_DATA_FILE@ $(TOOLCHAIN_NAME))
70 $(INSTALL_PROGRAM) wx-config $(DESTDIR)$(BINDIR)
71 (cd $(DESTDIR)$(BINDIR) &amp;&amp; rm -f wx$(TOOLCHAIN_NAME)-config &amp;&amp; $(LN_S) wx-config wx$(TOOLCHAIN_NAME)-config)
72 </command>
73 </action>
74
75 <data-files>
76 <srcdir>$(BUILDDIR)</srcdir>
77 <files>lib/wx/include/$(TOOLCHAIN_NAME)/wx/setup.h</files>
78 <install-to>$(LIBDIR)/wx/include/$(TOOLCHAIN_NAME)/wx</install-to>
79 </data-files>
80
81 <headers>
82 <srcdir>$(SRCDIR)/include</srcdir>
83 <files>$(ALL_HEADERS)</files>
84 <install-to>
85 $(INCLUDEDIR)/wx-$(WXVER_MAJOR).$(WXVER_MINOR)
86 </install-to>
87 </headers>
88
89 <!-- Locales: -->
90 <using module="gettext"/>
91 <gettext-catalogs id="locale">
92 <srcdir>$(SRCDIR)/locale</srcdir>
93 <catalog-name>wxstd</catalog-name>
94 <linguas>
95 ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk
96 zh zh_CN zh_TW
97 </linguas>
98 <install-to>$(LOCALEDIR)</install-to>
99 </gettext-catalogs>
100
101 <!-- Mac OS X resources: -->
102 <set var="MACOS_R">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r</set>
103 <set var="MACOS_RSRC">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).rsrc</set>
104 <action id="macos-res" cond="TOOLKIT=='MAC'">
105 <dependency-of>all</dependency-of>
106 <set var="__targetname">$(MACOS_R)</set>
107 <command>
108 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/mac/carbon/apprsrc.r $(top_srcdir)/src/mac/carbon/carbrsrc.r $(top_srcdir)/src/mac/carbon/corersrc.r -o $(MACOS_RSRC)
109 $(DEREZ) $(MACOS_RSRC) Carbon.r -useDF >$(MACOS_R)
110 </command>
111 <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
112 </action>
113 <action id="macos-res-install" cond="TOOLKIT=='MAC'">
114 <dependency-of>install</dependency-of>
115 <depends>macos-res</depends>
116 <command>
117 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
118 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
119 </command>
120 </action>
121 <action id="cocoa-res" cond="TOOLKIT=='COCOA'">
122 <dependency-of>all</dependency-of>
123 <set var="__targetname">$(MACOS_R)</set>
124 <command>
125 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
126 $(DEREZ) $(MACOS_RSRC) -useDF >$(MACOS_R)
127 </command>
128 <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
129 </action>
130 <action id="cocoa-res-install" cond="TOOLKIT=='COCOA'">
131 <dependency-of>install</dependency-of>
132 <depends>macos-res</depends>
133 <command>
134 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
135 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
136 </command>
137 </action>
138
139 </if>
140
141
142 <!-- copy setup.h on Windows: -->
143 <if cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">
144 <mkdir id="libdir">
145 <dir>$(LIBDIRNAME)</dir>
146 </mkdir>
147 <mkdir id="libdir_setup">
148 <depends>libdir</depends>
149 <dir>$(SETUPHDIR)</dir>
150 </mkdir>
151 <mkdir id="libdir_setup_wx">
152 <depends>libdir_setup</depends>
153 <dependency-of>setup_h</dependency-of>
154 <dir>$(SETUPHDIR)/wx</dir>
155 </mkdir>
156
157 <set var="SETUP_H_SUBDIR">
158 <if cond="WXUNIV=='1'">univ</if>
159 <if cond="WXUNIV=='0'">msw</if>
160 </set>
161
162 <copy-file-to-file-if-not-exist id="master_setup.h">
163 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src>
164 <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst>
165 <dependency-of>setup_h</dependency-of>
166 </copy-file-to-file-if-not-exist>
167 <copy-file-to-file-if-not-exist id="setup.h">
168 <dependency-of>setup_h</dependency-of>
169 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</src>
170 <dst>$(SETUPHDIR)/wx/setup.h</dst>
171 </copy-file-to-file-if-not-exist>
172
173 </if>
174
175
176 <if cond="FORMAT=='autoconf'">
177
178 <!-- Show this banner after installation: -->
179 <modify-target target="install">
180 <command>
181 @echo " "
182 @echo " ------------------------------------------------------"
183 @echo " "
184 @echo " The installation of wxWidgets is finished. On certain"
185 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
186 @echo " if you installed a shared library and also modify the"
187 @echo " LD_LIBRARY_PATH (or equivalent) environment variable."
188 @echo " "
189 @echo " wxWidgets comes with no guarantees and doesn't claim"
190 @echo " to be suitable for any purpose."
191 @echo " "
192 @echo " Read the wxWidgets Licence on licencing conditions."
193 @echo " "
194 @echo " ------------------------------------------------------"
195 @echo " "
196 </command>
197 </modify-target>
198
199 <!-- add "make dist" target to autoconf: -->
200 <set var="VARS_DONT_ELIMINATE" append="1">
201 ALL_BASE_SOURCES WX_VERSION
202 </set>
203 <fragment format="autoconf" file="make_dist.mk"/>
204
205 </if>
206
207 <include file="build_cfg.bkl"/>
208
209 </makefile>