]>
Commit | Line | Data |
---|---|---|
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 VS |
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 | <!-- 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"/> |
4d264332 VS |
26 | <!-- OpenGL canvas is built as separate library in both cases: --> |
27 | <include file="opengl.bkl"/> | |
ddf98968 VS |
28 | |
29 | ||
30 | <!-- Samples target (not dependency of 'all'): --> | |
ddf98968 | 31 | <subproject id="samples"> |
289919bf VS |
32 | <installable>no</installable> |
33 | <dir cond="FORMAT=='autoconf'">samples</dir> | |
34 | <dir cond="FORMAT!='autoconf' and TOOLKIT=='MSW'">../../samples</dir> | |
ddf98968 | 35 | </subproject> |
ddf98968 VS |
36 | |
37 | <if cond="FORMAT=='autoconf'"> | |
38 | <!-- "make install": --> | |
39 | ||
40 | <data-files> | |
41 | <files>wxwin.m4</files> | |
42 | <install-to>$(DATADIR)/aclocal</install-to> | |
43 | </data-files> | |
44 | ||
45 | <data-files-tg id="install-afm" cond="USE_GUI=='1'"> | |
46 | <files>misc/afm/*.afm</files> | |
47 | <install-to>$(DATADIR)/wx/$(WXVER_MAJOR).$(WXVER_MINOR)/afm</install-to> | |
48 | </data-files-tg> | |
49 | <data-files-tg id="install-gsafm" cond="USE_GUI=='1'"> | |
50 | <files>misc/gs_afm/*.afm</files> | |
51 | <install-to>$(DATADIR)/wx/$(WXVER_MAJOR).$(WXVER_MINOR)/gs_afm</install-to> | |
52 | </data-files-tg> | |
53 | ||
54 | <action id="install-wxconfig"> | |
55 | <dependency-of>install</dependency-of> | |
56 | <command> | |
57 | $(INSTALL_DIR) $(BINDIR) | |
58 | $(INSTALL_PROGRAM) wx$(TOOLCHAIN_NAME)-config $(BINDIR) | |
59 | (cd $(BINDIR) && rm -f wx-config && $(LN_S) wx$(TOOLCHAIN_NAME)-config wx-config) | |
60 | </command> | |
61 | </action> | |
62 | ||
63 | <data-files> | |
64 | <srcdir>$(BUILDDIR)</srcdir> | |
65 | <files>lib/wx/include/$(TOOLCHAIN_NAME)/wx/setup.h</files> | |
66 | <install-to>$(LIBDIR)/wx/include/$(TOOLCHAIN_NAME)/wx</install-to> | |
67 | </data-files> | |
68 | ||
69 | <headers> | |
70 | <srcdir>$(SRCDIR)/include</srcdir> | |
71 | <files>$(ALL_HEADERS)</files> | |
72 | </headers> | |
73 | ||
065a32a5 VS |
74 | <!-- Locales: --> |
75 | <using module="gettext"/> | |
76 | <gettext-catalogs id="locale"> | |
77 | <srcdir>$(SRCDIR)/locale</srcdir> | |
78 | <catalog-name>wxstd</catalog-name> | |
79 | <linguas> | |
80 | ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk | |
81 | zh zh_CN zh_TW | |
82 | </linguas> | |
83 | <install-to>$(LOCALEDIR)</install-to> | |
84 | </gettext-catalogs> | |
ddf98968 VS |
85 | |
86 | <!-- Mac OS X resources: --> | |
87 | <set var="MACOS_R">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).r</set> | |
88 | <set var="MACOS_RSRC">lib/libwx_$(TOOLCHAIN_NAME).$(WXSOVERSION[0]).rsrc</set> | |
89 | <action id="macos-res" cond="TOOLKIT=='MAC'"> | |
90 | <dependency-of>all</dependency-of> | |
91 | <set var="__targetname">$(MACOS_R)</set> | |
92 | <command> | |
622dca25 | 93 | $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/mac/apprsrc.r $(top_srcdir)/src/mac/carbrsrc.r $(top_srcdir)/src/mac/corersrc.r -o $(MACOS_RSRC) |
ddf98968 VS |
94 | $(DEREZ) $(MACOS_RSRC) Carbon.r -useDF >$(MACOS_R) |
95 | </command> | |
96 | <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files> | |
97 | </action> | |
98 | <action id="macos-res-install" cond="TOOLKIT=='MAC'"> | |
99 | <dependency-of>install</dependency-of> | |
100 | <depends>macos-res</depends> | |
101 | <command> | |
102 | $(INSTALL_DATA) $(MACOS_R) $(LIBDIR) | |
103 | $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR) | |
104 | </command> | |
105 | </action> | |
25a4727e DE |
106 | <action id="cocoa-res" cond="TOOLKIT=='COCOA'"> |
107 | <dependency-of>all</dependency-of> | |
108 | <set var="__targetname">$(MACOS_R)</set> | |
109 | <command> | |
110 | $(RESCOMP) -d __UNIX__ -useDF $(top_srcdir)/src/cocoa/dummy.r -o $(MACOS_RSRC) | |
111 | $(DEREZ) $(MACOS_RSRC) -useDF >$(MACOS_R) | |
112 | </command> | |
113 | <clean-files>$(MACOS_RSRC) $(MACOS_R)</clean-files> | |
114 | </action> | |
115 | <action id="cocoa-res-install" cond="TOOLKIT=='COCOA'"> | |
116 | <dependency-of>install</dependency-of> | |
117 | <depends>macos-res</depends> | |
118 | <command> | |
119 | $(INSTALL_DATA) $(MACOS_R) $(LIBDIR) | |
120 | $(INSTALL_DATA) $(MACOS_RSRC) $(LIBDIR) | |
121 | </command> | |
122 | </action> | |
ddf98968 VS |
123 | |
124 | </if> | |
125 | ||
4cd612f9 VS |
126 | |
127 | <!-- copy setup.h on Windows: --> | |
128 | <if cond="FORMAT!='autoconf' and TOOLKIT=='MSW'"> | |
129 | <mkdir id="libdir"> | |
47652170 VS |
130 | <dir>$(LIBDIRNAME)</dir> |
131 | </mkdir> | |
ee929bcf | 132 | <mkdir id="libdir_setup"> |
47652170 | 133 | <depends>libdir</depends> |
ee929bcf VS |
134 | <dir>$(SETUPHDIR)</dir> |
135 | </mkdir> | |
136 | <mkdir id="libdir_setup_wx"> | |
137 | <depends>libdir_setup</depends> | |
6ee3c064 | 138 | <dependency-of>setup_h</dependency-of> |
ee929bcf | 139 | <dir>$(SETUPHDIR)/wx</dir> |
4cd612f9 | 140 | </mkdir> |
399a8824 | 141 | |
ee929bcf | 142 | <set var="SETUP_H_SUBDIR"> |
399a8824 VS |
143 | <if cond="WXUNIV=='1'">univ</if> |
144 | <if cond="WXUNIV=='0'">msw</if> | |
145 | </set> | |
47652170 | 146 | |
399a8824 | 147 | <copy-file-to-file-if-not-exist id="master_setup.h"> |
ee929bcf VS |
148 | <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src> |
149 | <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst> | |
b0251b16 | 150 | <dependency-of>setup_h</dependency-of> |
6ee3c064 VS |
151 | </copy-file-to-file-if-not-exist> |
152 | <copy-file-to-file-if-not-exist id="setup.h"> | |
153 | <dependency-of>setup_h</dependency-of> | |
ee929bcf VS |
154 | <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</src> |
155 | <dst>$(SETUPHDIR)/wx/setup.h</dst> | |
6ee3c064 | 156 | </copy-file-to-file-if-not-exist> |
4cd612f9 VS |
157 | </if> |
158 | ||
289919bf | 159 | |
289919bf | 160 | <if cond="FORMAT=='autoconf'"> |
065a32a5 VS |
161 | |
162 | <!-- Show this banner after installation: --> | |
289919bf VS |
163 | <modify-target target="install"> |
164 | <command> | |
165 | @echo " " | |
d424f5ae VS |
166 | @echo " ------------------------------------------------------" |
167 | @echo " " | |
289919bf VS |
168 | @echo " The installation of wxWindows is finished. On certain" |
169 | @echo " platforms (e.g. Linux) you'll now have to run ldconfig" | |
170 | @echo " if you installed a shared library and also modify the" | |
171 | @echo " LD_LIBRARY_PATH (or equivalent) environment variable." | |
172 | @echo " " | |
173 | @echo " wxWindows comes with no guarantees and doesn't claim" | |
174 | @echo " to be suitable for any purpose." | |
175 | @echo " " | |
176 | @echo " Read the wxWindows Licence on licencing conditions." | |
d424f5ae VS |
177 | @echo " " |
178 | @echo " ------------------------------------------------------" | |
289919bf VS |
179 | @echo " " |
180 | </command> | |
181 | </modify-target> | |
289919bf | 182 | |
065a32a5 | 183 | <!-- add "make dist" target to autoconf: --> |
ca58c9bb VS |
184 | <set var="VARS_DONT_ELIMINATE" append="1"> |
185 | ALL_BASE_SOURCES WX_VERSION | |
186 | </set> | |
187 | <fragment format="autoconf" file="make_dist.mk"/> | |
065a32a5 | 188 | |
ca58c9bb VS |
189 | </if> |
190 | ||
ddf98968 | 191 | </makefile> |