]>
Commit | Line | Data |
---|---|---|
ca58c9bb VS |
1 | # |
2 | # "make dist" target implementation: | |
ca58c9bb VS |
3 | # |
4 | ||
5 | ||
6 | ############################# Dirs ################################# | |
7 | ||
8 | WXDIR = $(top_srcdir) | |
9 | ||
10 | # Subordinate library possibilities | |
11 | ||
12 | SRCDIR = $(WXDIR)/src | |
13 | GENDIR = $(WXDIR)/src/generic | |
14 | COMMDIR = $(WXDIR)/src/common | |
15 | HTMLDIR = $(WXDIR)/src/html | |
16 | UNIXDIR = $(WXDIR)/src/unix | |
17 | PNGDIR = $(WXDIR)/src/png | |
18 | JPEGDIR = $(WXDIR)/src/jpeg | |
19 | TIFFDIR = $(WXDIR)/src/tiff | |
20 | ZLIBDIR = $(WXDIR)/src/zlib | |
21 | REGEXDIR = $(WXDIR)/src/regex | |
356583d4 | 22 | EXPATDIR = $(WXDIR)/src/expat |
ca58c9bb VS |
23 | GTKDIR = $(WXDIR)/src/gtk |
24 | X11DIR = $(WXDIR)/src/x11 | |
25 | X11INC = $(WXDIR)/include/wx/x11 | |
26 | MGLDIR = $(WXDIR)/src/mgl | |
27 | MOTIFDIR = $(WXDIR)/src/motif | |
28 | MSWDIR = $(WXDIR)/src/msw | |
29 | PMDIR = $(WXDIR)/src/os2 | |
30 | MACDIR = $(WXDIR)/src/mac | |
31 | COCOADIR = $(WXDIR)/src/cocoa | |
32 | ODBCDIR = $(WXDIR)/src/iodbc | |
33 | FTDIR = $(WXDIR)/src/freetype | |
34 | INCDIR = $(WXDIR)/include | |
35 | SAMPDIR = $(WXDIR)/samples | |
36 | DEMODIR = $(WXDIR)/demos | |
37 | UTILSDIR = $(WXDIR)/utils | |
38 | MISCDIR = $(WXDIR)/misc | |
39 | ||
40 | DOCDIR = $(WXDIR)/docs | |
41 | INTLDIR = $(WXDIR)/locale | |
42 | ||
43 | TOOLKITDIR = $(TOOLKIT_LOWERCASE) | |
44 | ||
45 | ########################## Archive name ############################### | |
46 | ||
47 | # append a version suffix x.y.z to all file names | |
48 | WXARCHIVE=@DISTDIR@-$(WX_VERSION).tar.gz | |
49 | WXGLARCHIVE=@DISTDIR@-gl-$(WX_VERSION).tar.gz | |
50 | WXSAMPLES=wx$(TOOLKIT)-samples-$(WX_VERSION).tar.gz | |
51 | WXDEMOS=wx$(TOOLKIT)-demos-$(WX_VERSION).tar.gz | |
52 | WXARCHIVE_ZIP=wxMSW-$(WX_VERSION).zip | |
53 | ||
54 | WXARCHIVE_BZIP=@DISTDIR@-$(WX_VERSION).tar.bz2 | |
55 | WXGLARCHIVE_BZIP=@DISTDIR@-gl-$(WX_VERSION).tar.bz2 | |
56 | WXSAMPLES_BZIP=wx$(TOOLKIT)-samples-$(WX_VERSION).tar.bz2 | |
57 | WXDEMOS_BZIP=wx$(TOOLKIT)-demos-$(WX_VERSION).tar.bz2 | |
58 | ||
59 | DISTDIRNAME=@DISTDIR@-$(WX_VERSION) | |
60 | DISTDIR=./_dist_dir/$(DISTDIRNAME) | |
61 | ||
62 | ||
63 | ########################## make dist rules ############################### | |
64 | ||
65 | # this target should copy only the files common to really all ports (including | |
66 | # wxBase) to the dist dir | |
67 | ALL_DIST: distrib_clean | |
68 | mkdir _dist_dir | |
69 | mkdir $(DISTDIR) | |
a7716111 RL |
70 | cp $(WXDIR)/configure.in $(DISTDIR) |
71 | cp $(WXDIR)/configure $(DISTDIR) | |
72 | cp $(WXDIR)/autoconf_inc.m4 $(DISTDIR) | |
ca58c9bb VS |
73 | cp $(WXDIR)/wxwin.m4 $(DISTDIR) |
74 | cp $(WXDIR)/aclocal.m4 $(DISTDIR) | |
75 | cp $(WXDIR)/config.sub $(DISTDIR) | |
76 | cp $(WXDIR)/config.guess $(DISTDIR) | |
77 | cp $(WXDIR)/install-sh $(DISTDIR) | |
78 | cp $(WXDIR)/mkinstalldirs $(DISTDIR) | |
79 | cp $(WXDIR)/wx-config.in $(DISTDIR) | |
ceec2216 | 80 | cp $(WXDIR)/wx-config-inplace.in $(DISTDIR) |
ca58c9bb VS |
81 | cp $(WXDIR)/version-script.in $(DISTDIR) |
82 | cp $(WXDIR)/setup.h.in $(DISTDIR) | |
83 | cp $(WXDIR)/setup.h_vms $(DISTDIR) | |
84 | cp $(WXDIR)/descrip.mms $(DISTDIR) | |
85 | cp $(WXDIR)/Makefile.in $(DISTDIR) | |
86 | cp $(WXDIR)/wxBase.spec $(DISTDIR) | |
87 | cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB | |
88 | cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt | |
89 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
90 | mkdir $(DISTDIR)/lib | |
91 | cp $(WXDIR)/lib/vms.opt $(DISTDIR)/lib | |
92 | cp $(WXDIR)/lib/vms_gtk.opt $(DISTDIR)/lib | |
93 | mkdir $(DISTDIR)/src | |
94 | # temp hack for common/execcmn.cpp: it's not supported by tmake | |
95 | # yet (it's a header-like file but in src/common directory and it | |
96 | # shouldn't be distributed...) | |
97 | mkdir $(DISTDIR)/src/common | |
98 | cp $(SRCDIR)/common/execcmn.cpp $(DISTDIR)/src/common | |
99 | mkdir $(DISTDIR)/src/xml | |
100 | cp $(SRCDIR)/xml/*.cpp $(DISTDIR)/src/xml | |
101 | mkdir $(DISTDIR)/src/zlib | |
102 | cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib | |
103 | cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib | |
104 | cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib | |
22fa70e0 | 105 | # cp $(ZLIBDIR)/*.mms $(DISTDIR)/src/zlib |
ca58c9bb VS |
106 | mkdir $(DISTDIR)/src/regex |
107 | cp $(REGEXDIR)/*.h $(DISTDIR)/src/regex | |
ca58c9bb | 108 | cp $(REGEXDIR)/*.c $(DISTDIR)/src/regex |
ca58c9bb VS |
109 | cp $(REGEXDIR)/COPYRIGHT $(DISTDIR)/src/regex |
110 | cp $(REGEXDIR)/README $(DISTDIR)/src/regex | |
356583d4 VS |
111 | cp -Rf $(EXPATDIR) $(DISTDIR)/src |
112 | (cd $(DISTDIR)/src/expat ; rm -rf `find -name CVS`) | |
6eb90f82 VS |
113 | mkdir $(DISTDIR)/src/iodbc |
114 | cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc | |
115 | cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc | |
116 | cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc | |
117 | cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc | |
118 | cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc | |
119 | cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc | |
120 | cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc | |
ca58c9bb VS |
121 | # copy some files from include/ that are not installed: |
122 | mkdir $(DISTDIR)/include | |
123 | mkdir $(DISTDIR)/include/wx | |
124 | cp $(INCDIR)/wx/fmappriv.h $(DISTDIR)/include/wx | |
125 | ||
126 | # this target is the common part of distribution script for all GUI toolkits, | |
127 | # but is not used when building wxBase distribution | |
128 | ALL_GUI_DIST: ALL_DIST | |
ca58c9bb VS |
129 | cp $(DOCDIR)/readme.txt $(DISTDIR)/README.txt |
130 | cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt | |
131 | if test -f $(DOCDIR)/$(TOOLKITDIR)/changes.txt ; then \ | |
132 | cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES-$(TOOLKIT).txt ; fi | |
133 | cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README-$(TOOLKIT).txt | |
134 | if test -f $(DOCDIR)/$(TOOLKITDIR)/todo.txt ; then \ | |
135 | cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt ; fi | |
136 | mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR) | |
137 | mkdir $(DISTDIR)/include/wx/generic | |
138 | mkdir $(DISTDIR)/include/wx/html | |
139 | mkdir $(DISTDIR)/include/wx/protocol | |
140 | mkdir $(DISTDIR)/include/wx/unix | |
141 | mkdir $(DISTDIR)/include/wx/xml | |
fdec3549 | 142 | mkdir $(DISTDIR)/include/wx/xrc |
ca58c9bb VS |
143 | cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx |
144 | cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx | |
145 | cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx | |
146 | cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic | |
147 | cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html | |
148 | cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix | |
149 | cp $(INCDIR)/wx/xml/*.h $(DISTDIR)/include/wx/xml | |
fdec3549 | 150 | cp $(INCDIR)/wx/xrc/*.h $(DISTDIR)/include/wx/xrc |
ca58c9bb VS |
151 | cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol |
152 | mkdir $(DISTDIR)/art | |
153 | mkdir $(DISTDIR)/art/gtk | |
154 | mkdir $(DISTDIR)/art/motif | |
155 | cp $(WXDIR)/art/*.xpm $(DISTDIR)/art | |
156 | cp $(WXDIR)/art/gtk/*.xpm $(DISTDIR)/art/gtk | |
157 | cp $(WXDIR)/art/motif/*.xpm $(DISTDIR)/art/motif | |
158 | mkdir $(DISTDIR)/src/generic | |
159 | mkdir $(DISTDIR)/src/html | |
160 | mkdir $(DISTDIR)/src/$(TOOLKITDIR) | |
161 | mkdir $(DISTDIR)/src/png | |
162 | mkdir $(DISTDIR)/src/jpeg | |
163 | mkdir $(DISTDIR)/src/tiff | |
164 | mkdir $(DISTDIR)/src/unix | |
fdec3549 RL |
165 | mkdir $(DISTDIR)/src/xrc |
166 | cp $(SRCDIR)/xrc/*.cpp $(DISTDIR)/src/xrc | |
ca58c9bb VS |
167 | cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common |
168 | cp $(COMMDIR)/*.c $(DISTDIR)/src/common | |
169 | cp $(COMMDIR)/*.inc $(DISTDIR)/src/common | |
ca58c9bb | 170 | cp $(COMMDIR)/*.mms $(DISTDIR)/src/common |
ca58c9bb VS |
171 | cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix |
172 | cp $(UNIXDIR)/*.mms $(DISTDIR)/src/unix | |
173 | cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic | |
174 | cp $(GENDIR)/*.mms $(DISTDIR)/src/generic | |
175 | cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html | |
176 | cp $(PNGDIR)/*.h $(DISTDIR)/src/png | |
177 | cp $(PNGDIR)/*.c $(DISTDIR)/src/png | |
178 | cp $(PNGDIR)/README $(DISTDIR)/src/png | |
179 | cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg | |
180 | cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg | |
181 | cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg | |
182 | cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff | |
183 | cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff | |
184 | cp $(TIFFDIR)/README $(DISTDIR)/src/tiff | |
ca58c9bb VS |
185 | |
186 | BASE_DIST: ALL_DIST | |
187 | # make --disable-gui the default | |
188 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
189 | $(WXDIR)/configure.in > $(DISTDIR)/configure.in | |
190 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
191 | $(WXDIR)/configure > $(DISTDIR)/configure | |
192 | chmod +x $(DISTDIR)/configure | |
193 | mkdir $(DISTDIR)/include/wx/protocol | |
194 | mkdir $(DISTDIR)/include/wx/unix | |
195 | mkdir $(DISTDIR)/include/wx/xml | |
196 | mkdir $(DISTDIR)/include/wx/msw | |
520a495c | 197 | mkdir $(DISTDIR)/include/wx/html |
ca58c9bb VS |
198 | mkdir $(DISTDIR)/src/unix |
199 | mkdir $(DISTDIR)/src/msw | |
200 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
201 | cp $(DOCDIR)/base/readme.txt $(DISTDIR)/README.txt | |
202 | cp $(WXDIR)/src/common/*.inc $(DISTDIR)/src/common | |
203 | cp $(WXDIR)/src/common/base.rc $(DISTDIR)/src/common | |
ca58c9bb VS |
204 | list='$(ALL_BASE_HEADERS)'; for p in $$list; do \ |
205 | cp $(WXDIR)/include/$$p $(DISTDIR)/include/$$p; \ | |
206 | done | |
207 | list='$(ALL_BASE_SOURCES)'; for p in $$list; do \ | |
208 | cp $(WXDIR)/$$p $(DISTDIR)/$$p; \ | |
209 | done | |
210 | ||
211 | mkdir $(DISTDIR)/samples | |
212 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
213 | ||
214 | mkdir $(DISTDIR)/samples/console | |
215 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
216 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
217 | cp $(SAMPDIR)/console/console.cpp $(DISTDIR)/samples/console | |
218 | cp $(SAMPDIR)/console/console.dsp $(DISTDIR)/samples/console | |
219 | cp $(SAMPDIR)/console/testdata.fc $(DISTDIR)/samples/console | |
220 | ||
221 | GTK_DIST: ALL_GUI_DIST | |
222 | cp $(WXDIR)/wxGTK.spec $(DISTDIR) | |
223 | cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk | |
ceec2216 | 224 | cp $(GTKDIR)/*.h $(DISTDIR)/src/gtk |
ca58c9bb VS |
225 | cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk |
226 | cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk | |
227 | cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk | |
228 | cp $(GTKDIR)/*.mms $(DISTDIR)/src/gtk | |
17a7bf57 RL |
229 | |
230 | mkdir $(DISTDIR)/include/wx/gtk/gnome | |
231 | mkdir $(DISTDIR)/src/gtk/gnome | |
232 | cp $(INCDIR)/wx/gtk/gnome/*.h $(DISTDIR)/include/wx/gtk/gnome | |
233 | cp $(GTKDIR)/gnome/*.cpp $(DISTDIR)/src/gtk/gnome | |
234 | ||
ca58c9bb VS |
235 | mkdir $(DISTDIR)/contrib |
236 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
237 | ||
238 | X11_DIST: ALL_GUI_DIST UNIV_DIST | |
239 | cp $(WXDIR)/wxX11.spec $(DISTDIR) | |
240 | cp $(INCDIR)/wx/x11/*.h $(DISTDIR)/include/wx/x11 | |
241 | cp $(X11DIR)/*.cpp $(DISTDIR)/src/x11 | |
242 | cp $(X11DIR)/*.c $(DISTDIR)/src/x11 | |
243 | cp $(X11DIR)/*.xbm $(DISTDIR)/src/x11 | |
244 | mkdir $(DISTDIR)/contrib | |
245 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
246 | ||
247 | MOTIF_DIST: ALL_GUI_DIST | |
248 | cp $(WXDIR)/wxMotif.spec $(DISTDIR) | |
249 | cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif | |
250 | cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif | |
ca58c9bb VS |
251 | cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif |
252 | mkdir $(DISTDIR)/src/motif/xmcombo | |
253 | cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo | |
254 | cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo | |
255 | cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo | |
256 | mkdir $(DISTDIR)/src/x11 | |
257 | mkdir $(DISTDIR)/include/wx/x11 | |
258 | cp $(X11DIR)/pen.cpp $(X11DIR)/brush.cpp $(X11DIR)/utilsx.cpp \ | |
97c2479c | 259 | $(X11DIR)/bitmap.cpp $(X11DIR)/glcanvas.cpp $(X11DIR)/region.cpp \ |
ca58c9bb VS |
260 | $(DISTDIR)/src/x11 |
261 | cp $(X11INC)/pen.h $(X11INC)/brush.h $(X11INC)/privx.h \ | |
97c2479c | 262 | $(X11INC)/bitmap.h $(X11INC)/glcanvas.h $(X11INC)/private.h $(X11INC)/region.h \ |
ca58c9bb | 263 | $(DISTDIR)/include/wx/x11 |
0ff1f245 VS |
264 | mkdir $(DISTDIR)/contrib |
265 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
ca58c9bb VS |
266 | |
267 | MACX_DIST: ALL_GUI_DIST | |
268 | cp $(INCDIR)/*.* $(DISTDIR)/include | |
fbdd4842 SC |
269 | mkdir $(DISTDIR)/include/wx/mac/carbon |
270 | mkdir $(DISTDIR)/include/wx/mac/private | |
271 | mkdir $(DISTDIR)/include/wx/mac/carbon/private | |
ca58c9bb | 272 | cp $(INCDIR)/wx/mac/*.h $(DISTDIR)/include/wx/mac |
fbdd4842 SC |
273 | cp $(INCDIR)/wx/mac/carbon/*.h $(DISTDIR)/include/wx/mac/carbon |
274 | cp $(INCDIR)/wx/mac/carbon/private/*.h $(DISTDIR)/include/wx/mac/carbon/private | |
275 | cp $(INCDIR)/wx/mac/private/*.h $(DISTDIR)/include/wx/mac/private | |
276 | cp $(MACDIR)/carbon/*.cpp $(DISTDIR)/src/mac/carbon | |
277 | cp $(MACDIR)/carbon/*.c $(DISTDIR)/src/mac/carbon | |
278 | cp $(MACDIR)/carbon/*.h $(DISTDIR)/src/mac/carbon | |
279 | cp $(MACDIR)/carbon/*.r $(DISTDIR)/src/mac/carbon | |
280 | mkdir $(DISTDIR)/src/mac/carbon/morefile | |
281 | cp $(MACDIR)/carbon/morefile/*.h $(DISTDIR)/src/mac/carbon/morefile | |
282 | cp $(MACDIR)/carbon/morefile/*.c $(DISTDIR)/src/mac/carbon/morefile | |
283 | mkdir $(DISTDIR)/src/mac/carbon/morefilex | |
284 | cp $(MACDIR)/carbon/morefilex/*.h $(DISTDIR)/src/mac/carbon/morefilex | |
285 | cp $(MACDIR)/carbon/morefilex/*.c $(DISTDIR)/src/mac/carbon/morefilex | |
286 | cp $(MACDIR)/carbon/morefilex/*.cpp $(DISTDIR)/src/mac/carbon/morefilex | |
287 | # obsolete | |
288 | # mkdir $(DISTDIR)/src/mac/macsock | |
289 | # cp $(MACDIR)/macsock/*.lib $(DISTDIR)/src/mac/macsock | |
0ff1f245 VS |
290 | mkdir $(DISTDIR)/contrib |
291 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
ca58c9bb VS |
292 | |
293 | # TODO: Distribute some files | |
294 | COCOA_DIST: ALL_GUI_DIST | |
295 | cp $(COCOADIR)/*.mm $(DISTDIR)/src/cocoa | |
296 | ||
297 | MSW_DIST: ALL_GUI_DIST | |
298 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) | |
ca58c9bb VS |
299 | mkdir $(DISTDIR)/include/wx/msw/ole |
300 | mkdir $(DISTDIR)/include/wx/msw/wince | |
301 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw | |
302 | cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw | |
303 | cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw | |
304 | cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw | |
305 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw | |
ca58c9bb VS |
306 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole |
307 | cp $(INCDIR)/wx/msw/wince/*.h $(DISTDIR)/include/wx/msw/wince | |
308 | mkdir $(DISTDIR)/src/msw/ole | |
309 | mkdir $(DISTDIR)/src/msw/wince | |
310 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw | |
311 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw | |
520a495c | 312 | cp $(MSWDIR)/*.rc $(DISTDIR)/src/msw |
ca58c9bb VS |
313 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw |
314 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole | |
ca58c9bb VS |
315 | |
316 | MSW_ZIP_TEXT_DIST: ALL_GUI_DIST | |
317 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) | |
318 | mkdir $(DISTDIR)/include/wx/msw | |
ca58c9bb VS |
319 | mkdir $(DISTDIR)/include/wx/msw/ole |
320 | mkdir $(DISTDIR)/include/wx/msw/wince | |
321 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw | |
322 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw | |
54e83ca5 | 323 | cp $(INCDIR)/wx/msw/wx.manifest $(DISTDIR)/include/wx/msw |
ca58c9bb VS |
324 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole |
325 | cp $(INCDIR)/wx/msw/wince/*.h $(DISTDIR)/include/wx/msw/wince | |
326 | mkdir $(DISTDIR)/src/msw | |
327 | mkdir $(DISTDIR)/src/msw/ole | |
328 | mkdir $(DISTDIR)/src/msw/wince | |
329 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw | |
330 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw | |
331 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw | |
332 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole | |
333 | cp $(MSWDIR)/wince/*.* $(DISTDIR)/src/msw/wince | |
334 | cp $(SRCDIR)/*.??? $(DISTDIR)/src | |
335 | cp $(SRCDIR)/*.?? $(DISTDIR)/src | |
ca58c9bb VS |
336 | mkdir $(DISTDIR)/contrib |
337 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
338 | ||
339 | UNIV_DIST: ALL_GUI_DIST | |
340 | mkdir $(DISTDIR)/include/wx/univ | |
341 | mkdir $(DISTDIR)/src/univ | |
342 | mkdir $(DISTDIR)/src/univ/themes | |
343 | cp $(INCDIR)/wx/univ/*.h $(DISTDIR)/include/wx/univ | |
344 | cp $(INCDIR)/wx/univ/setup0.h $(DISTDIR)/include/wx/univ/setup.h | |
345 | cp $(SRCDIR)/univ/*.cpp $(DISTDIR)/src/univ | |
346 | cp $(SRCDIR)/univ/themes/*.cpp $(DISTDIR)/src/univ/themes | |
347 | ||
348 | MGL_DIST: UNIV_DIST | |
349 | cp $(WXDIR)/wxMGL.spec $(DISTDIR) | |
350 | cp $(INCDIR)/wx/mgl/*.h $(DISTDIR)/include/wx/mgl | |
351 | cp $(SRCDIR)/mgl/make* $(DISTDIR)/src/mgl | |
352 | cp $(SRCDIR)/mgl/*.cpp $(DISTDIR)/src/mgl | |
353 | mkdir $(DISTDIR)/contrib | |
354 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
355 | ||
356 | DEMOS_DIST: ALL_GUI_DIST | |
357 | mkdir $(DISTDIR)/demos | |
358 | cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos | |
359 | ||
360 | mkdir $(DISTDIR)/demos/bombs | |
361 | cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs | |
362 | cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs | |
363 | cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs | |
364 | cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs | |
365 | cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs | |
366 | cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs | |
367 | ||
368 | cp -R $(DEMODIR)/dbbrowse $(DISTDIR)/demos/dbbrowse | |
369 | ||
370 | mkdir $(DISTDIR)/demos/forty | |
371 | cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty | |
372 | cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty | |
373 | cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty | |
374 | cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty | |
375 | cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty | |
376 | cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty | |
73ed39b5 | 377 | cp $(DEMODIR)/forty/*.htm $(DISTDIR)/demos/forty |
ca58c9bb VS |
378 | |
379 | mkdir $(DISTDIR)/demos/life | |
380 | mkdir $(DISTDIR)/demos/life/bitmaps | |
381 | cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life | |
382 | cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life | |
383 | cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life | |
384 | cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life | |
385 | cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life | |
386 | cp $(DEMODIR)/life/*.inc $(DISTDIR)/demos/life | |
387 | cp $(DEMODIR)/life/*.lif $(DISTDIR)/demos/life | |
388 | cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps | |
389 | ||
390 | mkdir $(DISTDIR)/demos/poem | |
391 | cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem | |
392 | cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem | |
393 | cp $(DEMODIR)/poem/*.h $(DISTDIR)/demos/poem | |
394 | cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem | |
395 | cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem | |
396 | cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem | |
397 | cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem | |
398 | ||
399 | mkdir $(DISTDIR)/demos/fractal | |
400 | cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal | |
401 | cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal | |
402 | cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal | |
403 | ||
404 | SAMPLES_DIST: ALL_GUI_DIST | |
405 | mkdir $(DISTDIR)/samples | |
406 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
407 | cp $(SAMPDIR)/sample.* $(DISTDIR)/samples | |
408 | ||
409 | mkdir $(DISTDIR)/samples/artprov | |
410 | cp $(SAMPDIR)/artprov/Makefile.in $(DISTDIR)/samples/artprov | |
411 | cp $(SAMPDIR)/artprov/makefile.unx $(DISTDIR)/samples/artprov | |
412 | cp $(SAMPDIR)/artprov/*.cpp $(DISTDIR)/samples/artprov | |
413 | cp $(SAMPDIR)/artprov/*.h $(DISTDIR)/samples/artprov | |
414 | cp $(SAMPDIR)/artprov/*.xpm $(DISTDIR)/samples/artprov | |
415 | ||
416 | mkdir $(DISTDIR)/samples/calendar | |
417 | cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar | |
418 | cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar | |
419 | cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar | |
420 | ||
421 | mkdir $(DISTDIR)/samples/caret | |
422 | cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret | |
423 | cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret | |
424 | cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret | |
425 | cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret | |
426 | ||
427 | mkdir $(DISTDIR)/samples/checklst | |
428 | cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst | |
429 | cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst | |
430 | cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst | |
431 | cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst | |
432 | cp $(SAMPDIR)/checklst/*.mms $(DISTDIR)/samples/checklst | |
433 | ||
434 | mkdir $(DISTDIR)/samples/config | |
435 | cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config | |
436 | cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config | |
437 | cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config | |
438 | ||
439 | mkdir $(DISTDIR)/samples/console | |
440 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
441 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
442 | cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console | |
443 | cp $(SAMPDIR)/console/testdata.fc $(DISTDIR)/samples/console | |
444 | ||
445 | mkdir $(DISTDIR)/samples/controls | |
446 | mkdir $(DISTDIR)/samples/controls/icons | |
447 | cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls | |
448 | cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls | |
449 | cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls | |
450 | cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls | |
451 | cp $(SAMPDIR)/controls/*.mms $(DISTDIR)/samples/controls | |
452 | cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons | |
453 | ||
454 | mkdir $(DISTDIR)/samples/db | |
455 | cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db | |
456 | cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db | |
457 | cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db | |
458 | cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db | |
459 | cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db | |
460 | ||
461 | mkdir $(DISTDIR)/samples/dialogs | |
462 | cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs | |
463 | cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs | |
464 | cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs | |
465 | cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs | |
466 | cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs | |
467 | cp $(SAMPDIR)/dialogs/*.mms $(DISTDIR)/samples/dialogs | |
468 | ||
0ff1f245 VS |
469 | mkdir $(DISTDIR)/samples/dialup |
470 | cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup | |
471 | cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup | |
472 | cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup | |
473 | ||
ca58c9bb VS |
474 | mkdir $(DISTDIR)/samples/dnd |
475 | cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd | |
476 | cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd | |
ca58c9bb VS |
477 | cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd |
478 | cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd | |
479 | cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd | |
480 | cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd | |
481 | ||
482 | mkdir $(DISTDIR)/samples/docview | |
483 | cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview | |
484 | cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview | |
485 | cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview | |
486 | cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview | |
487 | cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview | |
488 | ||
489 | mkdir $(DISTDIR)/samples/docvwmdi | |
490 | cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi | |
491 | cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi | |
492 | cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi | |
493 | cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi | |
494 | ||
495 | mkdir $(DISTDIR)/samples/dragimag | |
496 | cp $(SAMPDIR)/dragimag/Makefile.in $(DISTDIR)/samples/dragimag | |
497 | cp $(SAMPDIR)/dragimag/makefile.unx $(DISTDIR)/samples/dragimag | |
498 | cp $(SAMPDIR)/dragimag/*.cpp $(DISTDIR)/samples/dragimag | |
499 | cp $(SAMPDIR)/dragimag/*.h $(DISTDIR)/samples/dragimag | |
500 | cp $(SAMPDIR)/dragimag/*.xpm $(DISTDIR)/samples/dragimag | |
501 | cp $(SAMPDIR)/dragimag/*.png $(DISTDIR)/samples/dragimag | |
502 | ||
503 | mkdir $(DISTDIR)/samples/drawing | |
504 | cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing | |
505 | cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing | |
506 | cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing | |
507 | cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing | |
508 | cp $(SAMPDIR)/drawing/*.bmp $(DISTDIR)/samples/drawing | |
509 | ||
510 | mkdir $(DISTDIR)/samples/dynamic | |
511 | cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic | |
512 | cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic | |
513 | cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic | |
514 | cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic | |
515 | ||
516 | mkdir $(DISTDIR)/samples/erase | |
517 | cp $(SAMPDIR)/erase/Makefile.in $(DISTDIR)/samples/erase | |
518 | cp $(SAMPDIR)/erase/makefile.unx $(DISTDIR)/samples/erase | |
519 | cp $(SAMPDIR)/erase/*.cpp $(DISTDIR)/samples/erase | |
520 | cp $(SAMPDIR)/erase/*.xml $(DISTDIR)/samples/erase | |
521 | ||
522 | mkdir $(DISTDIR)/samples/event | |
523 | cp $(SAMPDIR)/event/Makefile.in $(DISTDIR)/samples/event | |
524 | cp $(SAMPDIR)/event/makefile.unx $(DISTDIR)/samples/event | |
525 | cp $(SAMPDIR)/event/*.cpp $(DISTDIR)/samples/event | |
526 | ||
8fb75ec3 VZ |
527 | mkdir $(DISTDIR)/samples/except |
528 | cp $(SAMPDIR)/except/Makefile.in $(DISTDIR)/samples/except | |
8fb75ec3 VZ |
529 | cp $(SAMPDIR)/except/*.cpp $(DISTDIR)/samples/except |
530 | ||
ca58c9bb VS |
531 | mkdir $(DISTDIR)/samples/exec |
532 | cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec | |
533 | cp $(SAMPDIR)/exec/makefile.unx $(DISTDIR)/samples/exec | |
534 | cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec | |
535 | ||
536 | mkdir $(DISTDIR)/samples/font | |
537 | cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font | |
538 | cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font | |
539 | cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font | |
540 | ||
541 | mkdir $(DISTDIR)/samples/grid | |
542 | cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid | |
543 | cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid | |
544 | cp $(SAMPDIR)/grid/*.cpp $(SAMPDIR)/grid/*.h $(DISTDIR)/samples/grid | |
545 | ||
546 | mkdir $(DISTDIR)/samples/help | |
547 | mkdir $(DISTDIR)/samples/help/doc | |
548 | cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help | |
549 | cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help | |
550 | cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help | |
551 | cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help | |
552 | cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc | |
553 | ||
0ff1f245 VS |
554 | mkdir $(DISTDIR)/samples/htlbox |
555 | cp $(SAMPDIR)/htlbox/Makefile.in $(DISTDIR)/samples/htlbox | |
556 | cp $(SAMPDIR)/htlbox/makefile.unx $(DISTDIR)/samples/htlbox | |
557 | cp $(SAMPDIR)/htlbox/*.cpp $(DISTDIR)/samples/htlbox | |
558 | cp $(SAMPDIR)/htlbox/*.xpm $(DISTDIR)/samples/htlbox | |
559 | ||
ca58c9bb VS |
560 | mkdir $(DISTDIR)/samples/html |
561 | cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html | |
562 | mkdir $(DISTDIR)/samples/html/about | |
563 | cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about | |
564 | cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about | |
565 | mkdir $(DISTDIR)/samples/html/about/data | |
566 | cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data | |
567 | cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data | |
568 | mkdir $(DISTDIR)/samples/html/help | |
569 | cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help | |
570 | cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help | |
571 | mkdir $(DISTDIR)/samples/html/help/helpfiles | |
572 | cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles | |
573 | mkdir $(DISTDIR)/samples/html/helpview | |
574 | cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview | |
575 | cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview | |
576 | cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview | |
577 | mkdir $(DISTDIR)/samples/html/printing | |
578 | cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing | |
579 | cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing | |
580 | cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing | |
581 | mkdir $(DISTDIR)/samples/html/test | |
582 | cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test | |
583 | cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test | |
584 | cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test | |
585 | cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test | |
586 | cp $(SAMPDIR)/html/test/*.gif $(DISTDIR)/samples/html/test | |
587 | cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test | |
588 | cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test | |
589 | mkdir $(DISTDIR)/samples/html/virtual | |
590 | cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual | |
591 | cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual | |
592 | cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual | |
593 | mkdir $(DISTDIR)/samples/html/widget | |
594 | cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget | |
595 | cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget | |
596 | cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget | |
597 | mkdir $(DISTDIR)/samples/html/zip | |
598 | cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip | |
599 | cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip | |
600 | cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip | |
601 | cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip | |
602 | ||
603 | mkdir $(DISTDIR)/samples/image | |
604 | cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image | |
605 | cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image | |
606 | cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image | |
607 | cp $(SAMPDIR)/image/*.mms $(DISTDIR)/samples/image | |
fc3bb383 | 608 | cp $(SAMPDIR)/image/horse*.* $(DISTDIR)/samples/image |
ca58c9bb VS |
609 | cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image |
610 | cp $(SAMPDIR)/image/smile.xpm $(DISTDIR)/samples/image | |
611 | ||
612 | mkdir $(DISTDIR)/samples/internat | |
613 | mkdir $(DISTDIR)/samples/internat/de | |
614 | mkdir $(DISTDIR)/samples/internat/fr | |
615 | mkdir $(DISTDIR)/samples/internat/ju | |
616 | mkdir $(DISTDIR)/samples/internat/ru | |
617 | cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat | |
618 | cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat | |
619 | cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat | |
620 | cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat | |
621 | cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat | |
622 | cp $(SAMPDIR)/internat/fr/*.mo $(DISTDIR)/samples/internat/fr | |
623 | cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de | |
624 | cp $(SAMPDIR)/internat/ja/*.mo $(DISTDIR)/samples/internat/ja | |
625 | cp $(SAMPDIR)/internat/ru/*.mo $(DISTDIR)/samples/internat/ru | |
626 | cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr | |
627 | cp $(SAMPDIR)/internat/de/*.po $(DISTDIR)/samples/internat/de | |
628 | cp $(SAMPDIR)/internat/ja/*.po $(DISTDIR)/samples/internat/ja | |
629 | cp $(SAMPDIR)/internat/ru/*.po $(DISTDIR)/samples/internat/ru | |
630 | ||
631 | mkdir $(DISTDIR)/samples/ipc | |
632 | cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc | |
633 | cp $(SAMPDIR)/ipc/makefile.unx $(DISTDIR)/samples/ipc | |
634 | cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc | |
635 | cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc | |
636 | cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc | |
637 | ||
638 | mkdir $(DISTDIR)/samples/joytest | |
639 | cp $(SAMPDIR)/joytest/Makefile.in $(DISTDIR)/samples/joytest | |
640 | cp $(SAMPDIR)/joytest/makefile.unx $(DISTDIR)/samples/joytest | |
641 | cp $(SAMPDIR)/joytest/*.cpp $(DISTDIR)/samples/joytest | |
642 | cp $(SAMPDIR)/joytest/*.h $(DISTDIR)/samples/joytest | |
643 | cp $(SAMPDIR)/joytest/*.wav $(DISTDIR)/samples/joytest | |
644 | ||
645 | mkdir $(DISTDIR)/samples/keyboard | |
646 | cp $(SAMPDIR)/keyboard/Makefile.in $(DISTDIR)/samples/keyboard | |
647 | cp $(SAMPDIR)/keyboard/*.cpp $(DISTDIR)/samples/keyboard | |
648 | ||
649 | mkdir $(DISTDIR)/samples/layout | |
650 | cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout | |
651 | cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout | |
652 | cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout | |
653 | cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout | |
654 | ||
655 | mkdir $(DISTDIR)/samples/listctrl | |
656 | mkdir $(DISTDIR)/samples/listctrl/bitmaps | |
657 | cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl | |
658 | cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl | |
659 | cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl | |
660 | cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl | |
661 | cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl | |
662 | cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps | |
663 | ||
7c529035 JS |
664 | mkdir $(DISTDIR)/samples/mediaplayer |
665 | cp $(SAMPDIR)/mediaplayer/Makefile.in $(DISTDIR)/samples/mediaplayer | |
666 | cp $(SAMPDIR)/mediaplayer/*.cpp $(DISTDIR)/samples/mediaplayer | |
667 | ||
ca58c9bb VS |
668 | mkdir $(DISTDIR)/samples/mdi |
669 | mkdir $(DISTDIR)/samples/mdi/bitmaps | |
670 | cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi | |
671 | cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi | |
672 | cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi | |
673 | cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi | |
674 | cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi | |
675 | cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps | |
676 | ||
677 | mkdir $(DISTDIR)/samples/memcheck | |
678 | cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck | |
679 | cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck | |
680 | cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck | |
681 | cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck | |
682 | ||
683 | mkdir $(DISTDIR)/samples/menu | |
684 | cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu | |
685 | cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu | |
686 | cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu | |
687 | cp $(SAMPDIR)/menu/*.xpm $(DISTDIR)/samples/menu | |
688 | ||
689 | mkdir $(DISTDIR)/samples/minifram | |
690 | mkdir $(DISTDIR)/samples/minifram/bitmaps | |
691 | cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram | |
692 | cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram | |
693 | cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram | |
694 | cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram | |
695 | cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram | |
696 | cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps | |
697 | ||
698 | mkdir $(DISTDIR)/samples/minimal | |
699 | cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal | |
700 | cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal | |
701 | cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal | |
ca58c9bb VS |
702 | cp $(SAMPDIR)/minimal/*.mms $(DISTDIR)/samples/minimal |
703 | ||
704 | mkdir $(DISTDIR)/samples/mobile | |
705 | cp $(SAMPDIR)/mobile/Makefile.in $(DISTDIR)/samples/mobile | |
706 | mkdir $(DISTDIR)/samples/mobile/wxedit | |
707 | cp $(SAMPDIR)/mobile/wxedit/Makefile.in $(DISTDIR)/samples/mobile/wxedit | |
708 | cp $(SAMPDIR)/mobile/wxedit/*.cpp $(DISTDIR)/samples/mobile/wxedit | |
709 | cp $(SAMPDIR)/mobile/wxedit/*.h $(DISTDIR)/samples/mobile/wxedit | |
710 | mkdir $(DISTDIR)/samples/mobile/styles | |
711 | cp $(SAMPDIR)/mobile/styles/Makefile.in $(DISTDIR)/samples/mobile/styles | |
712 | cp $(SAMPDIR)/mobile/styles/*.cpp $(DISTDIR)/samples/mobile/styles | |
713 | cp $(SAMPDIR)/mobile/styles/*.h $(DISTDIR)/samples/mobile/styles | |
714 | cp $(SAMPDIR)/mobile/styles/*.jpg $(DISTDIR)/samples/mobile/styles | |
715 | ||
0ff1f245 VS |
716 | mkdir $(DISTDIR)/samples/multimon |
717 | cp $(SAMPDIR)/multimon/Makefile.in $(DISTDIR)/samples/multimon | |
718 | cp $(SAMPDIR)/multimon/makefile.unx $(DISTDIR)/samples/multimon | |
719 | cp $(SAMPDIR)/multimon/*.cpp $(DISTDIR)/samples/multimon | |
ca58c9bb VS |
720 | |
721 | mkdir $(DISTDIR)/samples/notebook | |
722 | cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook | |
723 | cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook | |
724 | cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook | |
725 | cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook | |
726 | ||
727 | mkdir $(DISTDIR)/samples/opengl | |
728 | cp $(SAMPDIR)/opengl/Makefile.in $(DISTDIR)/samples/opengl | |
729 | mkdir $(DISTDIR)/samples/opengl/penguin | |
730 | cp $(SAMPDIR)/opengl/penguin/Makefile.in $(DISTDIR)/samples/opengl/penguin | |
731 | cp $(SAMPDIR)/opengl/penguin/makefile.unx $(DISTDIR)/samples/opengl/penguin | |
732 | cp $(SAMPDIR)/opengl/penguin/*.cpp $(DISTDIR)/samples/opengl/penguin | |
733 | cp $(SAMPDIR)/opengl/penguin/*.c $(DISTDIR)/samples/opengl/penguin | |
734 | cp $(SAMPDIR)/opengl/penguin/*.h $(DISTDIR)/samples/opengl/penguin | |
735 | cp $(SAMPDIR)/opengl/penguin/*.lwo $(DISTDIR)/samples/opengl/penguin | |
736 | mkdir $(DISTDIR)/samples/opengl/cube | |
737 | cp $(SAMPDIR)/opengl/cube/Makefile.in $(DISTDIR)/samples/opengl/cube | |
738 | cp $(SAMPDIR)/opengl/cube/makefile.unx $(DISTDIR)/samples/opengl/cube | |
739 | cp $(SAMPDIR)/opengl/cube/*.cpp $(DISTDIR)/samples/opengl/cube | |
740 | cp $(SAMPDIR)/opengl/cube/*.h $(DISTDIR)/samples/opengl/cube | |
741 | mkdir $(DISTDIR)/samples/opengl/isosurf | |
742 | cp $(SAMPDIR)/opengl/isosurf/Makefile.in $(DISTDIR)/samples/opengl/isosurf | |
743 | cp $(SAMPDIR)/opengl/isosurf/makefile.unx $(DISTDIR)/samples/opengl/isosurf | |
744 | cp $(SAMPDIR)/opengl/isosurf/*.cpp $(DISTDIR)/samples/opengl/isosurf | |
745 | cp $(SAMPDIR)/opengl/isosurf/*.h $(DISTDIR)/samples/opengl/isosurf | |
746 | cp $(SAMPDIR)/opengl/isosurf/*.gz $(DISTDIR)/samples/opengl/isosurf | |
747 | ||
748 | mkdir $(DISTDIR)/samples/png | |
749 | cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png | |
750 | cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png | |
751 | cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png | |
752 | cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png | |
753 | cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png | |
754 | ||
7c529035 JS |
755 | mkdir $(DISTDIR)/samples/popup |
756 | cp $(SAMPDIR)/popup/Makefile.in $(DISTDIR)/samples/popup | |
757 | cp $(SAMPDIR)/popup/makefile.unx $(DISTDIR)/samples/popup | |
758 | cp $(SAMPDIR)/popup/*.cpp $(DISTDIR)/samples/popup | |
759 | ||
ca58c9bb VS |
760 | mkdir $(DISTDIR)/samples/printing |
761 | cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing | |
762 | cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing | |
763 | cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing | |
764 | cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing | |
765 | cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing | |
766 | cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing | |
767 | ||
768 | # mkdir $(DISTDIR)/samples/resource | |
769 | # cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource | |
770 | # cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource | |
771 | # cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource | |
772 | # cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource | |
773 | # cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource | |
774 | ||
0ff1f245 VS |
775 | mkdir $(DISTDIR)/samples/render |
776 | cp $(SAMPDIR)/render/Makefile.in $(DISTDIR)/samples/render | |
777 | cp $(SAMPDIR)/render/makefile.unx $(DISTDIR)/samples/render | |
778 | cp $(SAMPDIR)/render/*.cpp $(DISTDIR)/samples/render | |
779 | ||
ca58c9bb VS |
780 | mkdir $(DISTDIR)/samples/rotate |
781 | cp $(SAMPDIR)/rotate/Makefile.in $(DISTDIR)/samples/rotate | |
782 | cp $(SAMPDIR)/rotate/makefile.unx $(DISTDIR)/samples/rotate | |
783 | cp $(SAMPDIR)/rotate/*.cpp $(DISTDIR)/samples/rotate | |
4fea5f26 | 784 | cp $(SAMPDIR)/rotate/*.png $(DISTDIR)/samples/rotate |
ca58c9bb VS |
785 | |
786 | mkdir $(DISTDIR)/samples/richedit | |
787 | cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit | |
788 | cp $(SAMPDIR)/richedit/makefile.unx $(DISTDIR)/samples/richedit | |
789 | cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit | |
790 | cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit | |
791 | cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit | |
792 | cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit | |
793 | cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit | |
794 | ||
795 | # mkdir $(DISTDIR)/samples/proplist | |
796 | # cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist | |
797 | # cp $(SAMPDIR)/proplist/makefile.unx $(DISTDIR)/samples/proplist | |
798 | # cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist | |
799 | # cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist | |
800 | ||
801 | mkdir $(DISTDIR)/samples/propsize | |
802 | cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize | |
803 | cp $(SAMPDIR)/propsize/makefile.unx $(DISTDIR)/samples/propsize | |
804 | cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize | |
805 | cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize | |
806 | ||
807 | mkdir $(DISTDIR)/samples/sashtest | |
808 | cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest | |
809 | cp $(SAMPDIR)/sashtest/makefile.unx $(DISTDIR)/samples/sashtest | |
810 | cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest | |
811 | cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest | |
812 | ||
813 | mkdir $(DISTDIR)/samples/scroll | |
814 | cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll | |
815 | cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll | |
816 | cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll | |
817 | ||
818 | mkdir $(DISTDIR)/samples/scrollsub | |
819 | cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub | |
820 | cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub | |
821 | cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub | |
822 | ||
823 | mkdir $(DISTDIR)/samples/shaped | |
824 | cp $(SAMPDIR)/shaped/Makefile.in $(DISTDIR)/samples/shaped | |
825 | cp $(SAMPDIR)/shaped/makefile.unx $(DISTDIR)/samples/shaped | |
826 | cp $(SAMPDIR)/shaped/*.cpp $(DISTDIR)/samples/shaped | |
827 | cp $(SAMPDIR)/shaped/*.png $(DISTDIR)/samples/shaped | |
828 | ||
829 | mkdir $(DISTDIR)/samples/sockets | |
830 | cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets | |
831 | cp $(SAMPDIR)/sockets/makefile.unx $(DISTDIR)/samples/sockets | |
832 | cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets | |
833 | cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets | |
834 | ||
816c1e80 JS |
835 | mkdir $(DISTDIR)/samples/sound |
836 | cp $(SAMPDIR)/sound/Makefile.in $(DISTDIR)/samples/sound | |
837 | cp $(SAMPDIR)/sound/*.cpp $(DISTDIR)/samples/sound | |
838 | cp $(SAMPDIR)/sound/*.wav $(DISTDIR)/samples/sound | |
839 | ||
daa9deb2 WS |
840 | mkdir $(DISTDIR)/samples/splash |
841 | cp $(SAMPDIR)/splash/Makefile.in $(DISTDIR)/samples/splash | |
daa9deb2 | 842 | cp $(SAMPDIR)/splash/*.cpp $(DISTDIR)/samples/splash |
daa9deb2 | 843 | cp $(SAMPDIR)/splash/*.png $(DISTDIR)/samples/splash |
1b1304a0 | 844 | cp $(SAMPDIR)/splash/*.mpg $(DISTDIR)/samples/splash |
daa9deb2 | 845 | |
ca58c9bb VS |
846 | mkdir $(DISTDIR)/samples/splitter |
847 | cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter | |
848 | cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter | |
849 | cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter | |
850 | ||
851 | mkdir $(DISTDIR)/samples/statbar | |
852 | cp $(SAMPDIR)/statbar/Makefile.in $(DISTDIR)/samples/statbar | |
853 | cp $(SAMPDIR)/statbar/makefile.unx $(DISTDIR)/samples/statbar | |
854 | cp $(SAMPDIR)/statbar/*.cpp $(DISTDIR)/samples/statbar | |
855 | cp $(SAMPDIR)/statbar/*.xpm $(DISTDIR)/samples/statbar | |
856 | ||
857 | mkdir $(DISTDIR)/samples/text | |
858 | cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text | |
859 | cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text | |
860 | cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text | |
861 | cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text | |
862 | ||
863 | mkdir $(DISTDIR)/samples/thread | |
864 | cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread | |
865 | cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread | |
866 | cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread | |
867 | ||
868 | mkdir $(DISTDIR)/samples/toolbar | |
869 | cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar | |
870 | cp $(SAMPDIR)/toolbar/makefile.unx $(DISTDIR)/samples/toolbar | |
871 | cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar | |
872 | cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar | |
873 | mkdir $(DISTDIR)/samples/toolbar/bitmaps | |
874 | cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps | |
875 | ||
876 | mkdir $(DISTDIR)/samples/treectrl | |
877 | cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl | |
878 | cp $(SAMPDIR)/treectrl/makefile.unx $(DISTDIR)/samples/treectrl | |
879 | cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl | |
880 | cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl | |
881 | cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl | |
882 | ||
883 | # mkdir $(DISTDIR)/samples/treelay | |
884 | # cp $(SAMPDIR)/treelay/Makefile.in $(DISTDIR)/samples/treelay | |
885 | # cp $(SAMPDIR)/treelay/makefile.unx $(DISTDIR)/samples/treelay | |
886 | # cp $(SAMPDIR)/treelay/*.cpp $(DISTDIR)/samples/treelay | |
887 | # cp $(SAMPDIR)/treelay/*.h $(DISTDIR)/samples/treelay | |
888 | ||
889 | mkdir $(DISTDIR)/samples/typetest | |
890 | cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest | |
891 | cp $(SAMPDIR)/typetest/makefile.unx $(DISTDIR)/samples/typetest | |
892 | cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest | |
893 | cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest | |
894 | cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest | |
895 | ||
896 | mkdir $(DISTDIR)/samples/validate | |
897 | cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate | |
898 | cp $(SAMPDIR)/validate/makefile.unx $(DISTDIR)/samples/validate | |
899 | cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate | |
900 | cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate | |
901 | cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate | |
902 | ||
7c529035 JS |
903 | mkdir $(DISTDIR)/samples/vscroll |
904 | cp $(SAMPDIR)/vscroll/Makefile.in $(DISTDIR)/samples/vscroll | |
905 | cp $(SAMPDIR)/vscroll/*.cpp $(DISTDIR)/samples/vscroll | |
906 | ||
ca58c9bb VS |
907 | mkdir $(DISTDIR)/samples/wizard |
908 | cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard | |
909 | cp $(SAMPDIR)/wizard/makefile.unx $(DISTDIR)/samples/wizard | |
910 | cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard | |
911 | cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard | |
912 | ||
913 | mkdir $(DISTDIR)/samples/widgets | |
914 | mkdir $(DISTDIR)/samples/widgets/icons | |
915 | cp $(SAMPDIR)/widgets/Makefile.in $(DISTDIR)/samples/widgets | |
916 | cp $(SAMPDIR)/widgets/*.cpp $(DISTDIR)/samples/widgets | |
917 | cp $(SAMPDIR)/widgets/*.h $(DISTDIR)/samples/widgets | |
918 | cp $(SAMPDIR)/widgets/*.rc $(DISTDIR)/samples/widgets | |
919 | cp $(SAMPDIR)/widgets/icons/*.xpm $(DISTDIR)/samples/widgets/icons | |
920 | ||
7c529035 JS |
921 | mkdir $(DISTDIR)/samples/xrc |
922 | mkdir $(DISTDIR)/samples/xrc/rc | |
923 | cp $(SAMPDIR)/xrc/Makefile.in $(DISTDIR)/samples/xrc | |
924 | cp $(SAMPDIR)/xrc/*.cpp $(DISTDIR)/samples/xrc | |
925 | cp $(SAMPDIR)/xrc/*.h $(DISTDIR)/samples/xrc | |
926 | cp $(SAMPDIR)/xrc/*.rc $(DISTDIR)/samples/xrc | |
2407491e JS |
927 | cp $(SAMPDIR)/xrc/rc/*.xpm $(DISTDIR)/samples/xrc/rc |
928 | cp $(SAMPDIR)/xrc/rc/*.xrc $(DISTDIR)/samples/xrc/rc | |
929 | cp $(SAMPDIR)/xrc/rc/*.gif $(DISTDIR)/samples/xrc/rc | |
930 | cp $(SAMPDIR)/xrc/rc/*.ico $(DISTDIR)/samples/xrc/rc | |
7c529035 | 931 | |
ca58c9bb VS |
932 | UTILS_DIST: ALL_GUI_DIST |
933 | mkdir $(DISTDIR)/utils | |
934 | cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils | |
935 | ||
936 | mkdir $(DISTDIR)/utils/tex2rtf | |
937 | mkdir $(DISTDIR)/utils/tex2rtf/src | |
938 | cp $(UTILSDIR)/tex2rtf/*.in $(DISTDIR)/utils/tex2rtf | |
939 | cp $(UTILSDIR)/tex2rtf/src/*.h $(DISTDIR)/utils/tex2rtf/src | |
940 | cp $(UTILSDIR)/tex2rtf/src/*.in $(DISTDIR)/utils/tex2rtf/src | |
941 | cp $(UTILSDIR)/tex2rtf/src/*.cpp $(DISTDIR)/utils/tex2rtf/src | |
942 | cp $(UTILSDIR)/tex2rtf/src/tex2rtf.* $(DISTDIR)/utils/tex2rtf/src | |
943 | ||
944 | mkdir $(DISTDIR)/utils/emulator | |
945 | mkdir $(DISTDIR)/utils/emulator/src | |
946 | mkdir $(DISTDIR)/utils/emulator/docs | |
947 | cp $(UTILSDIR)/emulator/*.in $(DISTDIR)/utils/emulator | |
948 | cp $(UTILSDIR)/emulator/src/*.h $(DISTDIR)/utils/emulator/src | |
949 | cp $(UTILSDIR)/emulator/src/*.in $(DISTDIR)/utils/emulator/src | |
950 | cp $(UTILSDIR)/emulator/src/*.cpp $(DISTDIR)/utils/emulator/src | |
951 | cp $(UTILSDIR)/emulator/src/*.jpg $(DISTDIR)/utils/emulator/src | |
952 | cp $(UTILSDIR)/emulator/src/*.wxe $(DISTDIR)/utils/emulator/src | |
953 | cp $(UTILSDIR)/emulator/docs/*.txt $(DISTDIR)/utils/emulator/docs | |
954 | cp $(UTILSDIR)/emulator/docs/*.jpg $(DISTDIR)/utils/emulator/docs | |
955 | ||
ca58c9bb | 956 | mkdir $(DISTDIR)/utils/hhp2cached |
a13a7f89 RL |
957 | cp $(UTILSDIR)/hhp2cached/Makefile.in $(DISTDIR)/utils/hhp2cached |
958 | cp $(UTILSDIR)/hhp2cached/*.cpp $(DISTDIR)/utils/hhp2cached | |
959 | cp $(UTILSDIR)/hhp2cached/*.rc $(DISTDIR)/utils/hhp2cached | |
ca58c9bb VS |
960 | |
961 | mkdir $(DISTDIR)/utils/HelpGen | |
962 | mkdir $(DISTDIR)/utils/HelpGen/src | |
963 | cp $(UTILSDIR)/HelpGen/Makefile.in $(DISTDIR)/utils/HelpGen | |
a13a7f89 RL |
964 | cp $(UTILSDIR)/HelpGen/src/Makefile.in $(DISTDIR)/utils/HelpGen/src |
965 | cp $(UTILSDIR)/HelpGen/src/*.h $(DISTDIR)/utils/HelpGen/src | |
966 | cp $(UTILSDIR)/HelpGen/src/*.cpp $(DISTDIR)/utils/HelpGen/src | |
ca58c9bb | 967 | |
ca58c9bb VS |
968 | mkdir $(DISTDIR)/utils/helpview |
969 | mkdir $(DISTDIR)/utils/helpview/src | |
970 | mkdir $(DISTDIR)/utils/helpview/src/bitmaps | |
971 | cp $(UTILSDIR)/helpview/Makefile.in $(DISTDIR)/utils/helpview | |
972 | cp $(UTILSDIR)/helpview/src/*.h $(DISTDIR)/utils/helpview/src | |
973 | cp $(UTILSDIR)/helpview/src/*.cpp $(DISTDIR)/utils/helpview/src | |
974 | cp $(UTILSDIR)/helpview/src/Makefile.in $(DISTDIR)/utils/helpview/src | |
975 | cp $(UTILSDIR)/helpview/src/test.zip $(DISTDIR)/utils/helpview/src | |
976 | cp $(UTILSDIR)/helpview/src/bitmaps/*.xpm $(DISTDIR)/utils/helpview/src/bitmaps | |
977 | ||
a13a7f89 RL |
978 | mkdir $(DISTDIR)/utils/wxrc |
979 | cp $(UTILSDIR)/wxrc/Makefile.in $(DISTDIR)/utils/wxrc | |
980 | cp $(UTILSDIR)/wxrc/*.cpp $(DISTDIR)/utils/wxrc | |
981 | cp $(UTILSDIR)/wxrc/*.rc $(DISTDIR)/utils/wxrc | |
982 | ||
ca58c9bb | 983 | MISC_DIST: ALL_GUI_DIST |
ca58c9bb VS |
984 | |
985 | INTL_DIST: | |
986 | mkdir $(DISTDIR)/locale | |
987 | cp $(INTLDIR)/Makefile $(DISTDIR)/locale | |
988 | cp $(INTLDIR)/*.po $(DISTDIR)/locale | |
989 | -cp $(INTLDIR)/*.mo $(DISTDIR)/locale | |
990 | ||
991 | MANUAL_DIST: | |
992 | mkdir $(DISTDIR)/docs | |
993 | mkdir $(DISTDIR)/docs/latex | |
994 | mkdir $(DISTDIR)/docs/latex/wx | |
995 | cp $(DOCDIR)/latex/wx/*.tex $(DISTDIR)/docs/latex/wx | |
996 | cp $(DOCDIR)/latex/wx/*.inc $(DISTDIR)/docs/latex/wx | |
997 | cp $(DOCDIR)/latex/wx/*.gif $(DISTDIR)/docs/latex/wx | |
998 | cp $(DOCDIR)/latex/wx/*.ini $(DISTDIR)/docs/latex/wx | |
999 | cp $(DOCDIR)/latex/wx/*.bib $(DISTDIR)/docs/latex/wx | |
1000 | cp $(DOCDIR)/latex/wx/*.sty $(DISTDIR)/docs/latex/wx | |
1001 | ||
6d7dec7b RD |
1002 | |
1003 | # Copy all the files from wxPython needed for the Debian source package, | |
1004 | # and then remove some that are not needed. | |
ca58c9bb | 1005 | PYTHON_DIST: |
6d7dec7b RD |
1006 | for dir in `grep -v '#' $(WXDIR)/wxPython/distrib/DIRLIST`; do \ |
1007 | echo "Copying dir: $$dir..."; \ | |
1008 | mkdir $(DISTDIR)/$$dir; \ | |
1009 | cp $(WXDIR)/$$dir/* $(DISTDIR)/$$dir > /dev/null 2>&1; \ | |
1010 | done; \ | |
1011 | \ | |
1012 | find $(DISTDIR)/wxPython -name "*~" > RM_FILES; \ | |
1013 | find $(DISTDIR)/wxPython -name "*.pyc" >> RM_FILES; \ | |
1014 | find $(DISTDIR)/wxPython -name "*.bat" >> RM_FILES; \ | |
1015 | find $(DISTDIR)/wxPython -name "core" >> RM_FILES; \ | |
1016 | find $(DISTDIR)/wxPython -name "core.[0-9]*" >> RM_FILES; \ | |
1017 | find $(DISTDIR)/wxPython -name "*.orig" >> RM_FILES; \ | |
1018 | find $(DISTDIR)/wxPython -name "*.rej" >> RM_FILES; \ | |
1019 | for f in `cat RM_FILES`; do rm $$f; done; \ | |
1020 | rm RM_FILES | |
1021 | ||
ca58c9bb VS |
1022 | |
1023 | distrib_clean: | |
1024 | $(RM) -r _dist_dir | |
1025 | ||
1026 | # VZ: the -only targets allow to do "make dist bzip-dist-only" without copying | |
1027 | # the files twice | |
1028 | dist-only: | |
77ffb593 | 1029 | @echo "*** Creating wxWidgets distribution in $(DISTDIR)..." |
ca58c9bb VS |
1030 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); |
1031 | @if test "$(USE_GUI)" = 1; then \ | |
1032 | cd $(DISTDIR); \ | |
1033 | mv samples wxSamples-$(WX_VERSION); \ | |
1034 | echo "*** Creating wxSamples archive..."; \ | |
1035 | tar ch wxSamples-$(WX_VERSION) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1036 | mv wxSamples-$(WX_VERSION) samples; \ | |
1037 | mv demos wxDemos-$(WX_VERSION); \ | |
1038 | echo "*** Creating wxDemos archive..."; \ | |
1039 | tar ch wxDemos-$(WX_VERSION) | gzip -f9 > ../../$(WXDEMOS); \ | |
1040 | mv wxDemos-$(WX_VERSION) demos; \ | |
1041 | fi | |
1042 | ||
1043 | dist: @GUIDIST@ | |
77ffb593 | 1044 | @echo "*** Creating wxWidgets distribution in $(DISTDIR)..." |
ca58c9bb VS |
1045 | @# now prune away a lot of the crap included by using cp -R |
1046 | @# in other dist targets. | |
1047 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \ | |
1048 | \( -name "makefile.*" -a ! -name "makefile.unx" \) \) \ | |
1049 | -print0 | xargs -0 rm -rf | |
1050 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); | |
1051 | @if test "$(USE_GUI)" = 1; then \ | |
1052 | cd $(DISTDIR); \ | |
1053 | mv samples wxSamples-$(WX_VERSION); \ | |
1054 | echo "*** Creating wxSamples archive..."; \ | |
1055 | tar ch wxSamples-$(WX_VERSION) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1056 | mv wxSamples-$(WX_VERSION) samples; \ | |
1057 | mv demos wxDemos-$(WX_VERSION); \ | |
1058 | echo "*** Creating wxDemos archive..."; \ | |
1059 | tar ch wxDemos-$(WX_VERSION) | gzip -f9 > ../../$(WXDEMOS); \ | |
1060 | mv wxDemos-$(WX_VERSION) demos; \ | |
1061 | fi | |
1062 | ||
1063 | bzip-dist-only: | |
77ffb593 | 1064 | @echo "*** Creating wxWidgets distribution in $(DISTDIR)..." |
ca58c9bb VS |
1065 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP); |
1066 | @if test "$(USE_GUI)" = 1; then \ | |
1067 | cd $(DISTDIR); \ | |
1068 | mv samples wxSamples-${WX_VERSION}; \ | |
1069 | echo "*** Creating wxSamples archive..."; \ | |
1070 | tar ch wxSamples-${WX_VERSION} | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1071 | mv wxSamples-${WX_VERSION} samples; \ | |
1072 | mv demos wxDemos-${WX_VERSION}; \ | |
1073 | echo "*** Creating wxDemos archive..."; \ | |
1074 | tar ch wxDemos-${WX_VERSION} | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1075 | mv wxDemos-${WX_VERSION} demos; \ | |
1076 | fi | |
1077 | ||
1078 | bzip-dist: @GUIDIST@ | |
77ffb593 | 1079 | @echo "*** Creating wxWidgets distribution in $(DISTDIR)..." |
ca58c9bb VS |
1080 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP) |
1081 | @if test "$(USE_GUI)" = 1; then \ | |
1082 | cd $(DISTDIR); \ | |
1083 | mv samples wxSamples; \ | |
1084 | tar ch wxSamples | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1085 | mv wxSamples samples; \ | |
1086 | mv demos wxDemos; \ | |
1087 | tar ch wxDemos | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1088 | mv wxDemos demos; \ | |
1089 | fi | |
1090 | ||
1091 | # RR: Copy text and binary data separatly | |
1092 | win-dist: MSW_ZIP_TEXT_DIST | |
77ffb593 | 1093 | @echo "*** Creating wxWidgets ZIP distribution in $(DISTDIR)..." |
ca58c9bb VS |
1094 | @cd _dist_dir && mv $(DISTDIRNAME) wxMSW |
1095 | @cd _dist_dir && zip -r -l ../$(WXARCHIVE_ZIP) * | |
1096 | cp $(INCDIR)/wx/msw/*.cur _dist_dir/wxMSW/include/wx/msw | |
1097 | cp $(INCDIR)/wx/msw/*.ico _dist_dir/wxMSW/include/wx/msw | |
1098 | cp $(INCDIR)/wx/msw/*.bmp _dist_dir/wxMSW/include/wx/msw | |
1099 | @cd _dist_dir && zip -r ../$(WXARCHIVE_ZIP) wxMSW/include/wx/msw/*.cur | |
1100 | @cd _dist_dir && zip -r ../$(WXARCHIVE_ZIP) wxMSW/include/wx/msw/*.ico | |
1101 | @cd _dist_dir && zip -r ../$(WXARCHIVE_ZIP) wxMSW/include/wx/msw/*.bmp | |
1102 | ||
ceec2216 | 1103 | debian-dist: DEBIAN_SOURCE_DIR = $(WXDIR)/../wxwidgets@WX_RELEASE@@WX_FLAVOUR@-@WX_SUBVERSION@ |
ca58c9bb VS |
1104 | debian-dist: debian-native-dist debian-msw-dirs MSW_DIST |
1105 | mkdir $(DISTDIR)/debian | |
1106 | -cp $(WXDIR)/debian/* $(DISTDIR)/debian | |
1107 | cp $(DOCDIR)/licence.txt $(DISTDIR)/docs | |
1108 | cp $(DOCDIR)/licendoc.txt $(DISTDIR)/docs | |
1109 | cp $(DOCDIR)/preamble.txt $(DISTDIR)/docs | |
1110 | rm -f $(DISTDIR)/*.spec | |
1111 | ||
1112 | @# now prune away a lot of the crap included by using cp -R | |
1113 | @# in other dist targets. Ugly and hardly portable but it | |
1114 | @# will run on any Debian box and that's enough for now. | |
1115 | ||
b63b07a8 RL |
1116 | rm -rf $(DISTDIR)/contrib/build |
1117 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" \ | |
1118 | -o -name "*.dsw" -o -name "*.hh*" -o -name "*.mms" \ | |
1119 | -o -name "*.mcp" -o -name "*M*.xml" -o -name "*.r" \ | |
1120 | -o -name "*.bkl" -o -name "*.pro" -o -name "*.def" \ | |
1121 | -o -name "*.vpj" -o -name "*.sc" \ | |
1122 | -o \( -name "makefile.*" -a ! -name "makefile.unx" \) \ | |
1123 | \) -print0 | xargs -0 rm -rf | |
1124 | ||
1125 | rm -rf $(DISTDIR)/wxPython/SWIG | |
1126 | rm -rf $(DISTDIR)/wxPython/distrib | |
1127 | rm -rf $(DISTDIR)/wxPython/distutils | |
1128 | rm -rf $(DISTDIR)/wxPython/samples | |
1129 | rm -rf $(DISTDIR)/wxPython/contrib/iewin | |
1130 | find $(DISTDIR)/wxPython \( -name "mac" -o -name "msw" \) -print0 | xargs -0 rm -rf | |
1131 | ||
ceec2216 RL |
1132 | rm -rf $(DEBIAN_SOURCE_DIR) |
1133 | mv $(DISTDIR) $(DEBIAN_SOURCE_DIR) | |
e1293dcf | 1134 | |
ca58c9bb VS |
1135 | |
1136 | debian-native-dist: @GUIDIST@ UNIV_DIST MANUAL_DIST PYTHON_DIST | |
1137 | ||
1138 | debian-msw-dirs: | |
1139 | mkdir $(DISTDIR)/include/wx/msw | |
1140 | mkdir $(DISTDIR)/src/msw | |
1141 | ||
1142 | ||
1143 | RPMTOP=_dist_dir/_rpm_top | |
1144 | ||
1145 | rpm: bzip-dist | |
1146 | @echo "*** Building RPMs ***" | |
1147 | -mkdir $(RPMTOP) | |
1148 | -mkdir $(RPMTOP)/SOURCES | |
1149 | -mkdir $(RPMTOP)/SPECS | |
1150 | -mkdir $(RPMTOP)/BUILD | |
1151 | -mkdir $(RPMTOP)/RPMS | |
1152 | -mkdir $(RPMTOP)/SRPMS | |
1153 | cp -f $(WXARCHIVE_BZIP) $(RPMTOP)/SOURCES | |
1154 | rpm -ba --define "_topdir `pwd`/$(RPMTOP)" $(WXDIR)/wx$(TOOLKIT).spec | |
1155 | mv -f `find $(RPMTOP) -name "wx$(TOOLKIT)*.rpm"` . |