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