]>
Commit | Line | Data |
---|---|---|
2a29700e RR |
1 | #! /bin/sh |
2 | # | |
3 | # This script is creates a dir tree in ~/wxgtk_dist which | |
4 | # can then be packed into an archive | |
5 | ||
301cd871 RR |
6 | echo -------- |
7 | echo This script will copy the wxGTK release files into ~/wxgtk_dist | |
8 | echo -------- | |
9 | echo | |
2a29700e RR |
10 | |
11 | mkdir ~/wxgtk_dist | |
12 | mkdir ~/wxgtk_dist/wxGTK | |
13 | ||
14 | echo Base dir.. | |
15 | ||
16 | cd ../.. | |
17 | cp wxGTK.spec ~/wxgtk_dist/wxGTK | |
18 | cp Makefile ~/wxgtk_dist/wxGTK | |
19 | cp configure ~/wxgtk_dist/wxGTK | |
20 | cp configure.in ~/wxgtk_dist/wxGTK | |
21 | cp config.sub ~/wxgtk_dist/wxGTK | |
22 | cp config.guess ~/wxgtk_dist/wxGTK | |
23 | cp install-sh ~/wxgtk_dist/wxGTK | |
24 | cp mkinstalldirs ~/wxgtk_dist/wxGTK | |
25 | cp template.mak ~/wxgtk_dist/wxGTK | |
26 | cp wx-config.in ~/wxgtk_dist/wxGTK | |
27 | ||
28 | echo Docs.. | |
29 | ||
30 | cd docs/gtk | |
31 | cp COPYING.LIB ~/wxgtk_dist/wxGTK | |
32 | cp install.txt ~/wxgtk_dist/wxGTK/INSTALL.txt | |
33 | cp licence.txt ~/wxgtk_dist/wxGTK/LICENCE.txt | |
34 | cp readme.txt ~/wxgtk_dist/wxGTK/README.txt | |
35 | cp todo.txt ~/wxgtk_dist/wxGTK/TODO.txt | |
36 | cd .. | |
37 | cp symbols.txt ~/wxgtk_dist/wxGTK/SYMBOLS.txt | |
38 | cd .. | |
39 | ||
40 | echo Include dir.. | |
41 | ||
42 | mkdir ~/wxgtk_dist/wxGTK/include | |
43 | cd include | |
44 | cp install-sh ~/wxgtk_dist/wxGTK/include | |
45 | ||
46 | mkdir ~/wxgtk_dist/wxGTK/include/wx | |
47 | cd wx | |
48 | cp install-sh ~/wxgtk_dist/wxGTK/include/wx | |
49 | cp *.h ~/wxgtk_dist/wxGTK/include/wx | |
50 | cp *.cpp ~/wxgtk_dist/wxGTK/include/wx | |
51 | ||
52 | mkdir ~/wxgtk_dist/wxGTK/include/wx/generic | |
53 | cd generic | |
54 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/generic | |
55 | cd .. | |
56 | ||
57 | mkdir ~/wxgtk_dist/wxGTK/include/wx/gtk | |
58 | cd gtk | |
59 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/gtk | |
60 | rm ~/wxgtk_dist/wxGTK/include/wx/gtk/setup.h | |
61 | cd .. | |
62 | ||
63 | mkdir ~/wxgtk_dist/wxGTK/include/wx/protocol | |
64 | cd protocol | |
65 | cp *.h ~/wxgtk_dist/wxGTK/include/wx/protocol | |
66 | cd .. | |
67 | ||
68 | cd .. | |
69 | cd .. | |
70 | ||
71 | echo Base lib.. | |
72 | ||
73 | mkdir ~/wxgtk_dist/wxGTK/lib | |
74 | cp ./lib/dummy ~/wxgtk_dist/wxGTK/lib | |
75 | ||
76 | echo Misc dir.. | |
77 | ||
78 | mkdir ~/wxgtk_dist/wxGTK/misc | |
79 | mkdir ~/wxgtk_dist/wxGTK/misc/afm | |
80 | mkdir ~/wxgtk_dist/wxGTK/misc/gs_afm | |
81 | ||
82 | cp ./misc/afm/*.afm ~/wxgtk_dist/wxGTK/misc/afm | |
83 | cp ./misc/gs_afm/*.afm ~/wxgtk_dist/wxGTK/misc/gs_afm | |
84 | ||
85 | echo Setup dir.. | |
86 | ||
87 | cd setup | |
88 | mkdir ~/wxgtk_dist/wxGTK/setup | |
89 | cp maketmpl.in ~/wxgtk_dist/wxGTK/setup | |
90 | cp setup.hin ~/wxgtk_dist/wxGTK/setup | |
91 | cp substit.in ~/wxgtk_dist/wxGTK/setup | |
92 | ||
93 | cd general | |
94 | mkdir ~/wxgtk_dist/wxGTK/setup/general | |
95 | cp createall ~/wxgtk_dist/wxGTK/setup/general | |
96 | cp jointar ~/wxgtk_dist/wxGTK/setup/general | |
97 | cp makeapp ~/wxgtk_dist/wxGTK/setup/general | |
98 | cp makedirs ~/wxgtk_dist/wxGTK/setup/general | |
99 | cp makedoc ~/wxgtk_dist/wxGTK/setup/general | |
100 | cp mygrep ~/wxgtk_dist/wxGTK/setup/general | |
101 | cp needed ~/wxgtk_dist/wxGTK/setup/general | |
102 | cd .. | |
103 | ||
104 | cd rules | |
105 | mkdir ~/wxgtk_dist/wxGTK/setup/rules | |
106 | cp * ~/wxgtk_dist/wxGTK/setup/rules | |
107 | ||
108 | cd generic | |
109 | mkdir ~/wxgtk_dist/wxGTK/setup/rules/generic | |
110 | cp * ~/wxgtk_dist/wxGTK/setup/rules/generic | |
111 | cd .. | |
112 | ||
113 | cd .. | |
114 | ||
115 | cd shared | |
116 | mkdir ~/wxgtk_dist/wxGTK/setup/shared | |
117 | cp * ~/wxgtk_dist/wxGTK/setup/shared | |
118 | cd .. | |
119 | ||
120 | cd .. | |
121 | ||
cf33637f RR |
122 | echo User dir.. |
123 | ||
124 | cd src | |
125 | mkdir ~/wxgtk_dist/wxGTK/user | |
126 | cp Makefile ~/wxgtk_dist/wxGTK/user | |
127 | cd .. | |
128 | ||
2a29700e RR |
129 | echo Src dir.. |
130 | ||
131 | cd src | |
132 | mkdir ~/wxgtk_dist/wxGTK/src | |
133 | cp Makefile ~/wxgtk_dist/wxGTK/src | |
134 | cp Makefile.in ~/wxgtk_dist/wxGTK/src | |
135 | cp gtk.inc ~/wxgtk_dist/wxGTK/src | |
136 | ||
137 | cd common | |
138 | mkdir ~/wxgtk_dist/wxGTK/src/common | |
139 | cp glob.inc ~/wxgtk_dist/wxGTK/src/common | |
140 | cp lexer.l ~/wxgtk_dist/wxGTK/src/common | |
141 | cp parser.y ~/wxgtk_dist/wxGTK/src/common | |
142 | cp y_tab.c ~/wxgtk_dist/wxGTK/src/common | |
143 | cp extended.c ~/wxgtk_dist/wxGTK/src/common | |
144 | cp *.cpp ~/wxgtk_dist/wxGTK/src/common | |
145 | cd .. | |
146 | ||
147 | cd gtk | |
148 | mkdir ~/wxgtk_dist/wxGTK/src/gtk | |
149 | cp *.xbm ~/wxgtk_dist/wxGTK/src/gtk | |
150 | cp *.c ~/wxgtk_dist/wxGTK/src/gtk | |
151 | cp *.inc ~/wxgtk_dist/wxGTK/src/gtk | |
152 | cp *.cpp ~/wxgtk_dist/wxGTK/src/gtk | |
153 | cd .. | |
154 | ||
155 | cd generic | |
156 | mkdir ~/wxgtk_dist/wxGTK/src/generic | |
157 | cp *.cpp ~/wxgtk_dist/wxGTK/src/generic | |
158 | cd .. | |
159 | ||
160 | cd iodbc | |
161 | mkdir ~/wxgtk_dist/wxGTK/src/iodbc | |
162 | cp * ~/wxgtk_dist/wxGTK/src/iodbc | |
163 | cd .. | |
164 | ||
165 | cd zlib | |
166 | mkdir ~/wxgtk_dist/wxGTK/src/zlib | |
167 | cp * ~/wxgtk_dist/wxGTK/src/zlib | |
168 | cd .. | |
169 | ||
170 | cd png | |
171 | mkdir ~/wxgtk_dist/wxGTK/src/png | |
172 | cp * ~/wxgtk_dist/wxGTK/src/png | |
173 | cd .. | |
174 | ||
175 | cd .. | |
176 | ||
177 | echo Utils dir.. | |
178 | ||
179 | cd utils | |
180 | mkdir ~/wxgtk_dist/wxGTK/utils | |
181 | cp Makefile ~/wxgtk_dist/wxGTK/utils | |
182 | ||
183 | cd glcanvas | |
184 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas | |
185 | cp ./docs/notes.txt ~/wxgtk_dist/wxGTK/utils/glcanvas/NOTES.txt | |
186 | ||
187 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk | |
188 | cp ./gtk/glcanvas.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk | |
189 | cp ./gtk/glcanvas.h ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk | |
190 | ||
191 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples | |
192 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
193 | mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
194 | ||
195 | cd samples/cube | |
196 | cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
197 | cp cube.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
198 | cp cube.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube | |
199 | cd .. | |
200 | ||
201 | cd penguin | |
202 | cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
203 | cp penguin.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
204 | cp penguin.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
205 | cp trackball.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
206 | cp trackball.c ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
207 | cp lw.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
208 | cp lw.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
209 | cp penguin.lwo ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin | |
210 | cd ../../.. | |
211 | ||
212 | cd dialoged/src | |
213 | mkdir ~/wxgtk_dist/wxGTK/utils/dialoged | |
214 | cp Makefile ~/wxgtk_dist/wxGTK/utils/dialoged | |
215 | cp dialoged.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
216 | cp dlghndlr.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
217 | cp edlist.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
218 | cp edtree.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
219 | cp reseditr.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
220 | cp reswrite.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
221 | cp symbtabl.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
222 | cp winprop.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
223 | cp winstyle.cpp ~/wxgtk_dist/wxGTK/utils/dialoged | |
224 | cp dialoged.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
225 | cp dlghndlr.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
226 | cp edlist.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
227 | cp edtree.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
228 | cp reseditr.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
229 | cp symbtabl.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
230 | cp winprop.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
231 | cp winstyle.h ~/wxgtk_dist/wxGTK/utils/dialoged | |
232 | ||
233 | cd bitmaps | |
234 | mkdir ~/wxgtk_dist/wxGTK/utils/dialoged/bitmaps | |
235 | cp *.xpm ~/wxgtk_dist/wxGTK/utils/dialoged/bitmaps | |
5aa5e35a RR |
236 | cd ../../.. |
237 | ||
238 | cd wxPython | |
239 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython | |
240 | cp README.txt ~/wxgtk_dist/wxGTK/utils/wxPython | |
241 | cp TODO.txt ~/wxgtk_dist/wxGTK/utils/wxPython | |
242 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/src | |
243 | cp ./src/* ~/wxgtk_dist/wxGTK/utils/wxPython/src | |
244 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/src/gtk | |
245 | cp ./src/gtk/* ~/wxgtk_dist/wxGTK/utils/wxPython/src/gtk | |
246 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/tests | |
247 | cp ./tests/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/tests | |
248 | mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/tests/bitmaps | |
249 | cp ./tests/bitmaps/* ~/wxgtk_dist/wxGTK/utils/wxPython/tests/bitmaps | |
250 | cd ../.. | |
2a29700e RR |
251 | |
252 | echo Samples dir.. | |
253 | ||
254 | cd samples | |
255 | mkdir ~/wxgtk_dist/wxGTK/samples | |
256 | cp Makefile ~/wxgtk_dist/wxGTK/samples | |
257 | ||
258 | echo Minimal sample.. | |
259 | ||
260 | cd minimal | |
261 | mkdir ~/wxgtk_dist/wxGTK/samples/minimal | |
262 | cp Makefile ~/wxgtk_dist/wxGTK/samples/minimal | |
263 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/minimal | |
264 | cp minimal.cpp ~/wxgtk_dist/wxGTK/samples/minimal | |
265 | cp mondrian.xpm ~/wxgtk_dist/wxGTK/samples/minimal | |
266 | cd .. | |
267 | ||
268 | echo Bombs sample.. | |
269 | ||
270 | cd bombs | |
271 | mkdir ~/wxgtk_dist/wxGTK/samples/bombs | |
272 | cp Makefile ~/wxgtk_dist/wxGTK/samples/bombs | |
273 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/bombs | |
274 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/bombs | |
275 | cp *.h ~/wxgtk_dist/wxGTK/samples/bombs | |
276 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/bombs | |
277 | cd .. | |
278 | ||
279 | echo Checklst sample.. | |
280 | ||
281 | cd checklst | |
282 | mkdir ~/wxgtk_dist/wxGTK/samples/checklst | |
283 | cp Makefile ~/wxgtk_dist/wxGTK/samples/checklst | |
284 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/checklst | |
285 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/checklst | |
286 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/checklst | |
287 | cd .. | |
288 | ||
289 | echo Config sample.. | |
290 | ||
291 | cd config | |
292 | mkdir ~/wxgtk_dist/wxGTK/samples/config | |
293 | cp Makefile ~/wxgtk_dist/wxGTK/samples/config | |
294 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/config | |
295 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/config | |
296 | cd .. | |
297 | ||
298 | echo Controls sample.. | |
299 | ||
300 | cd controls | |
301 | mkdir ~/wxgtk_dist/wxGTK/samples/controls | |
302 | cp Makefile ~/wxgtk_dist/wxGTK/samples/controls | |
303 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/controls | |
304 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/controls | |
305 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/controls | |
306 | cd icons | |
307 | mkdir ~/wxgtk_dist/wxGTK/samples/controls/icons | |
308 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/controls/icons | |
309 | cd ../.. | |
310 | ||
311 | echo Db sample.. | |
312 | ||
313 | cd db | |
314 | mkdir ~/wxgtk_dist/wxGTK/samples/db | |
315 | cp Makefile ~/wxgtk_dist/wxGTK/samples/db | |
316 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/db | |
317 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/db | |
318 | cp *.h ~/wxgtk_dist/wxGTK/samples/db | |
319 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/db | |
320 | cd .. | |
321 | ||
322 | echo DDE sample.. | |
323 | ||
324 | cd dde | |
325 | mkdir ~/wxgtk_dist/wxGTK/samples/dde | |
326 | cp Makefile ~/wxgtk_dist/wxGTK/samples/dde | |
327 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dde | |
328 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dde | |
329 | cp *.h ~/wxgtk_dist/wxGTK/samples/dde | |
330 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/dde | |
331 | cd .. | |
332 | ||
333 | echo Dialogs sample.. | |
334 | ||
335 | cd dialogs | |
336 | mkdir ~/wxgtk_dist/wxGTK/samples/dialogs | |
337 | cp Makefile ~/wxgtk_dist/wxGTK/samples/dialogs | |
338 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dialogs | |
339 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dialogs | |
340 | cp *.h ~/wxgtk_dist/wxGTK/samples/dialogs | |
341 | cd .. | |
342 | ||
343 | echo DnD sample.. | |
344 | ||
345 | cd dnd | |
346 | mkdir ~/wxgtk_dist/wxGTK/samples/dnd | |
347 | cp Makefile ~/wxgtk_dist/wxGTK/samples/dnd | |
348 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dnd | |
349 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dnd | |
350 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/dnd | |
351 | cd .. | |
352 | ||
353 | echo Docview sample.. | |
354 | ||
355 | cd docview | |
356 | mkdir ~/wxgtk_dist/wxGTK/samples/docview | |
357 | cp Makefile ~/wxgtk_dist/wxGTK/samples/docview | |
358 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/docview | |
359 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/docview | |
360 | cp *.h ~/wxgtk_dist/wxGTK/samples/docview | |
361 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/docview | |
362 | cd .. | |
363 | ||
364 | echo DocvwMDI sample.. | |
365 | ||
366 | cd docvwmdi | |
367 | mkdir ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
368 | cp Makefile ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
369 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
370 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
371 | cp *.h ~/wxgtk_dist/wxGTK/samples/docvwmdi | |
372 | cd .. | |
373 | ||
374 | echo Dynamic sample.. | |
375 | ||
376 | cd dynamic | |
377 | mkdir ~/wxgtk_dist/wxGTK/samples/dynamic | |
378 | cp Makefile ~/wxgtk_dist/wxGTK/samples/dynamic | |
379 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dynamic | |
380 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/dynamic | |
381 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/dynamic | |
382 | cd .. | |
383 | ||
384 | echo Forty sample.. | |
385 | ||
386 | cd forty | |
387 | mkdir ~/wxgtk_dist/wxGTK/samples/forty | |
388 | cp Makefile ~/wxgtk_dist/wxGTK/samples/forty | |
389 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/forty | |
390 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/forty | |
391 | cp *.h ~/wxgtk_dist/wxGTK/samples/forty | |
392 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/forty | |
cf33637f | 393 | cp *.xbm ~/wxgtk_dist/wxGTK/samples/forty |
2a29700e RR |
394 | cd .. |
395 | ||
396 | echo Fractal sample.. | |
397 | ||
398 | cd fractal | |
399 | mkdir ~/wxgtk_dist/wxGTK/samples/fractal | |
400 | cp Makefile ~/wxgtk_dist/wxGTK/samples/fractal | |
401 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/fractal | |
402 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/fractal | |
403 | cd .. | |
404 | ||
405 | echo Grid sample.. | |
406 | ||
407 | cd grid | |
408 | mkdir ~/wxgtk_dist/wxGTK/samples/grid | |
409 | cp Makefile ~/wxgtk_dist/wxGTK/samples/grid | |
410 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/grid | |
411 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/grid | |
412 | cd .. | |
413 | ||
414 | echo Help sample.. | |
415 | ||
416 | cd help | |
417 | mkdir ~/wxgtk_dist/wxGTK/samples/help | |
418 | cp Makefile ~/wxgtk_dist/wxGTK/samples/help | |
419 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/help | |
420 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/help | |
421 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/help | |
422 | cd doc | |
423 | mkdir ~/wxgtk_dist/wxGTK/samples/help/doc | |
424 | cp * ~/wxgtk_dist/wxGTK/samples/help/doc | |
425 | cd ../.. | |
426 | ||
427 | echo Image sample.. | |
428 | ||
429 | cd image | |
430 | mkdir ~/wxgtk_dist/wxGTK/samples/image | |
431 | cp Makefile ~/wxgtk_dist/wxGTK/samples/image | |
432 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/image | |
433 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/image | |
434 | cp horse.png ~/wxgtk_dist/wxGTK/samples/image | |
435 | cd .. | |
436 | ||
437 | echo Internat sample.. | |
438 | ||
439 | cd internat | |
440 | mkdir ~/wxgtk_dist/wxGTK/samples/internat | |
441 | cp Makefile ~/wxgtk_dist/wxGTK/samples/internat | |
442 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/internat | |
443 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/internat | |
444 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/internat | |
445 | cp readme.txt ~/wxgtk_dist/wxGTK/samples/internat | |
446 | cp wxstd.po ~/wxgtk_dist/wxGTK/samples/internat | |
447 | cd fr | |
448 | mkdir ~/wxgtk_dist/wxGTK/samples/internat/fr | |
449 | cp *.?o ~/wxgtk_dist/wxGTK/samples/internat/fr | |
450 | cd ../.. | |
451 | ||
452 | echo Layout sample.. | |
453 | ||
454 | cd layout | |
455 | mkdir ~/wxgtk_dist/wxGTK/samples/layout | |
456 | cp Makefile ~/wxgtk_dist/wxGTK/samples/layout | |
457 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/layout | |
458 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/layout | |
459 | cp *.h ~/wxgtk_dist/wxGTK/samples/layout | |
460 | cd .. | |
461 | ||
462 | echo Listctrl sample.. | |
463 | ||
464 | cd listctrl | |
465 | mkdir ~/wxgtk_dist/wxGTK/samples/listctrl | |
466 | cp Makefile ~/wxgtk_dist/wxGTK/samples/listctrl | |
467 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/listctrl | |
468 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/listctrl | |
469 | cp *.h ~/wxgtk_dist/wxGTK/samples/listctrl | |
470 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/listctrl | |
471 | cd bitmaps | |
472 | mkdir ~/wxgtk_dist/wxGTK/samples/listctrl/bitmaps | |
473 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/listctrl/bitmaps | |
474 | cd ../.. | |
475 | ||
476 | echo MDI sample.. | |
477 | ||
478 | cd mdi | |
479 | mkdir ~/wxgtk_dist/wxGTK/samples/mdi | |
480 | cp Makefile ~/wxgtk_dist/wxGTK/samples/mdi | |
481 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/mdi | |
482 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/mdi | |
483 | cp *.h ~/wxgtk_dist/wxGTK/samples/mdi | |
484 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/mdi | |
485 | cd bitmaps | |
486 | mkdir ~/wxgtk_dist/wxGTK/samples/mdi/bitmaps | |
487 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/mdi/bitmaps | |
488 | cd ../.. | |
489 | ||
490 | echo Memcheck sample.. | |
491 | ||
492 | cd memcheck | |
493 | mkdir ~/wxgtk_dist/wxGTK/samples/memcheck | |
494 | cp Makefile ~/wxgtk_dist/wxGTK/samples/memcheck | |
495 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/memcheck | |
496 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/memcheck | |
497 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/memcheck | |
498 | cd .. | |
499 | ||
500 | echo Minifram sample.. | |
501 | ||
502 | cd minifram | |
503 | mkdir ~/wxgtk_dist/wxGTK/samples/minifram | |
504 | cp Makefile ~/wxgtk_dist/wxGTK/samples/minifram | |
505 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/minifram | |
506 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/minifram | |
507 | cp *.h ~/wxgtk_dist/wxGTK/samples/minifram | |
508 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/minifram | |
509 | cd bitmaps | |
510 | mkdir ~/wxgtk_dist/wxGTK/samples/minifram/bitmaps | |
511 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/minifram/bitmaps | |
512 | cd ../.. | |
513 | ||
514 | echo Notebook sample.. | |
515 | ||
516 | cd notebook | |
517 | mkdir ~/wxgtk_dist/wxGTK/samples/notebook | |
518 | cp Makefile ~/wxgtk_dist/wxGTK/samples/notebook | |
519 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/notebook | |
520 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/notebook | |
521 | cp *.h ~/wxgtk_dist/wxGTK/samples/notebook | |
522 | cd .. | |
523 | ||
524 | echo PNG sample.. | |
525 | ||
526 | cd png | |
527 | mkdir ~/wxgtk_dist/wxGTK/samples/png | |
528 | cp Makefile ~/wxgtk_dist/wxGTK/samples/png | |
529 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/png | |
530 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/png | |
531 | cp *.h ~/wxgtk_dist/wxGTK/samples/png | |
532 | cp *.png ~/wxgtk_dist/wxGTK/samples/png | |
533 | cd .. | |
534 | ||
535 | echo Printing sample.. | |
536 | ||
537 | cd printing | |
538 | mkdir ~/wxgtk_dist/wxGTK/samples/printing | |
539 | cp Makefile ~/wxgtk_dist/wxGTK/samples/printing | |
540 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/printing | |
541 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/printing | |
542 | cp *.h ~/wxgtk_dist/wxGTK/samples/printing | |
543 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/printing | |
544 | cd .. | |
545 | ||
546 | echo Proplist sample.. | |
547 | ||
548 | cd proplist | |
549 | mkdir ~/wxgtk_dist/wxGTK/samples/proplist | |
550 | cp Makefile ~/wxgtk_dist/wxGTK/samples/proplist | |
551 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/proplist | |
552 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/proplist | |
553 | cp *.h ~/wxgtk_dist/wxGTK/samples/proplist | |
554 | cd .. | |
555 | ||
556 | echo Resource sample.. | |
557 | ||
558 | cd resource | |
559 | mkdir ~/wxgtk_dist/wxGTK/samples/resource | |
560 | cp Makefile ~/wxgtk_dist/wxGTK/samples/resource | |
561 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/resource | |
562 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/resource | |
563 | cp *.h ~/wxgtk_dist/wxGTK/samples/resource | |
564 | cp *.wxr ~/wxgtk_dist/wxGTK/samples/resource | |
565 | cd .. | |
566 | ||
567 | echo Sashtest sample.. | |
568 | ||
569 | cd sashtest | |
570 | mkdir ~/wxgtk_dist/wxGTK/samples/sashtest | |
571 | cp Makefile ~/wxgtk_dist/wxGTK/samples/sashtest | |
572 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/sashtest | |
573 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/sashtest | |
574 | cp *.h ~/wxgtk_dist/wxGTK/samples/sashtest | |
575 | cd .. | |
576 | ||
577 | echo Splitter sample.. | |
578 | ||
579 | cd splitter | |
580 | mkdir ~/wxgtk_dist/wxGTK/samples/splitter | |
581 | cp Makefile ~/wxgtk_dist/wxGTK/samples/splitter | |
582 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/splitter | |
583 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/splitter | |
584 | cd .. | |
585 | ||
586 | echo Tab sample.. | |
587 | ||
588 | cd tab | |
589 | mkdir ~/wxgtk_dist/wxGTK/samples/tab | |
590 | cp Makefile ~/wxgtk_dist/wxGTK/samples/tab | |
591 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/tab | |
592 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/tab | |
593 | cp *.h ~/wxgtk_dist/wxGTK/samples/tab | |
594 | cd .. | |
595 | ||
596 | echo Thread sample.. | |
597 | ||
598 | cd thread | |
599 | mkdir ~/wxgtk_dist/wxGTK/samples/thread | |
600 | cp Makefile ~/wxgtk_dist/wxGTK/samples/thread | |
601 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/thread | |
602 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/thread | |
603 | cd .. | |
604 | ||
605 | echo Toolbar sample.. | |
606 | ||
607 | cd toolbar | |
608 | mkdir ~/wxgtk_dist/wxGTK/samples/toolbar | |
609 | cp Makefile ~/wxgtk_dist/wxGTK/samples/toolbar | |
610 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/toolbar | |
611 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/toolbar | |
612 | cp *.h ~/wxgtk_dist/wxGTK/samples/toolbar | |
613 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/toolbar | |
614 | cd bitmaps | |
615 | mkdir ~/wxgtk_dist/wxGTK/samples/toolbar/bitmaps | |
616 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/toolbar/bitmaps | |
617 | cd ../.. | |
618 | ||
619 | echo TreeCtrl sample.. | |
620 | ||
621 | cd treectrl | |
622 | mkdir ~/wxgtk_dist/wxGTK/samples/treectrl | |
623 | cp Makefile ~/wxgtk_dist/wxGTK/samples/treectrl | |
624 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/treectrl | |
625 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/treectrl | |
626 | cp *.h ~/wxgtk_dist/wxGTK/samples/treectrl | |
627 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/treectrl | |
628 | cd .. | |
629 | ||
630 | echo typetest sample.. | |
631 | ||
632 | cd typetest | |
633 | mkdir ~/wxgtk_dist/wxGTK/samples/typetest | |
634 | cp Makefile ~/wxgtk_dist/wxGTK/samples/typetest | |
635 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/typetest | |
636 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/typetest | |
637 | cp *.h ~/wxgtk_dist/wxGTK/samples/typetest | |
638 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/typetest | |
639 | cd .. | |
640 | ||
641 | echo Validate sample.. | |
642 | ||
643 | cd validate | |
644 | mkdir ~/wxgtk_dist/wxGTK/samples/validate | |
645 | cp Makefile ~/wxgtk_dist/wxGTK/samples/validate | |
646 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/validate | |
647 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/validate | |
648 | cp *.h ~/wxgtk_dist/wxGTK/samples/validate | |
649 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/validate | |
650 | cd .. | |
651 | ||
652 | echo wxPoem sample.. | |
653 | ||
654 | cd wxpoem | |
655 | mkdir ~/wxgtk_dist/wxGTK/samples/wxpoem | |
656 | cp Makefile ~/wxgtk_dist/wxGTK/samples/wxpoem | |
657 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/wxpoem | |
658 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/wxpoem | |
cf33637f | 659 | cp *.h ~/wxgtk_dist/wxGTK/samples/wxpoem |
2a29700e RR |
660 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/wxpoem |
661 | cp wxpoem.dat ~/wxgtk_dist/wxGTK/samples/wxpoem | |
662 | cp wxpoem.txt ~/wxgtk_dist/wxGTK/samples/wxpoem | |
663 | cp wxpoem.idx ~/wxgtk_dist/wxGTK/samples/wxpoem | |
664 | cd .. | |
665 | ||
666 | echo wxSocket sample.. | |
667 | ||
668 | cd wxsocket | |
669 | mkdir ~/wxgtk_dist/wxGTK/samples/wxsocket | |
670 | cp Makefile ~/wxgtk_dist/wxGTK/samples/wxsocket | |
671 | cp Makefile.in ~/wxgtk_dist/wxGTK/samples/wxsocket | |
672 | cp *.cpp ~/wxgtk_dist/wxGTK/samples/wxsocket | |
673 | cp *.xpm ~/wxgtk_dist/wxGTK/samples/wxsocket | |
301cd871 | 674 | cd ../.. |
2a29700e | 675 | |
301cd871 | 676 | echo LOCAL CORRECTCIONS |
2a29700e | 677 | |
301cd871 RR |
678 | cd distrib/gtk |
679 | cp README.txt ~/wxgtk_dist/wxGTK/utils/wxPython | |
680 | cp Setup ~/wxgtk_dist/wxGTK/utils/wxPython/src | |
2a29700e RR |
681 | |
682 | ||
683 |