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