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