]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # File: makefile.unx | |
3 | # Author: Julian Smart, Robert Roebling, Vadim Zeitlin | |
4 | # Created: 1993 | |
5 | # Updated: 1999 | |
6 | # Copyright:(c) 1993, AIAI, University of Edinburgh, | |
7 | # Copyright:(c) 1999, Vadim Zeitlin | |
8 | # Copyright:(c) 1999, Robert Roebling | |
9 | # | |
10 | # Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a | |
11 | ||
12 | ################################################################### | |
13 | ||
14 | include ./src/make.env | |
15 | ||
16 | ############## override make.env for PIC ########################## | |
17 | ||
18 | # Clears all default suffixes | |
19 | .SUFFIXES: .o .cpp .c .cxx | |
20 | ||
21 | .c.o : | |
22 | $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $< | |
23 | ||
24 | .cpp.o : | |
25 | $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $< | |
26 | ||
27 | .cxx.o : | |
28 | $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $< | |
29 | ||
30 | ########################### Paths ################################# | |
31 | ||
32 | srcdir = @srcdir@ | |
33 | ||
34 | VP1 = @top_srcdir@/src/common | |
35 | VP2 = @top_srcdir@/src/@TOOLKIT_DIR@ | |
36 | VP3 = @top_srcdir@/src/motif/xmcombo | |
37 | VP4 = @top_srcdir@/src/generic | |
38 | VP5 = @top_srcdir@/src/unix | |
39 | VP6 = @top_srcdir@/src/html | |
40 | VP7 = @top_srcdir@/src/png | |
41 | VP8 = @top_srcdir@/src/jpeg | |
42 | VP9 = @top_srcdir@/src/tiff | |
43 | VP10 = @top_srcdir@/src/zlib | |
44 | VP11 = @top_srcdir@/src/iodbc | |
45 | ||
46 | # the comment at the end of the next line is needed because otherwise autoconf | |
47 | # would remove this line completely - it contains a built-in hack to remove | |
48 | # any VPATH assignment not containing ':' | |
49 | VPATH = $(VP1)@PATH_IFS@$(VP2)@PATH_IFS@$(VP3)@PATH_IFS@$(VP4)@PATH_IFS@$(VP5)@PATH_IFS@$(VP6)@PATH_IFS@$(VP7)@PATH_IFS@$(VP8)@PATH_IFS@$(VP9)@PATH_IFS@$(VP10)@PATH_IFS@$(VP11) # ':' for autoconf | |
50 | ||
51 | top_srcdir = @top_srcdir@ | |
52 | prefix = @prefix@ | |
53 | exec_prefix = @exec_prefix@ | |
54 | ||
55 | bindir = @bindir@ | |
56 | sbindir = @sbindir@ | |
57 | libexecdir = @libexecdir@ | |
58 | datadir = @datadir@ | |
59 | sysconfdir = @sysconfdir@ | |
60 | sharedstatedir = @sharedstatedir@ | |
61 | localstatedir = @localstatedir@ | |
62 | libdir = @libdir@ | |
63 | infodir = @infodir@ | |
64 | mandir = @mandir@ | |
65 | includedir = @includedir@ | |
66 | oldincludedir = /usr/include | |
67 | ||
68 | DESTDIR = | |
69 | ||
70 | pkgdatadir = $(datadir)/@PACKAGE@ | |
71 | pkglibdir = $(libdir)/@PACKAGE@ | |
72 | pkgincludedir = $(includedir)/@PACKAGE@ | |
73 | ||
74 | top_builddir = . | |
75 | ||
76 | INSTALL = @INSTALL@ | |
77 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
78 | INSTALL_DATA = @INSTALL_DATA@ | |
79 | # my autoconf doesn't set this | |
80 | #INSTALL_SCRIPT = @INSTALL_SCRIPT@ | |
81 | # maybe do an additional chmod if needed? | |
82 | INSTALL_SCRIPT = @INSTALL@ | |
83 | transform = @program_transform_name@ | |
84 | ||
85 | NORMAL_INSTALL = : | |
86 | PRE_INSTALL = : | |
87 | POST_INSTALL = : | |
88 | NORMAL_UNINSTALL = : | |
89 | PRE_UNINSTALL = : | |
90 | POST_UNINSTALL = : | |
91 | build_alias = @build_alias@ | |
92 | build_triplet = @build@ | |
93 | host_alias = @host_alias@ | |
94 | host_triplet = @host@ | |
95 | target_alias = @target_alias@ | |
96 | target_triplet = @target@ | |
97 | ||
98 | USE_GUI=@USE_GUI@ | |
99 | ||
100 | ############################# Dirs ################################# | |
101 | ||
102 | WXDIR = $(top_srcdir) | |
103 | ||
104 | # Subordinate library possibilities | |
105 | ||
106 | SRCDIR = $(WXDIR)/src | |
107 | GENDIR = $(WXDIR)/src/generic | |
108 | COMMDIR = $(WXDIR)/src/common | |
109 | HTMLDIR = $(WXDIR)/src/html | |
110 | UNIXDIR = $(WXDIR)/src/unix | |
111 | PNGDIR = $(WXDIR)/src/png | |
112 | JPEGDIR = $(WXDIR)/src/jpeg | |
113 | TIFFDIR = $(WXDIR)/src/tiff | |
114 | ZLIBDIR = $(WXDIR)/src/zlib | |
115 | GTKDIR = $(WXDIR)/src/gtk | |
116 | MOTIFDIR = $(WXDIR)/src/motif | |
117 | MSWDIR = $(WXDIR)/src/msw | |
118 | PMDIR = $(WXDIR)/src/os2 | |
119 | ODBCDIR = $(WXDIR)/src/iodbc | |
120 | INCDIR = $(WXDIR)/include | |
121 | SAMPDIR = $(WXDIR)/samples | |
122 | DEMODIR = $(WXDIR)/demos | |
123 | UTILSDIR = $(WXDIR)/utils | |
124 | MISCDIR = $(WXDIR)/misc | |
125 | ||
126 | DOCDIR = $(WXDIR)/docs | |
127 | ||
128 | ########################## Archive name ############################### | |
129 | ||
130 | WXARCHIVE = @DISTDIR@-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz | |
131 | WXGLARCHIVE = @DISTDIR@-gl-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz | |
132 | WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz | |
133 | WXDEMOS = wx$(TOOLKIT)-demos-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz | |
134 | DISTDIR = ./_dist_dir/@DISTDIR@ | |
135 | ||
136 | ############################## Files ################################## | |
137 | ||
138 | # this line will include a file which defines ALL_SOURCES, ALL_OBJECTS, | |
139 | # ALL_DEPFILES and ALL_HEADERS variables with the complete list of .cpp, .o, | |
140 | # .d and .h/.inl files for the current toolkit | |
141 | include $(top_srcdir)/@PORT_FILES@ | |
142 | ||
143 | SOURCES = $(ALL_SOURCES) | |
144 | HEADERS = $(ALL_HEADERS) | |
145 | ||
146 | # for the objects and depfiles, we might be bulding only part of them | |
147 | # depending on configure arguments, so select a subset of ALL | |
148 | OBJECTS = @ALL_OBJECTS@ | |
149 | DEPFILES = @ALL_DEPFILES@ | |
150 | ||
151 | # the object files of sublibraries (we assume that they don't change [often], | |
152 | # so we don't generate these lists with tmake but embed them here) | |
153 | ZLIBOBJS = \ | |
154 | adler32.o \ | |
155 | compress.o \ | |
156 | crc32.o \ | |
157 | gzio.o \ | |
158 | uncompr.o \ | |
159 | deflate.o \ | |
160 | trees.o \ | |
161 | zutil.o \ | |
162 | inflate.o \ | |
163 | infblock.o \ | |
164 | inftrees.o \ | |
165 | infcodes.o \ | |
166 | infutil.o \ | |
167 | inffast.o | |
168 | ||
169 | PNGOBJS = \ | |
170 | png.o \ | |
171 | pngread.o \ | |
172 | pngrtran.o \ | |
173 | pngrutil.o \ | |
174 | pngpread.o \ | |
175 | pngtrans.o \ | |
176 | pngwrite.o \ | |
177 | pngwtran.o \ | |
178 | pngwutil.o \ | |
179 | pngerror.o \ | |
180 | pngmem.o \ | |
181 | pngwio.o \ | |
182 | pngrio.o \ | |
183 | pngget.o \ | |
184 | pngset.o | |
185 | ||
186 | ||
187 | JPEGOBJS = \ | |
188 | jcomapi.o \ | |
189 | jutils.o \ | |
190 | jerror.o \ | |
191 | jmemmgr.o \ | |
192 | jmemnobs.o \ | |
193 | jcapimin.o \ | |
194 | jcapistd.o \ | |
195 | jctrans.o \ | |
196 | jcparam.o \ | |
197 | jdatadst.o \ | |
198 | jcinit.o \ | |
199 | jcmaster.o \ | |
200 | jcmarker.o \ | |
201 | jcmainct.o \ | |
202 | jcprepct.o \ | |
203 | jccoefct.o \ | |
204 | jccolor.o \ | |
205 | jcsample.o \ | |
206 | jchuff.o \ | |
207 | jcphuff.o \ | |
208 | jcdctmgr.o \ | |
209 | jfdctfst.o \ | |
210 | jfdctflt.o \ | |
211 | jfdctint.o \ | |
212 | jdapimin.o \ | |
213 | jdapistd.o \ | |
214 | jdtrans.o \ | |
215 | jdatasrc.o \ | |
216 | jdmaster.o \ | |
217 | jdinput.o \ | |
218 | jdmarker.o \ | |
219 | jdhuff.o \ | |
220 | jdphuff.o \ | |
221 | jdmainct.o \ | |
222 | jdcoefct.o \ | |
223 | jdpostct.o \ | |
224 | jddctmgr.o \ | |
225 | jidctfst.o \ | |
226 | jidctflt.o \ | |
227 | jidctint.o \ | |
228 | jidctred.o \ | |
229 | jdsample.o \ | |
230 | jdcolor.o \ | |
231 | jquant1.o \ | |
232 | jquant2.o \ | |
233 | jdmerge.o | |
234 | ||
235 | TIFFOBJS = \ | |
236 | tif_aux.o \ | |
237 | tif_close.o \ | |
238 | tif_codec.o \ | |
239 | tif_compress.o \ | |
240 | tif_dir.o \ | |
241 | tif_dirinfo.o \ | |
242 | tif_dirread.o \ | |
243 | tif_dirwrite.o \ | |
244 | tif_dumpmode.o \ | |
245 | tif_error.o \ | |
246 | tif_fax3.o \ | |
247 | tif_fax3sm.o \ | |
248 | tif_getimage.o \ | |
249 | tif_jpeg.o \ | |
250 | tif_flush.o \ | |
251 | tif_lzw.o \ | |
252 | tif_luv.o \ | |
253 | tif_next.o \ | |
254 | tif_open.o \ | |
255 | tif_packbits.o \ | |
256 | tif_pixarlog.o \ | |
257 | tif_predict.o \ | |
258 | tif_print.o \ | |
259 | tif_read.o \ | |
260 | tif_swab.o \ | |
261 | tif_strip.o \ | |
262 | tif_thunder.o \ | |
263 | tif_tile.o \ | |
264 | tif_unix.o \ | |
265 | tif_version.o \ | |
266 | tif_warning.o \ | |
267 | tif_write.o \ | |
268 | tif_zip.o | |
269 | ||
270 | IODBCOBJS = \ | |
271 | catalog.o \ | |
272 | connect.o \ | |
273 | dlf.o \ | |
274 | dlproc.o \ | |
275 | execute.o \ | |
276 | fetch.o \ | |
277 | hdbc.o \ | |
278 | henv.o \ | |
279 | herr.o \ | |
280 | hstmt.o \ | |
281 | info.o \ | |
282 | itrace.o \ | |
283 | misc.o \ | |
284 | prepare.o \ | |
285 | result.o | |
286 | ||
287 | ############################## Rules ################################## | |
288 | ||
289 | BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@ | |
290 | BURNT_LIBRARY_NAME_GL = @BURNT_LIBRARY_NAME_GL@ | |
291 | ||
292 | all: @WX_ALL@ | |
293 | ||
294 | @WX_LIBRARY_NAME_STATIC@: $(OBJECTS) | |
295 | @$(INSTALL) -d ./lib | |
296 | $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS) | |
297 | $(RANLIB) ./lib/$@ | |
298 | ||
299 | @WX_LIBRARY_NAME_STATIC_GL@: glcanvas.o | |
300 | @$(INSTALL) -d ./lib | |
301 | $(AR) $(AROPTIONS) ./lib/$@ glcanvas.o | |
302 | $(RANLIB) ./lib/$@ | |
303 | ||
304 | @WX_LIBRARY_NAME_SHARED@: $(OBJECTS) | |
305 | @$(INSTALL) -d ./lib | |
306 | $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME) $(OBJECTS) $(EXTRALIBS) | |
307 | ||
308 | @WX_LIBRARY_NAME_SHARED_GL@: glcanvas.o | |
309 | @$(INSTALL) -d ./lib | |
310 | $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME_GL) glcanvas.o $(EXTRALIBS) | |
311 | ||
312 | CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@ | |
313 | @$(RM) ./lib/@WX_LIBRARY_LINK1@ | |
314 | @$(RM) ./lib/@WX_LIBRARY_LINK2@ | |
315 | @$(RM) ./lib/@WX_LIBRARY_LINK3@ | |
316 | cd lib \ | |
317 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK1@ \ | |
318 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK2@ \ | |
319 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK3@ | |
320 | ||
321 | CREATE_LINKS_GL: @WX_LIBRARY_NAME_SHARED_GL@ | |
322 | @$(RM) ./lib/@WX_LIBRARY_LINK1_GL@ | |
323 | @$(RM) ./lib/@WX_LIBRARY_LINK2_GL@ | |
324 | @$(RM) ./lib/@WX_LIBRARY_LINK3_GL@ | |
325 | cd lib \ | |
326 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
327 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK2_GL@ \ | |
328 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK3_GL@ | |
329 | ||
330 | CREATE_INSTALLED_LINKS: preinstall | |
331 | $(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
332 | $(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
333 | $(RM) $(libdir)/@WX_LIBRARY_LINK3@ | |
334 | cd $(libdir) \ | |
335 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK1@ \ | |
336 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK2@ \ | |
337 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK3@ | |
338 | ||
339 | CREATE_INSTALLED_LINKS_GL: preinstall_gl | |
340 | $(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
341 | $(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
342 | $(RM) $(libdir)/@WX_LIBRARY_LINK3_GL@ | |
343 | cd $(libdir) \ | |
344 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
345 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK2_GL@ \ | |
346 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK3_GL@ | |
347 | ||
348 | $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h | |
349 | ||
350 | parser.o: parser.c lexer.c | |
351 | $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c | |
352 | ||
353 | parser.c: $(COMMDIR)/parser.y lexer.c | |
354 | $(YACC) $(COMMDIR)/parser.y | |
355 | @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \ | |
356 | sed -e "s/BUFSIZ/5000/g" | \ | |
357 | sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \ | |
358 | sed -e "s/yy/PROIO_yy/g" | \ | |
359 | sed -e "s/input/PROIO_input/g" | \ | |
360 | sed -e "s/unput/PROIO_unput/g" > parser.c | |
361 | @$(RM) y.tab.c | |
362 | ||
363 | lexer.c: $(COMMDIR)/lexer.l | |
364 | $(LEX) $(COMMDIR)/lexer.l | |
365 | @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \ | |
366 | sed -e "s/yy/PROIO_yy/g" | \ | |
367 | sed -e "s/input/PROIO_input/g" | \ | |
368 | sed -e "s/unput/PROIO_unput/g" > lexer.c | |
369 | @$(RM) @LEX_STEM@.c | |
370 | ||
371 | -include $(DEPFILES) | |
372 | ||
373 | afminstall: preinstall | |
374 | $(INSTALL) -d $(datadir) | |
375 | $(INSTALL) -d $(datadir)/wx | |
376 | $(INSTALL) -d $(datadir)/wx/afm | |
377 | $(INSTALL) -d $(datadir)/wx/gs_afm | |
378 | $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm | |
379 | $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm | |
380 | ||
381 | # this is the real install target: copies the library, wx-config and the | |
382 | # headers to the installation directory | |
383 | preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx@TOOLKIT_DIR@-config | |
384 | @echo " " | |
385 | @echo " Installing wxWindows..." | |
386 | @echo " " | |
387 | ||
388 | $(INSTALL) -d $(prefix) | |
389 | $(INSTALL) -d $(bindir) | |
390 | $(INSTALL) -d $(libdir) | |
391 | ||
392 | $(INSTALL_SCRIPT) $(top_builddir)/wx@TOOLKIT_DIR@-config $(bindir)/wx@TOOLKIT_DIR@-config | |
393 | cd $(bindir) && rm -f wx-config && $(LN_S) wx@TOOLKIT_DIR@-config wx-config | |
394 | $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@ | |
395 | ||
396 | $(INSTALL) -d $(libdir)/wx | |
397 | $(INSTALL) -d $(libdir)/wx/include | |
398 | $(INSTALL) -d $(libdir)/wx/include/wx | |
399 | $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@ | |
400 | $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h | |
401 | ||
402 | $(INSTALL) -d $(includedir)/wx | |
403 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi | |
404 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi | |
405 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi | |
406 | $(INSTALL) -d $(includedir)/wx/protocol | |
407 | $(INSTALL) -d $(includedir)/wx/unix | |
408 | @list='$(HEADERS)'; for p in $$list; do \ | |
409 | $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \ | |
410 | echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \ | |
411 | done | |
412 | ||
413 | preinstall_gl: $(top_builddir)/lib/@WX_TARGET_LIBRARY_GL@ | |
414 | @echo " " | |
415 | @echo " Installing wxWindows OpenGl add-on..." | |
416 | @echo " " | |
417 | $(INSTALL) -d $(libdir) | |
418 | $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY_GL@ $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
419 | ||
420 | install: @AFMINSTALL@ @WX_ALL_INSTALLED@ | |
421 | @echo " " | |
422 | @echo " The installation of wxWindows is finished. On certain" | |
423 | @echo " platforms (e.g. Linux) you'll now have to run ldconfig" | |
424 | @echo " if you installed a shared library and also modify" | |
425 | @echo " LD_LIBRARY_PATH (or equivalent) environment variable." | |
426 | @echo " " | |
427 | @echo " wxWindows comes with no guarantees and doesn't claim" | |
428 | @echo " to be suitable for any purpose." | |
429 | @echo " " | |
430 | @echo " Read the wxWindows Licence on licencing conditions." | |
431 | @echo " " | |
432 | ||
433 | uninstall: | |
434 | @echo " " | |
435 | @echo " Uninstalling wxWindows..." | |
436 | @echo " " | |
437 | @echo " Removing library..." | |
438 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY@ | |
439 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
440 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
441 | @$(RM) $(libdir)/@WX_LIBRARY_LINK3@ | |
442 | @echo " Removing GL library..." | |
443 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
444 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
445 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
446 | @$(RM) $(libdir)/@WX_LIBRARY_LINK3_GL@ | |
447 | @echo " Removing helper files..." | |
448 | @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h | |
449 | @$(RM) $(bindir)/wx-config | |
450 | @$(RM) $(bindir)/wx@TOOLKIT_DIR@-config | |
451 | @$(RM) $(datadir)/wx/afm/* | |
452 | @$(RM) $(datadir)/wx/gs_afm/* | |
453 | # FIXME: wxBase doesnt install these next 3 dirs. | |
454 | @-rmdir $(datadir)/wx/gs_afm | |
455 | @-rmdir $(datadir)/wx/afm | |
456 | @-rmdir $(datadir)/wx | |
457 | @echo " Removing headers..." | |
458 | @list='$(HEADERS)'; for p in $$list; do \ | |
459 | $(RM) $(includedir)/wx/$$p; \ | |
460 | done | |
461 | @echo " Removing directories..." | |
462 | @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi | |
463 | @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi | |
464 | @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi | |
465 | @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi | |
466 | @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi | |
467 | @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi | |
468 | @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi | |
469 | @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi | |
470 | @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi | |
471 | @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi | |
472 | @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi | |
473 | @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi | |
474 | ||
475 | # this target should copy only the files common to really all ports (including | |
476 | # wxBase) to the dist dir | |
477 | ALL_DIST: distclean | |
478 | mkdir _dist_dir | |
479 | mkdir $(DISTDIR) | |
480 | cp $(WXDIR)/configure.in $(DISTDIR) | |
481 | cp $(WXDIR)/configure $(DISTDIR) | |
482 | cp $(WXDIR)/config.sub $(DISTDIR) | |
483 | cp $(WXDIR)/config.guess $(DISTDIR) | |
484 | cp $(WXDIR)/install-sh $(DISTDIR) | |
485 | cp $(WXDIR)/mkinstalldirs $(DISTDIR) | |
486 | cp $(WXDIR)/wx-config.in $(DISTDIR) | |
487 | cp $(WXDIR)/setup.h.in $(DISTDIR) | |
488 | cp $(WXDIR)/Makefile.in $(DISTDIR) | |
489 | cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB | |
490 | cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt | |
491 | cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt | |
492 | ||
493 | # this target is the common part of distribution script for all GUI toolkits, | |
494 | # but is not used when building wxBase distribution | |
495 | ALL_GUI_DIST: ALL_DIST | |
496 | cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR) | |
497 | cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt | |
498 | cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
499 | cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt | |
500 | cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt | |
501 | mkdir $(DISTDIR)/include | |
502 | mkdir $(DISTDIR)/include/wx | |
503 | mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR) | |
504 | mkdir $(DISTDIR)/include/wx/generic | |
505 | mkdir $(DISTDIR)/include/wx/html | |
506 | mkdir $(DISTDIR)/include/wx/protocol | |
507 | mkdir $(DISTDIR)/include/wx/unix | |
508 | cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx | |
509 | cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx | |
510 | cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx | |
511 | cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic | |
512 | cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic | |
513 | cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html | |
514 | cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix | |
515 | cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol | |
516 | mkdir $(DISTDIR)/src | |
517 | mkdir $(DISTDIR)/src/common | |
518 | mkdir $(DISTDIR)/src/generic | |
519 | mkdir $(DISTDIR)/src/html | |
520 | mkdir $(DISTDIR)/src/html/bitmaps | |
521 | mkdir $(DISTDIR)/src/$(TOOLKITDIR) | |
522 | mkdir $(DISTDIR)/src/png | |
523 | mkdir $(DISTDIR)/src/jpeg | |
524 | mkdir $(DISTDIR)/src/tiff | |
525 | mkdir $(DISTDIR)/src/zlib | |
526 | mkdir $(DISTDIR)/src/iodbc | |
527 | mkdir $(DISTDIR)/src/unix | |
528 | cp $(WXDIR)/@PORT_FILES@ $(DISTDIR)/@PORT_FILES@ | |
529 | cp $(SRCDIR)/*.in $(DISTDIR)/src | |
530 | cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common | |
531 | cp $(COMMDIR)/*.c $(DISTDIR)/src/common | |
532 | cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix | |
533 | cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix | |
534 | cp $(COMMDIR)/*.inc $(DISTDIR)/src/common | |
535 | cp $(COMMDIR)/*.l $(DISTDIR)/src/common | |
536 | cp $(COMMDIR)/*.h $(DISTDIR)/src/common | |
537 | cp $(COMMDIR)/*.y $(DISTDIR)/src/common | |
538 | cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic | |
539 | cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html | |
540 | cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps | |
541 | cp $(PNGDIR)/*.h $(DISTDIR)/src/png | |
542 | cp $(PNGDIR)/*.c $(DISTDIR)/src/png | |
543 | cp $(PNGDIR)/README $(DISTDIR)/src/png | |
544 | cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib | |
545 | cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib | |
546 | cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib | |
547 | cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg | |
548 | cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg | |
549 | cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg | |
550 | cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff | |
551 | cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff | |
552 | cp $(TIFFDIR)/README $(DISTDIR)/src/tiff | |
553 | cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc | |
554 | cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc | |
555 | cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc | |
556 | cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc | |
557 | cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc | |
558 | cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc | |
559 | cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc | |
560 | ||
561 | BASE_DIST: ALL_DIST | |
562 | mkdir $(DISTDIR)/include | |
563 | mkdir $(DISTDIR)/include/wx | |
564 | mkdir $(DISTDIR)/include/wx/protocol | |
565 | mkdir $(DISTDIR)/include/wx/unix | |
566 | mkdir $(DISTDIR)/src | |
567 | mkdir $(DISTDIR)/src/common | |
568 | mkdir $(DISTDIR)/src/unix | |
569 | cp $(WXDIR)/@PORT_FILES@ $(DISTDIR)/@PORT_FILES@ | |
570 | cp $(WXDIR)/@RPM_FILES@ $(DISTDIR)/@RPM_FILES@ | |
571 | cp $(WXDIR)/@RPM_SPEC@ $(DISTDIR)/@RPM_SPEC@ | |
572 | cp $(WXDIR)/wxBase.dsp $(DISTDIR) | |
573 | cp $(DOCDIR)/install.txt $(DISTDIR)/INSTALL.txt | |
574 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
575 | cp $(DOCDIR)/readme.txt $(DISTDIR)/README.txt | |
576 | cp $(DOCDIR)/todo.txt $(DISTDIR)/TODO.txt | |
577 | cp $(SRCDIR)/*.in $(DISTDIR)/src | |
578 | list='$(HEADERS)'; for p in $$list; do \ | |
579 | cp $(WXDIR)/include/wx/$$p $(DISTDIR)/include/wx/$$p; \ | |
580 | done | |
581 | list='$(SOURCES)'; for p in $$list; do \ | |
582 | cp $(WXDIR)/src/$$p $(DISTDIR)/src/$$p; \ | |
583 | done | |
584 | ||
585 | GTK_DIST: ALL_GUI_DIST | |
586 | cp $(WXDIR)/wxGTK.spec $(DISTDIR) | |
587 | cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk | |
588 | cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk | |
589 | cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk | |
590 | cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk | |
591 | cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk | |
592 | ||
593 | MOTIF_DIST: ALL_GUI_DIST | |
594 | cp $(WXDIR)/wxMOTIF.spec $(DISTDIR) | |
595 | cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif | |
596 | cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif | |
597 | cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif | |
598 | mkdir $(DISTDIR)/src/motif/xmcombo | |
599 | cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo | |
600 | cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo | |
601 | cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo | |
602 | ||
603 | MSW_DIST: ALL_GUI_DIST | |
604 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) | |
605 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw | |
606 | cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw | |
607 | cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw | |
608 | cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw | |
609 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw | |
610 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw | |
611 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw | |
612 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw | |
613 | mkdir $(DISTDIR)/src/msw/ole | |
614 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole | |
615 | ||
616 | DEMOS_DIST: ALL_GUI_DIST | |
617 | mkdir $(DISTDIR)/demos | |
618 | cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos | |
619 | cp $(DEMODIR)/configure $(DISTDIR)/demos | |
620 | cp $(DEMODIR)/configure.in $(DISTDIR)/demos | |
621 | ||
622 | cp -R $(DEMODIR)/dbbrowse $(DISTDIR)/demos/dbbrowse | |
623 | ||
624 | mkdir $(DISTDIR)/demos/bombs | |
625 | cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs | |
626 | cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs | |
627 | cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs | |
628 | cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs | |
629 | cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs | |
630 | cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs | |
631 | ||
632 | mkdir $(DISTDIR)/demos/forty | |
633 | cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty | |
634 | cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty | |
635 | cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty | |
636 | cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty | |
637 | cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty | |
638 | cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty | |
639 | ||
640 | mkdir $(DISTDIR)/demos/life | |
641 | mkdir $(DISTDIR)/demos/life/bitmaps | |
642 | cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life | |
643 | cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life | |
644 | cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life | |
645 | cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life | |
646 | cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life | |
647 | cp $(DEMODIR)/life/*.inc $(DISTDIR)/demos/life | |
648 | cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps | |
649 | ||
650 | mkdir $(DISTDIR)/demos/poem | |
651 | cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem | |
652 | cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem | |
653 | cp $(DEMODIR)/poem/*.h $(DISTDIR)/demos/poem | |
654 | cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem | |
655 | cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem | |
656 | cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem | |
657 | cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem | |
658 | ||
659 | mkdir $(DISTDIR)/demos/fractal | |
660 | cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal | |
661 | cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal | |
662 | cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal | |
663 | ||
664 | SAMPLES_DIST: ALL_GUI_DIST | |
665 | mkdir $(DISTDIR)/samples | |
666 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
667 | cp $(SAMPDIR)/configure $(DISTDIR)/samples | |
668 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
669 | ||
670 | mkdir $(DISTDIR)/samples/calendar | |
671 | cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar | |
672 | cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar | |
673 | cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar | |
674 | ||
675 | mkdir $(DISTDIR)/samples/caret | |
676 | cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret | |
677 | cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret | |
678 | cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret | |
679 | cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret | |
680 | ||
681 | mkdir $(DISTDIR)/samples/checklst | |
682 | cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst | |
683 | cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst | |
684 | cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst | |
685 | cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst | |
686 | ||
687 | mkdir $(DISTDIR)/samples/config | |
688 | cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config | |
689 | cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config | |
690 | cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config | |
691 | ||
692 | mkdir $(DISTDIR)/samples/console | |
693 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
694 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
695 | cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console | |
696 | ||
697 | mkdir $(DISTDIR)/samples/controls | |
698 | mkdir $(DISTDIR)/samples/controls/icons | |
699 | cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls | |
700 | cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls | |
701 | cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls | |
702 | cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls | |
703 | cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons | |
704 | ||
705 | mkdir $(DISTDIR)/samples/db | |
706 | cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db | |
707 | cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db | |
708 | cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db | |
709 | cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db | |
710 | cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db | |
711 | ||
712 | mkdir $(DISTDIR)/samples/dialogs | |
713 | cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs | |
714 | cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs | |
715 | cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs | |
716 | cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs | |
717 | cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs | |
718 | ||
719 | mkdir $(DISTDIR)/samples/dnd | |
720 | cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd | |
721 | cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd | |
722 | cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd | |
723 | cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd | |
724 | cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd | |
725 | cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd | |
726 | cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd | |
727 | ||
728 | mkdir $(DISTDIR)/samples/docview | |
729 | cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview | |
730 | cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview | |
731 | cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview | |
732 | cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview | |
733 | cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview | |
734 | ||
735 | mkdir $(DISTDIR)/samples/docvwmdi | |
736 | cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi | |
737 | cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi | |
738 | cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi | |
739 | cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi | |
740 | ||
741 | mkdir $(DISTDIR)/samples/dragimag | |
742 | cp $(SAMPDIR)/dragimag/Makefile.in $(DISTDIR)/samples/dragimag | |
743 | cp $(SAMPDIR)/dragimag/makefile.unx $(DISTDIR)/samples/dragimag | |
744 | cp $(SAMPDIR)/dragimag/*.cpp $(DISTDIR)/samples/dragimag | |
745 | cp $(SAMPDIR)/dragimag/*.h $(DISTDIR)/samples/dragimag | |
746 | cp $(SAMPDIR)/dragimag/*.xpm $(DISTDIR)/samples/dragimag | |
747 | cp $(SAMPDIR)/dragimag/*.png $(DISTDIR)/samples/dragimag | |
748 | ||
749 | mkdir $(DISTDIR)/samples/drawing | |
750 | cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing | |
751 | cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing | |
752 | cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing | |
753 | cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing | |
754 | cp $(SAMPDIR)/drawing/*.bmp $(DISTDIR)/samples/drawing | |
755 | ||
756 | mkdir $(DISTDIR)/samples/dynamic | |
757 | cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic | |
758 | cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic | |
759 | cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic | |
760 | cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic | |
761 | ||
762 | mkdir $(DISTDIR)/samples/exec | |
763 | cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec | |
764 | cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec | |
765 | ||
766 | mkdir $(DISTDIR)/samples/font | |
767 | cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font | |
768 | cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font | |
769 | cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font | |
770 | ||
771 | mkdir $(DISTDIR)/samples/grid | |
772 | cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid | |
773 | cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid | |
774 | cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid | |
775 | ||
776 | mkdir $(DISTDIR)/samples/help | |
777 | mkdir $(DISTDIR)/samples/help/doc | |
778 | cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help | |
779 | cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help | |
780 | cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help | |
781 | cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help | |
782 | cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc | |
783 | ||
784 | mkdir $(DISTDIR)/samples/html | |
785 | cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html | |
786 | mkdir $(DISTDIR)/samples/html/about | |
787 | cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about | |
788 | cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about | |
789 | mkdir $(DISTDIR)/samples/html/about/data | |
790 | cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data | |
791 | cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data | |
792 | mkdir $(DISTDIR)/samples/html/help | |
793 | cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help | |
794 | cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help | |
795 | mkdir $(DISTDIR)/samples/html/help/helpfiles | |
796 | cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles | |
797 | mkdir $(DISTDIR)/samples/html/helpview | |
798 | cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview | |
799 | cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview | |
800 | cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview | |
801 | mkdir $(DISTDIR)/samples/html/printing | |
802 | cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing | |
803 | cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing | |
804 | cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing | |
805 | mkdir $(DISTDIR)/samples/html/test | |
806 | cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test | |
807 | cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test | |
808 | cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test | |
809 | cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test | |
810 | cp $(SAMPDIR)/html/test/*.gif $(DISTDIR)/samples/html/test | |
811 | cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test | |
812 | cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test | |
813 | mkdir $(DISTDIR)/samples/html/virtual | |
814 | cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual | |
815 | cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual | |
816 | cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual | |
817 | mkdir $(DISTDIR)/samples/html/widget | |
818 | cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget | |
819 | cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget | |
820 | cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget | |
821 | mkdir $(DISTDIR)/samples/html/zip | |
822 | cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip | |
823 | cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip | |
824 | cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip | |
825 | cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip | |
826 | ||
827 | mkdir $(DISTDIR)/samples/image | |
828 | cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image | |
829 | cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image | |
830 | cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image | |
831 | cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image | |
832 | cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image | |
833 | cp $(SAMPDIR)/image/smile.xpm $(DISTDIR)/samples/image | |
834 | ||
835 | mkdir $(DISTDIR)/samples/internat | |
836 | mkdir $(DISTDIR)/samples/internat/de | |
837 | mkdir $(DISTDIR)/samples/internat/fr | |
838 | cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat | |
839 | cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat | |
840 | cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat | |
841 | cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat | |
842 | cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat | |
843 | cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat | |
844 | cp $(SAMPDIR)/internat/fr/*.mo $(DISTDIR)/samples/internat/fr | |
845 | cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de | |
846 | cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr | |
847 | cp $(SAMPDIR)/internat/de/*.po $(DISTDIR)/samples/internat/de | |
848 | ||
849 | mkdir $(DISTDIR)/samples/ipc | |
850 | cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc | |
851 | cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc | |
852 | cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc | |
853 | cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc | |
854 | ||
855 | mkdir $(DISTDIR)/samples/layout | |
856 | cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout | |
857 | cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout | |
858 | cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout | |
859 | cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout | |
860 | ||
861 | mkdir $(DISTDIR)/samples/listctrl | |
862 | mkdir $(DISTDIR)/samples/listctrl/bitmaps | |
863 | cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl | |
864 | cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl | |
865 | cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl | |
866 | cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl | |
867 | cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl | |
868 | cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps | |
869 | ||
870 | mkdir $(DISTDIR)/samples/mdi | |
871 | mkdir $(DISTDIR)/samples/mdi/bitmaps | |
872 | cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi | |
873 | cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi | |
874 | cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi | |
875 | cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi | |
876 | cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi | |
877 | cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps | |
878 | ||
879 | mkdir $(DISTDIR)/samples/memcheck | |
880 | cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck | |
881 | cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck | |
882 | cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck | |
883 | cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck | |
884 | ||
885 | mkdir $(DISTDIR)/samples/menu | |
886 | cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu | |
887 | cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu | |
888 | cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu | |
889 | ||
890 | mkdir $(DISTDIR)/samples/minifram | |
891 | mkdir $(DISTDIR)/samples/minifram/bitmaps | |
892 | cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram | |
893 | cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram | |
894 | cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram | |
895 | cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram | |
896 | cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram | |
897 | cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps | |
898 | ||
899 | mkdir $(DISTDIR)/samples/minimal | |
900 | cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal | |
901 | cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal | |
902 | cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal | |
903 | cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal | |
904 | ||
905 | mkdir $(DISTDIR)/samples/dialup | |
906 | cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup | |
907 | cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup | |
908 | cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup | |
909 | ||
910 | mkdir $(DISTDIR)/samples/newgrid | |
911 | cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid | |
912 | cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid | |
913 | cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid | |
914 | cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid | |
915 | ||
916 | mkdir $(DISTDIR)/samples/notebook | |
917 | cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook | |
918 | cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook | |
919 | cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook | |
920 | cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook | |
921 | ||
922 | mkdir $(DISTDIR)/samples/opengl | |
923 | cp $(SAMPDIR)/opengl/Makefile.in $(DISTDIR)/samples/opengl | |
924 | mkdir $(DISTDIR)/samples/opengl/penguin | |
925 | cp $(SAMPDIR)/opengl/penguin/Makefile.in $(DISTDIR)/samples/opengl/penguin | |
926 | cp $(SAMPDIR)/opengl/penguin/makefile.unx $(DISTDIR)/samples/opengl/penguin | |
927 | cp $(SAMPDIR)/opengl/penguin/*.cpp $(DISTDIR)/samples/opengl/penguin | |
928 | cp $(SAMPDIR)/opengl/penguin/*.c $(DISTDIR)/samples/opengl/penguin | |
929 | cp $(SAMPDIR)/opengl/penguin/*.h $(DISTDIR)/samples/opengl/penguin | |
930 | cp $(SAMPDIR)/opengl/penguin/*.lwo $(DISTDIR)/samples/opengl/penguin | |
931 | mkdir $(DISTDIR)/samples/opengl/cube | |
932 | cp $(SAMPDIR)/opengl/cube/Makefile.in $(DISTDIR)/samples/opengl/cube | |
933 | cp $(SAMPDIR)/opengl/cube/makefile.unx $(DISTDIR)/samples/opengl/cube | |
934 | cp $(SAMPDIR)/opengl/cube/*.cpp $(DISTDIR)/samples/opengl/cube | |
935 | cp $(SAMPDIR)/opengl/cube/*.h $(DISTDIR)/samples/opengl/cube | |
936 | mkdir $(DISTDIR)/samples/opengl/isosurf | |
937 | cp $(SAMPDIR)/opengl/isosurf/Makefile.in $(DISTDIR)/samples/opengl/isosurf | |
938 | cp $(SAMPDIR)/opengl/isosurf/makefile.unx $(DISTDIR)/samples/opengl/isosurf | |
939 | cp $(SAMPDIR)/opengl/isosurf/*.cpp $(DISTDIR)/samples/opengl/isosurf | |
940 | cp $(SAMPDIR)/opengl/isosurf/*.h $(DISTDIR)/samples/opengl/isosurf | |
941 | cp $(SAMPDIR)/opengl/isosurf/*.gz $(DISTDIR)/samples/opengl/isosurf | |
942 | ||
943 | mkdir $(DISTDIR)/samples/plot | |
944 | cp $(SAMPDIR)/plot/Makefile.in $(DISTDIR)/samples/plot | |
945 | cp $(SAMPDIR)/plot/makefile.unx $(DISTDIR)/samples/plot | |
946 | cp $(SAMPDIR)/plot/*.cpp $(DISTDIR)/samples/plot | |
947 | ||
948 | mkdir $(DISTDIR)/samples/png | |
949 | cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png | |
950 | cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png | |
951 | cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png | |
952 | cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png | |
953 | cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png | |
954 | ||
955 | mkdir $(DISTDIR)/samples/printing | |
956 | cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing | |
957 | cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing | |
958 | cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing | |
959 | cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing | |
960 | cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing | |
961 | cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing | |
962 | ||
963 | mkdir $(DISTDIR)/samples/resource | |
964 | cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource | |
965 | cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource | |
966 | cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource | |
967 | cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource | |
968 | cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource | |
969 | ||
970 | mkdir $(DISTDIR)/samples/rotate | |
971 | cp $(SAMPDIR)/rotate/Makefile.in $(DISTDIR)/samples/rotate | |
972 | cp $(SAMPDIR)/rotate/makefile.unx $(DISTDIR)/samples/rotate | |
973 | cp $(SAMPDIR)/rotate/*.cpp $(DISTDIR)/samples/rotate | |
974 | cp $(SAMPDIR)/rotate/*.bmp $(DISTDIR)/samples/rotate | |
975 | ||
976 | mkdir $(DISTDIR)/samples/richedit | |
977 | cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit | |
978 | cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit | |
979 | cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit | |
980 | cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit | |
981 | cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit | |
982 | cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit | |
983 | ||
984 | mkdir $(DISTDIR)/samples/proplist | |
985 | cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist | |
986 | cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist | |
987 | cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist | |
988 | ||
989 | mkdir $(DISTDIR)/samples/propsize | |
990 | cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize | |
991 | cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize | |
992 | cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize | |
993 | ||
994 | mkdir $(DISTDIR)/samples/sashtest | |
995 | cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest | |
996 | cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest | |
997 | cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest | |
998 | ||
999 | mkdir $(DISTDIR)/samples/scroll | |
1000 | cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll | |
1001 | cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll | |
1002 | cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll | |
1003 | ||
1004 | mkdir $(DISTDIR)/samples/scrollsub | |
1005 | cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub | |
1006 | cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub | |
1007 | cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub | |
1008 | ||
1009 | mkdir $(DISTDIR)/samples/sockets | |
1010 | cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets | |
1011 | cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets | |
1012 | cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets | |
1013 | ||
1014 | mkdir $(DISTDIR)/samples/splitter | |
1015 | cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter | |
1016 | cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter | |
1017 | cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter | |
1018 | ||
1019 | mkdir $(DISTDIR)/samples/statbar | |
1020 | cp $(SAMPDIR)/statbar/Makefile.in $(DISTDIR)/samples/statbar | |
1021 | cp $(SAMPDIR)/statbar/*.cpp $(DISTDIR)/samples/statbar | |
1022 | cp $(SAMPDIR)/statbar/*.xpm $(DISTDIR)/samples/statbar | |
1023 | ||
1024 | mkdir $(DISTDIR)/samples/text | |
1025 | cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text | |
1026 | cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text | |
1027 | cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text | |
1028 | cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text | |
1029 | ||
1030 | mkdir $(DISTDIR)/samples/thread | |
1031 | cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread | |
1032 | cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread | |
1033 | cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread | |
1034 | ||
1035 | mkdir $(DISTDIR)/samples/toolbar | |
1036 | cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar | |
1037 | cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar | |
1038 | cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar | |
1039 | mkdir $(DISTDIR)/samples/toolbar/bitmaps | |
1040 | cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps | |
1041 | ||
1042 | mkdir $(DISTDIR)/samples/treectrl | |
1043 | cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl | |
1044 | cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl | |
1045 | cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl | |
1046 | cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl | |
1047 | mkdir $(DISTDIR)/samples/treectrl/bitmaps | |
1048 | cp $(SAMPDIR)/treectrl/bitmaps/*.bmp $(DISTDIR)/samples/treectrl/bitmaps | |
1049 | ||
1050 | mkdir $(DISTDIR)/samples/treelay | |
1051 | cp $(SAMPDIR)/treelay/Makefile.in $(DISTDIR)/samples/treelay | |
1052 | cp $(SAMPDIR)/treelay/makefile.unx $(DISTDIR)/samples/treelay | |
1053 | cp $(SAMPDIR)/treelay/*.cpp $(DISTDIR)/samples/treelay | |
1054 | cp $(SAMPDIR)/treelay/*.h $(DISTDIR)/samples/treelay | |
1055 | ||
1056 | mkdir $(DISTDIR)/samples/typetest | |
1057 | cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest | |
1058 | cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest | |
1059 | cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest | |
1060 | cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest | |
1061 | ||
1062 | mkdir $(DISTDIR)/samples/validate | |
1063 | cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate | |
1064 | cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate | |
1065 | cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate | |
1066 | cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate | |
1067 | ||
1068 | mkdir $(DISTDIR)/samples/wizard | |
1069 | cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard | |
1070 | cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard | |
1071 | cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard | |
1072 | ||
1073 | UTILS_DIST: ALL_GUI_DIST | |
1074 | mkdir $(DISTDIR)/utils | |
1075 | cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils | |
1076 | cp $(UTILSDIR)/configure $(DISTDIR)/utils | |
1077 | cp $(UTILSDIR)/configure.in $(DISTDIR)/utils | |
1078 | ||
1079 | MISC_DIST: ALL_GUI_DIST | |
1080 | mkdir $(DISTDIR)/misc | |
1081 | mkdir $(DISTDIR)/misc/afm | |
1082 | cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm | |
1083 | mkdir $(DISTDIR)/misc/gs_afm | |
1084 | cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm | |
1085 | ||
1086 | MANUAL_DIST: | |
1087 | mkdir $(DISTDIR)/docs | |
1088 | mkdir $(DISTDIR)/docs/latex | |
1089 | mkdir $(DISTDIR)/docs/latex/wx | |
1090 | cp $(DOCDIR)/latex/wx/*.tex $(DISTDIR)/docs/latex/wx | |
1091 | cp $(DOCDIR)/latex/wx/*.gif $(DISTDIR)/docs/latex/wx | |
1092 | cp $(DOCDIR)/latex/wx/*.ini $(DISTDIR)/docs/latex/wx | |
1093 | cp $(DOCDIR)/latex/wx/*.bib $(DISTDIR)/docs/latex/wx | |
1094 | cp $(DOCDIR)/latex/wx/*.sty $(DISTDIR)/docs/latex/wx | |
1095 | ||
1096 | -mkdir $(DISTDIR)/utils | |
1097 | mkdir $(DISTDIR)/utils/tex2rtf | |
1098 | mkdir $(DISTDIR)/utils/tex2rtf/src | |
1099 | cp $(UTILSDIR)/tex2rtf/*.in $(DISTDIR)/utils/tex2rtf | |
1100 | cp $(UTILSDIR)/tex2rtf/src/*.h $(DISTDIR)/utils/tex2rtf/src | |
1101 | cp $(UTILSDIR)/tex2rtf/src/*.in $(DISTDIR)/utils/tex2rtf/src | |
1102 | cp $(UTILSDIR)/tex2rtf/src/*.cpp $(DISTDIR)/utils/tex2rtf/src | |
1103 | cp $(UTILSDIR)/tex2rtf/src/tex2rtf.* $(DISTDIR)/utils/tex2rtf/src | |
1104 | ||
1105 | # this target does not generate a complete wxPython dist, it only includes | |
1106 | # those files needed for the Debian source package. | |
1107 | # see utils/wxPython/distrib for scripts to make a proper wxPython dist. | |
1108 | PYTHON_DIST: | |
1109 | mkdir $(DISTDIR)/utils/wxPython | |
1110 | mkdir $(DISTDIR)/utils/wxPython/demo | |
1111 | mkdir $(DISTDIR)/utils/wxPython/demo/bitmaps | |
1112 | mkdir $(DISTDIR)/utils/wxPython/demo/data | |
1113 | mkdir $(DISTDIR)/utils/wxPython/distrib | |
1114 | mkdir $(DISTDIR)/utils/wxPython/lib | |
1115 | mkdir $(DISTDIR)/utils/wxPython/lib/editor | |
1116 | mkdir $(DISTDIR)/utils/wxPython/lib/sizers | |
1117 | mkdir $(DISTDIR)/utils/wxPython/modules | |
1118 | mkdir $(DISTDIR)/utils/wxPython/modules/html | |
1119 | mkdir $(DISTDIR)/utils/wxPython/modules/utils | |
1120 | mkdir $(DISTDIR)/utils/wxPython/modules/utils/gtk | |
1121 | mkdir $(DISTDIR)/utils/wxPython/src | |
1122 | mkdir $(DISTDIR)/utils/wxPython/src/gtk | |
1123 | ||
1124 | cp $(UTILSDIR)/wxPython/*.txt $(DISTDIR)/utils/wxPython | |
1125 | -cp $(UTILSDIR)/wxPython/demo/* $(DISTDIR)/utils/wxPython/demo | |
1126 | -cp $(UTILSDIR)/wxPython/demo/bitmaps/* $(DISTDIR)/utils/wxPython/demo/bitmaps | |
1127 | -cp $(UTILSDIR)/wxPython/demo/data/* $(DISTDIR)/utils/wxPython/demo/data | |
1128 | cp $(UTILSDIR)/wxPython/distrib/build.py $(DISTDIR)/utils/wxPython/distrib | |
1129 | cp $(UTILSDIR)/wxPython/lib/*.py $(DISTDIR)/utils/wxPython/lib | |
1130 | cp $(UTILSDIR)/wxPython/lib/editor/*.py $(DISTDIR)/utils/wxPython/lib/editor | |
1131 | cp $(UTILSDIR)/wxPython/lib/sizers/*.py $(DISTDIR)/utils/wxPython/lib/sizers | |
1132 | -cp $(UTILSDIR)/wxPython/modules/html/* $(DISTDIR)/utils/wxPython/modules/html | |
1133 | -cp $(UTILSDIR)/wxPython/modules/utils/* $(DISTDIR)/utils/wxPython/modules/utils | |
1134 | cp $(UTILSDIR)/wxPython/modules/utils/gtk/utils.* $(DISTDIR)/utils/wxPython/modules/utils/gtk | |
1135 | -cp $(UTILSDIR)/wxPython/src/* $(DISTDIR)/utils/wxPython/src | |
1136 | cp $(UTILSDIR)/wxPython/src/gtk/*.py $(DISTDIR)/utils/wxPython/src/gtk | |
1137 | cp $(UTILSDIR)/wxPython/src/gtk/*.cpp $(DISTDIR)/utils/wxPython/src/gtk | |
1138 | ||
1139 | distclean: | |
1140 | $(RM) -r _dist_dir | |
1141 | ||
1142 | dist: @GUIDIST@ | |
1143 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1144 | cd _dist_dir; tar ch @DISTDIR@ | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) .. | |
1145 | @if test "$(USE_GUI)" = 1; then \ | |
1146 | cd $(DISTDIR); \ | |
1147 | mv samples wxSamples; \ | |
1148 | tar ch wxSamples | gzip -f9 > ../../$(WXSAMPLES); \ | |
1149 | mv wxSamples samples; \ | |
1150 | mv demos wxDemos; \ | |
1151 | tar ch wxDemos | gzip -f9 > ../../$(WXDEMOS); \ | |
1152 | mv wxDemos demos; \ | |
1153 | fi | |
1154 | ||
1155 | debian-dist: @GUIDIST@ MANUAL_DIST PYTHON_DIST | |
1156 | mkdir $(DISTDIR)/debian | |
1157 | -cp $(WXDIR)/debian/* $(DISTDIR)/debian | |
1158 | cp $(WXDIR)/src/files.lst $(DISTDIR)/src/ | |
1159 | cp $(DOCDIR)/licence.txt $(DISTDIR)/docs | |
1160 | cp $(DOCDIR)/licendoc.txt $(DISTDIR)/docs | |
1161 | cp $(DOCDIR)/preamble.txt $(DISTDIR)/docs | |
1162 | rm -f $(DISTDIR)/*.spec | |
1163 | rm -rf $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
1164 | mv $(DISTDIR) $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
1165 | ||
1166 | clean: | |
1167 | $(RM) *.o | |
1168 | $(RM) *.d | |
1169 | $(RM) parser.c | |
1170 | $(RM) lexer.c | |
1171 | $(RM) -r ./lib/* | |
1172 | ||
1173 | cleanall: clean |