]> git.saurik.com Git - wxWidgets.git/blame - build/bakefiles/wx.bkl
added wx/msw/wince/libraries.h to workaround SDK differences problems
[wxWidgets.git] / build / bakefiles / wx.bkl
CommitLineData
ddf98968
VS
1<?xml version="1.0" ?>
2<!-- $Id$ -->
3
4
5<!-- Master bakefile for wxWindows -->
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
ddf98968
VS
22 <!-- wxWindows variant where everything is in one library: -->
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>
43 <dir cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">../../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>
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>
004779cd
VS
66 $(INSTALL_DIR) $(DESTDIR)$(BINDIR)
67 $(INSTALL_PROGRAM) wx$(TOOLCHAIN_NAME)-config $(DESTDIR)$(BINDIR)
68 (cd $(DESTDIR)$(BINDIR) &amp;&amp; rm -f wx-config &amp;&amp; $(LN_S) wx$(TOOLCHAIN_NAME)-config wx-config)
ddf98968
VS
69 </command>
70 </action>
71
72 <data-files>
73 <srcdir>$(BUILDDIR)</srcdir>
74 <files>lib/wx/include/$(TOOLCHAIN_NAME)/wx/setup.h</files>
75 <install-to>$(LIBDIR)/wx/include/$(TOOLCHAIN_NAME)/wx</install-to>
76 </data-files>
77
78 <headers>
79 <srcdir>$(SRCDIR)/include</srcdir>
80 <files>$(ALL_HEADERS)</files>
81 </headers>
82
065a32a5
VS
83 <!-- Locales: -->
84 <using module="gettext"/>
85 <gettext-catalogs id="locale">
86 <srcdir>$(SRCDIR)/locale</srcdir>
87 <catalog-name>wxstd</catalog-name>
88 <linguas>
89 ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk
90 zh zh_CN zh_TW
91 </linguas>
92 <install-to>$(LOCALEDIR)</install-to>
93 </gettext-catalogs>
ddf98968
VS
94
95 <!-- Mac OS X resources: -->
96 <set var="MACOS_R">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r</set>
97 <set var="MACOS_RSRC">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).rsrc</set>
98 <action id="macos-res" cond="TOOLKIT=='MAC'">
99 <dependency-of>all</dependency-of>
100 <set var="__targetname">$(MACOS_R)</set>
101 <command>
bdcc580c 102 $(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
103 $(DEREZ) $(MACOS_RSRC) Carbon.r -useDF >$(MACOS_R)
104 </command>
105 <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
106 </action>
107 <action id="macos-res-install" cond="TOOLKIT=='MAC'">
108 <dependency-of>install</dependency-of>
109 <depends>macos-res</depends>
110 <command>
111 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
112 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
113 </command>
114 </action>
25a4727e
DE
115 <action id="cocoa-res" cond="TOOLKIT=='COCOA'">
116 <dependency-of>all</dependency-of>
117 <set var="__targetname">$(MACOS_R)</set>
118 <command>
119 $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC)
120 $(DEREZ) $(MACOS_RSRC) -useDF >$(MACOS_R)
121 </command>
122 <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files>
123 </action>
124 <action id="cocoa-res-install" cond="TOOLKIT=='COCOA'">
125 <dependency-of>install</dependency-of>
126 <depends>macos-res</depends>
127 <command>
128 $(INSTALL_DATA) $(MACOS_R) $(LIBDIR)
129 $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR)
130 </command>
131 </action>
ddf98968
VS
132
133 </if>
134
4cd612f9
VS
135
136 <!-- copy setup.h on Windows: -->
137 <if cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">
138 <mkdir id="libdir">
47652170
VS
139 <dir>$(LIBDIRNAME)</dir>
140 </mkdir>
ee929bcf 141 <mkdir id="libdir_setup">
47652170 142 <depends>libdir</depends>
ee929bcf
VS
143 <dir>$(SETUPHDIR)</dir>
144 </mkdir>
145 <mkdir id="libdir_setup_wx">
146 <depends>libdir_setup</depends>
6ee3c064 147 <dependency-of>setup_h</dependency-of>
ee929bcf 148 <dir>$(SETUPHDIR)/wx</dir>
4cd612f9 149 </mkdir>
399a8824 150
ee929bcf 151 <set var="SETUP_H_SUBDIR">
399a8824
VS
152 <if cond="WXUNIV=='1'">univ</if>
153 <if cond="WXUNIV=='0'">msw</if>
154 </set>
47652170 155
399a8824 156 <copy-file-to-file-if-not-exist id="master_setup.h">
ee929bcf
VS
157 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src>
158 <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst>
b0251b16 159 <dependency-of>setup_h</dependency-of>
6ee3c064
VS
160 </copy-file-to-file-if-not-exist>
161 <copy-file-to-file-if-not-exist id="setup.h">
162 <dependency-of>setup_h</dependency-of>
ee929bcf
VS
163 <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</src>
164 <dst>$(SETUPHDIR)/wx/setup.h</dst>
6ee3c064 165 </copy-file-to-file-if-not-exist>
5d1000e7 166
4cd612f9
VS
167 </if>
168
289919bf 169
289919bf 170 <if cond="FORMAT=='autoconf'">
065a32a5
VS
171
172 <!-- Show this banner after installation: -->
289919bf
VS
173 <modify-target target="install">
174 <command>
175@echo " "
d424f5ae
VS
176@echo " ------------------------------------------------------"
177@echo " "
289919bf
VS
178@echo " The installation of wxWindows is finished. On certain"
179@echo " platforms (e.g. Linux) you'll now have to run ldconfig"
180@echo " if you installed a shared library and also modify the"
181@echo " LD_LIBRARY_PATH (or equivalent) environment variable."
182@echo " "
183@echo " wxWindows comes with no guarantees and doesn't claim"
184@echo " to be suitable for any purpose."
185@echo " "
186@echo " Read the wxWindows Licence on licencing conditions."
d424f5ae
VS
187@echo " "
188@echo " ------------------------------------------------------"
289919bf
VS
189@echo " "
190 </command>
191 </modify-target>
289919bf 192
065a32a5 193 <!-- add "make dist" target to autoconf: -->
ca58c9bb
VS
194 <set var="VARS_DONT_ELIMINATE" append="1">
195 ALL_BASE_SOURCES WX_VERSION
196 </set>
197 <fragment format="autoconf" file="make_dist.mk"/>
065a32a5 198
ca58c9bb 199 </if>
5d1000e7
VS
200
201 <include file="build_cfg.bkl"/>
ca58c9bb 202
ddf98968 203</makefile>