]>
Commit | Line | Data |
---|---|---|
1 | # | |
2 | # File: makefile.unx | |
3 | # Author: Julian Smart, Robert Roebling, Vadim Zeitlin, Ron Lee | |
4 | # Created: 1993 | |
5 | # Updated: 2001 | |
6 | # Copyright:(c) 1993, AIAI, University of Edinburgh, | |
7 | # Copyright:(c) 1999, Vadim Zeitlin | |
8 | # Copyright:(c) 1999, Robert Roebling | |
9 | # Copyright:(c) 2001, Ron Lee | |
10 | # | |
11 | # Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a | |
12 | ||
13 | ################################################################### | |
14 | ||
15 | include ./src/make.env | |
16 | ||
17 | ############## override make.env for PIC ########################## | |
18 | ||
19 | %.o : %.c | |
20 | $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $< | |
21 | ||
22 | %.o : %.cpp | |
23 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< | |
24 | ||
25 | %.o : %.cxx | |
26 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< | |
27 | ||
28 | %.r : %.rsrc | |
29 | $(DEREZ) $^ Carbon.r -useDF > $@ | |
30 | ||
31 | ########################### Paths ################################# | |
32 | ||
33 | srcdir = @srcdir@ | |
34 | top_srcdir = @top_srcdir@ | |
35 | ||
36 | VP1 = @TOOLKIT_VPATH@ | |
37 | VP2 = @top_srcdir@/src/common | |
38 | VP3 = @top_srcdir@/src/generic | |
39 | VP4 = @top_srcdir@/src/unix | |
40 | VP5 = @top_srcdir@/src/html | |
41 | VP6 = @top_srcdir@/src/png | |
42 | VP7 = @top_srcdir@/src/jpeg | |
43 | VP8 = @top_srcdir@/src/tiff | |
44 | VP9 = @top_srcdir@/src/zlib | |
45 | VPA = @top_srcdir@/src/regex | |
46 | VP10 = @top_srcdir@/src/iodbc | |
47 | VP11 = @top_srcdir@/src/msw/ole | |
48 | ||
49 | # the comment at the end of the next line is needed because otherwise autoconf | |
50 | # would remove this line completely - it contains a built-in hack to remove | |
51 | # any VPATH assignment not containing ':' | |
52 | 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@$(VPA)@PATH_IFS@$(VP10)@PATH_IFS@$(VP11) # ':' for autoconf | |
53 | ||
54 | prefix = @prefix@ | |
55 | exec_prefix = @exec_prefix@ | |
56 | ||
57 | bindir = @bindir@ | |
58 | datadir = @datadir@ | |
59 | libdir = @libdir@ | |
60 | mandir = @mandir@ | |
61 | includedir = @includedir@ | |
62 | ||
63 | localedir = $(datadir)/locale | |
64 | ||
65 | top_builddir = . | |
66 | build_libdir = $(top_builddir)/lib | |
67 | ||
68 | INSTALL = @INSTALL@ | |
69 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
70 | INSTALL_DATA = @INSTALL_DATA@ | |
71 | INSTALL_SCRIPT = @INSTALL@ | |
72 | ||
73 | build_alias = @build_alias@ | |
74 | build_triplet = @build@ | |
75 | host_alias = @host_alias@ | |
76 | host_triplet = @host@ | |
77 | target_alias = @target_alias@ | |
78 | target_triplet = @target@ | |
79 | ||
80 | USE_GUI=@USE_GUI@ | |
81 | ||
82 | ############################# Dirs ################################# | |
83 | ||
84 | WXDIR = $(top_srcdir) | |
85 | ||
86 | # Subordinate library possibilities | |
87 | ||
88 | SRCDIR = $(WXDIR)/src | |
89 | GENDIR = $(WXDIR)/src/generic | |
90 | COMMDIR = $(WXDIR)/src/common | |
91 | HTMLDIR = $(WXDIR)/src/html | |
92 | UNIXDIR = $(WXDIR)/src/unix | |
93 | PNGDIR = $(WXDIR)/src/png | |
94 | JPEGDIR = $(WXDIR)/src/jpeg | |
95 | TIFFDIR = $(WXDIR)/src/tiff | |
96 | ZLIBDIR = $(WXDIR)/src/zlib | |
97 | REGEXDIR = $(WXDIR)/src/regex | |
98 | GTKDIR = $(WXDIR)/src/gtk | |
99 | MOTIFDIR = $(WXDIR)/src/motif | |
100 | MSWDIR = $(WXDIR)/src/msw | |
101 | PMDIR = $(WXDIR)/src/os2 | |
102 | MACDIR = $(WXDIR)/src/mac | |
103 | ODBCDIR = $(WXDIR)/src/iodbc | |
104 | FTDIR = $(WXDIR)/src/freetype | |
105 | INCDIR = $(WXDIR)/include | |
106 | SAMPDIR = $(WXDIR)/samples | |
107 | DEMODIR = $(WXDIR)/demos | |
108 | UTILSDIR = $(WXDIR)/utils | |
109 | MISCDIR = $(WXDIR)/misc | |
110 | ||
111 | DOCDIR = $(WXDIR)/docs | |
112 | INTLDIR = $(WXDIR)/locale | |
113 | ||
114 | ########################## Archive name ############################### | |
115 | ||
116 | # append a version suffix x.y.z to all file names | |
117 | VER_MAJMIN=$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER) | |
118 | VER_SUFFIX=$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER)$(EXTRA_VER) | |
119 | WXARCHIVE=@DISTDIR@-$(VER_SUFFIX).tar.gz | |
120 | WXGLARCHIVE=@DISTDIR@-gl-$(VER_SUFFIX).tar.gz | |
121 | WXSAMPLES=wx$(TOOLKIT)-samples-$(VER_SUFFIX).tar.gz | |
122 | WXDEMOS=wx$(TOOLKIT)-demos-$(VER_SUFFIX).tar.gz | |
123 | ||
124 | WXARCHIVE_BZIP=@DISTDIR@-$(VER_SUFFIX).tar.bz2 | |
125 | WXGLARCHIVE_BZIP=@DISTDIR@-gl-$(VER_SUFFIX).tar.bz2 | |
126 | WXSAMPLES_BZIP=wx$(TOOLKIT)-samples-$(VER_SUFFIX).tar.bz2 | |
127 | WXDEMOS_BZIP=wx$(TOOLKIT)-demos-$(VER_SUFFIX).tar.bz2 | |
128 | ||
129 | DISTDIRNAME=@DISTDIR@-$(VER_SUFFIX) | |
130 | DISTDIR=./_dist_dir/$(DISTDIRNAME) | |
131 | ||
132 | ||
133 | ############################## Files ################################## | |
134 | ||
135 | WX_LINGUAS = `cd $(top_srcdir)/locale && ls *.mo 2> /dev/null | sed -n 's/\.mo//p'` | |
136 | ||
137 | # this line will include a file which defines ALL_SOURCES, ALL_OBJECTS, | |
138 | # ALL_DEPFILES and ALL_HEADERS variables with the complete list of .cpp, .o, | |
139 | # .d and .h/.inl files for the current toolkit | |
140 | include @PORT_FILES@ | |
141 | ||
142 | SOURCES = $(ALL_SOURCES) | |
143 | HEADERS = $(ALL_HEADERS) | |
144 | ||
145 | # for the objects and depfiles, we might be bulding only part of them | |
146 | # depending on configure arguments, so select a subset of ALL | |
147 | OBJECTS = @ALL_OBJECTS@ | |
148 | ||
149 | # the object files of sublibraries (we assume that they don't change [often], | |
150 | # so we don't generate these lists with tmake but embed them here) | |
151 | REGEXOBJS = \ | |
152 | regcomp.o \ | |
153 | regexec.o \ | |
154 | regerror.o \ | |
155 | regfree.o | |
156 | ||
157 | ZLIBOBJS = \ | |
158 | adler32.o \ | |
159 | compress.o \ | |
160 | crc32.o \ | |
161 | gzio.o \ | |
162 | uncompr.o \ | |
163 | deflate.o \ | |
164 | trees.o \ | |
165 | zutil.o \ | |
166 | inflate.o \ | |
167 | infblock.o \ | |
168 | inftrees.o \ | |
169 | infcodes.o \ | |
170 | infutil.o \ | |
171 | inffast.o | |
172 | ||
173 | PNGOBJS = \ | |
174 | png.o \ | |
175 | pngread.o \ | |
176 | pngrtran.o \ | |
177 | pngrutil.o \ | |
178 | pngpread.o \ | |
179 | pngtrans.o \ | |
180 | pngwrite.o \ | |
181 | pngwtran.o \ | |
182 | pngwutil.o \ | |
183 | pngerror.o \ | |
184 | pngmem.o \ | |
185 | pngwio.o \ | |
186 | pngrio.o \ | |
187 | pngget.o \ | |
188 | pngset.o | |
189 | ||
190 | FREETYPEOBJS = \ | |
191 | ftsystem.o \ | |
192 | autohint.o \ | |
193 | ftbase.o \ | |
194 | ftdebug.o \ | |
195 | ftglyph.o \ | |
196 | ftinit.o \ | |
197 | ftmm.o \ | |
198 | cff.o \ | |
199 | type1cid.o \ | |
200 | psnames.o \ | |
201 | psmodule.o \ | |
202 | raster1.o \ | |
203 | sfnt.o \ | |
204 | smooth.o \ | |
205 | truetype.o \ | |
206 | type1z.o \ | |
207 | winfnt.o | |
208 | ||
209 | JPEGOBJS = \ | |
210 | jcomapi.o \ | |
211 | jutils.o \ | |
212 | jerror.o \ | |
213 | jmemmgr.o \ | |
214 | jmemnobs.o \ | |
215 | jcapimin.o \ | |
216 | jcapistd.o \ | |
217 | jctrans.o \ | |
218 | jcparam.o \ | |
219 | jdatadst.o \ | |
220 | jcinit.o \ | |
221 | jcmaster.o \ | |
222 | jcmarker.o \ | |
223 | jcmainct.o \ | |
224 | jcprepct.o \ | |
225 | jccoefct.o \ | |
226 | jccolor.o \ | |
227 | jcsample.o \ | |
228 | jchuff.o \ | |
229 | jcphuff.o \ | |
230 | jcdctmgr.o \ | |
231 | jfdctfst.o \ | |
232 | jfdctflt.o \ | |
233 | jfdctint.o \ | |
234 | jdapimin.o \ | |
235 | jdapistd.o \ | |
236 | jdtrans.o \ | |
237 | jdatasrc.o \ | |
238 | jdmaster.o \ | |
239 | jdinput.o \ | |
240 | jdmarker.o \ | |
241 | jdhuff.o \ | |
242 | jdphuff.o \ | |
243 | jdmainct.o \ | |
244 | jdcoefct.o \ | |
245 | jdpostct.o \ | |
246 | jddctmgr.o \ | |
247 | jidctfst.o \ | |
248 | jidctflt.o \ | |
249 | jidctint.o \ | |
250 | jidctred.o \ | |
251 | jdsample.o \ | |
252 | jdcolor.o \ | |
253 | jquant1.o \ | |
254 | jquant2.o \ | |
255 | jdmerge.o | |
256 | ||
257 | TIFFOBJS = \ | |
258 | tif_aux.o \ | |
259 | tif_close.o \ | |
260 | tif_codec.o \ | |
261 | tif_compress.o \ | |
262 | tif_dir.o \ | |
263 | tif_dirinfo.o \ | |
264 | tif_dirread.o \ | |
265 | tif_dirwrite.o \ | |
266 | tif_dumpmode.o \ | |
267 | tif_error.o \ | |
268 | tif_fax3.o \ | |
269 | tif_fax3sm.o \ | |
270 | tif_getimage.o \ | |
271 | tif_jpeg.o \ | |
272 | tif_flush.o \ | |
273 | tif_lzw.o \ | |
274 | tif_luv.o \ | |
275 | tif_next.o \ | |
276 | tif_open.o \ | |
277 | tif_packbits.o \ | |
278 | tif_pixarlog.o \ | |
279 | tif_predict.o \ | |
280 | tif_print.o \ | |
281 | tif_read.o \ | |
282 | tif_swab.o \ | |
283 | tif_strip.o \ | |
284 | tif_thunder.o \ | |
285 | tif_tile.o \ | |
286 | tif_unix.o \ | |
287 | tif_version.o \ | |
288 | tif_warning.o \ | |
289 | tif_write.o \ | |
290 | tif_zip.o | |
291 | ||
292 | IODBCOBJS = \ | |
293 | catalog.o \ | |
294 | connect.o \ | |
295 | dlf.o \ | |
296 | dlproc.o \ | |
297 | execute.o \ | |
298 | fetch.o \ | |
299 | hdbc.o \ | |
300 | henv.o \ | |
301 | herr.o \ | |
302 | hstmt.o \ | |
303 | info.o \ | |
304 | itrace.o \ | |
305 | misc.o \ | |
306 | prepare.o \ | |
307 | result.o | |
308 | ||
309 | ||
310 | ############################## Rules ################################## | |
311 | ||
312 | SONAME_FLAGS = @SONAME_FLAGS@ | |
313 | SONAME_FLAGS_GL = @SONAME_FLAGS_GL@ | |
314 | ||
315 | all: @WX_ALL@ | |
316 | ||
317 | $(build_libdir)/@WX_LIBRARY_NAME_STATIC@: $(OBJECTS) | |
318 | @$(INSTALL) -d $(build_libdir) | |
319 | @$(RM) $@ | |
320 | $(AR) $(AROPTIONS) $@ $(OBJECTS) | |
321 | $(RANLIB) $@ | |
322 | ||
323 | $(build_libdir)/@WX_LIBRARY_NAME_STATIC_GL@: glcanvas.o | |
324 | @$(INSTALL) -d $(build_libdir) | |
325 | @$(RM) $@ | |
326 | $(AR) $(AROPTIONS) $@ glcanvas.o | |
327 | $(RANLIB) $@ | |
328 | ||
329 | $(build_libdir)/@WX_LIBRARY_NAME_SHARED@: $(OBJECTS) | |
330 | @$(INSTALL) -d $(build_libdir) | |
331 | $(SHARED_LD) $@ $(SONAME_FLAGS) $(OBJECTS) $(EXTRALIBS) | |
332 | ||
333 | $(build_libdir)/@WX_LIBRARY_NAME_SHARED_GL@: glcanvas.o $(build_libdir)/@WX_LIBRARY_NAME_SHARED@ | |
334 | @$(INSTALL) -d $(build_libdir) | |
335 | $(SHARED_LD) $@ $(SONAME_FLAGS_GL) glcanvas.o -L$(build_libdir) @WXCONFIG_LIBS@ $(EXTRALIBS) $(OPENGLLIBS) | |
336 | ||
337 | $(build_libdir)/@WX_RESOURCES_MACOSX@: $(MACRESOURCES) | |
338 | @$(INSTALL) -d $(build_libdir) | |
339 | $(RESCOMP) -d __UNIX__ -useDF $^ -o $@ | |
340 | ||
341 | $(build_libdir)/@WX_LIBRARY_LINK1@: $(build_libdir)/@WX_LIBRARY_NAME_SHARED@ | |
342 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK1@ | |
343 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK2@ | |
344 | cd $(build_libdir) \ | |
345 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK1@ \ | |
346 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK2@ | |
347 | ||
348 | $(build_libdir)/@WX_LIBRARY_LINK1_GL@: $(build_libdir)/@WX_LIBRARY_NAME_SHARED_GL@ | |
349 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK1_GL@ | |
350 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK2_GL@ | |
351 | cd $(build_libdir) \ | |
352 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
353 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK2_GL@ | |
354 | ||
355 | $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h | |
356 | ||
357 | parser.o: parser.c lexer.c | |
358 | $(CCLEX) -c $(CFLAGS) -I. $(PICFLAGS) -o $@ parser.c | |
359 | ||
360 | parser.c: $(COMMDIR)/parser.y lexer.c | |
361 | $(YACC) $(COMMDIR)/parser.y | |
362 | @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \ | |
363 | sed -e "s/BUFSIZ/5000/g" | \ | |
364 | sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \ | |
365 | sed -e "s/yy/PROIO_yy/g" | \ | |
366 | sed -e "s/input/PROIO_input/g" | \ | |
367 | sed -e "s/unput/PROIO_unput/g" > parser.c | |
368 | @$(RM) y.tab.c | |
369 | ||
370 | lexer.c: $(COMMDIR)/lexer.l | |
371 | $(LEX) $(COMMDIR)/lexer.l | |
372 | @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \ | |
373 | sed -e "s/yy/PROIO_yy/g" | \ | |
374 | sed -e "s/input/PROIO_input/g" | \ | |
375 | sed -e "s/unput/PROIO_unput/g" > lexer.c | |
376 | @$(RM) @LEX_STEM@.c | |
377 | ||
378 | -include $(OBJECTS:.o=.d) | |
379 | ||
380 | ||
381 | CREATE_INSTALLED_LINKS: preinstall | |
382 | $(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
383 | $(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
384 | cd $(libdir) \ | |
385 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK1@ \ | |
386 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK2@ | |
387 | ||
388 | CREATE_INSTALLED_LINKS_GL: preinstall_gl | |
389 | $(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
390 | $(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
391 | cd $(libdir) \ | |
392 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
393 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK2_GL@ | |
394 | ||
395 | afminstall: preinstall | |
396 | @if test ! -d $(datadir); then $(INSTALL) -d $(datadir); fi | |
397 | $(INSTALL) -d $(datadir)/wx | |
398 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN) | |
399 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN)/afm | |
400 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN)/gs_afm | |
401 | $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/afm | |
402 | $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/gs_afm | |
403 | ||
404 | m4datainstall: preinstall | |
405 | $(INSTALL) -d $(datadir)/aclocal | |
406 | $(INSTALL_DATA) $(top_srcdir)/wxwin.m4 $(datadir)/aclocal | |
407 | ||
408 | # this is the real install target: copies the library, wx-config and the | |
409 | # headers to the installation directory | |
410 | preinstall: $(build_libdir)/@WX_TARGET_LIBRARY@ $(top_builddir)/wx@TOOLCHAIN_NAME@-config | |
411 | @echo " " | |
412 | @echo " Installing wxWindows..." | |
413 | @echo " " | |
414 | ||
415 | @if test ! -d $(prefix); then $(INSTALL) -d $(prefix); fi | |
416 | @if test ! -d $(bindir); then $(INSTALL) -d $(bindir); fi | |
417 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
418 | ||
419 | $(INSTALL_SCRIPT) $(top_builddir)/wx@TOOLCHAIN_NAME@-config $(bindir)/wx@TOOLCHAIN_NAME@-config | |
420 | cd $(bindir) && rm -f wx-config && $(LN_S) wx@TOOLCHAIN_NAME@-config wx-config | |
421 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@ | |
422 | @if test "x@WX_LIBRARY_IMPORTLIB@" != "x"; then \ | |
423 | $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_LIBRARY_IMPORTLIB@ $(libdir)/@WX_LIBRARY_IMPORTLIB@; fi | |
424 | ||
425 | $(INSTALL) -d $(libdir)/wx | |
426 | $(INSTALL) -d $(libdir)/wx/include | |
427 | $(INSTALL) -d $(libdir)/wx/include/@TOOLCHAIN_NAME@ | |
428 | $(INSTALL) -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx | |
429 | $(INSTALL_DATA) $(build_libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h \ | |
430 | $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h | |
431 | ||
432 | $(INSTALL) -d $(includedir)/wx | |
433 | @# FIXME: This will erroneously install a wx/base dir for wxBase.. | |
434 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi | |
435 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi | |
436 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi | |
437 | @if test "@TOOLKIT_DIR@" = "msw"; then $(INSTALL) -d $(includedir)/wx/msw/ole; fi | |
438 | ||
439 | @# always install msw headers for wxBase, it's much simpler | |
440 | @if test "$(USE_GUI)" = 0; then $(INSTALL) -d $(includedir)/wx/msw; fi | |
441 | ||
442 | $(INSTALL) -d $(includedir)/wx/protocol | |
443 | $(INSTALL) -d $(includedir)/wx/unix | |
444 | @list='$(HEADERS)'; for p in $$list; do \ | |
445 | $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \ | |
446 | echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \ | |
447 | done | |
448 | ||
449 | @if test ! -d $(localedir); then $(INSTALL) -d $(localedir); fi | |
450 | @for p in $(WX_LINGUAS); do \ | |
451 | if test ! -d $(localedir)/$$p; then $(INSTALL) -d $(localedir)/$$p; fi;\ | |
452 | if test ! -d $(localedir)/$$p/LC_MESSAGES; then $(INSTALL) -d $(localedir)/$$p/LC_MESSAGES; fi;\ | |
453 | $(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ | |
454 | echo "$(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo"; \ | |
455 | done | |
456 | ||
457 | preinstall_res: $(build_libdir)/@WX_RESOURCES_MACOSX_COMPILED@ | |
458 | @echo " " | |
459 | @echo " Installing wxWindows Mac resource ..." | |
460 | @echo " " | |
461 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
462 | $(INSTALL_PROGRAM) $(build_libdir)/@WX_RESOURCES_MACOSX_COMPILED@ $(libdir)/@WX_RESOURCES_MACOSX_COMPILED@ | |
463 | ||
464 | preinstall_gl: $(build_libdir)/@WX_TARGET_LIBRARY_GL@ | |
465 | @echo " " | |
466 | @echo " Installing wxWindows OpenGl add-on..." | |
467 | @echo " " | |
468 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
469 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY_GL@ $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
470 | ||
471 | install: @AFMINSTALL@ @WX_ALL_INSTALLED@ m4datainstall | |
472 | @echo " " | |
473 | @echo " The installation of wxWindows is finished. On certain" | |
474 | @echo " platforms (e.g. Linux) you'll now have to run ldconfig" | |
475 | @echo " if you installed a shared library and also modify the" | |
476 | @echo " LD_LIBRARY_PATH (or equivalent) environment variable." | |
477 | @echo " " | |
478 | @echo " wxWindows comes with no guarantees and doesn't claim" | |
479 | @echo " to be suitable for any purpose." | |
480 | @echo " " | |
481 | @echo " Read the wxWindows Licence on licencing conditions." | |
482 | @echo " " | |
483 | ||
484 | uninstall: | |
485 | @echo " " | |
486 | @echo " Uninstalling wxWindows..." | |
487 | @echo " " | |
488 | @echo " Removing library..." | |
489 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY@ | |
490 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
491 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
492 | @echo " Removing GL library..." | |
493 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
494 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
495 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
496 | @echo " Removing helper files..." | |
497 | @$(RM) $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h | |
498 | @$(RM) $(bindir)/wx-config | |
499 | @$(RM) $(bindir)/wx@TOOLCHAIN_NAME@-config | |
500 | @$(RM) $(datadir)/wx/afm/* | |
501 | @$(RM) $(datadir)/wx/gs_afm/* | |
502 | # FIXME: wxBase doesnt install these next 3 dirs. | |
503 | @-rmdir $(datadir)/wx/gs_afm | |
504 | @-rmdir $(datadir)/wx/afm | |
505 | @-rmdir $(datadir)/wx | |
506 | @echo " Removing headers..." | |
507 | @list='$(HEADERS)'; for p in $$list; do \ | |
508 | $(RM) $(includedir)/wx/$$p; \ | |
509 | done | |
510 | @echo " Removing i18n files..." | |
511 | @-for p in $(WX_LINGUAS); do \ | |
512 | $(RM) $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ | |
513 | rmdir $(localedir)/$$p/LC_MESSAGES; \ | |
514 | rmdir $(localedir)/$$p; \ | |
515 | done | |
516 | @echo " Removing directories..." | |
517 | @-rmdir $(localedir) | |
518 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; fi | |
519 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@; fi | |
520 | @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi | |
521 | @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi | |
522 | @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi | |
523 | @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi | |
524 | @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi | |
525 | @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi | |
526 | @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi | |
527 | @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi | |
528 | @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi | |
529 | @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi | |
530 | ||
531 | # this target should copy only the files common to really all ports (including | |
532 | # wxBase) to the dist dir | |
533 | ALL_DIST: distclean | |
534 | mkdir _dist_dir | |
535 | mkdir $(DISTDIR) | |
536 | cp $(WXDIR)/wxwin.m4 $(DISTDIR) | |
537 | cp $(WXDIR)/aclocal.m4 $(DISTDIR) | |
538 | cp $(WXDIR)/config.sub $(DISTDIR) | |
539 | cp $(WXDIR)/config.guess $(DISTDIR) | |
540 | cp $(WXDIR)/install-sh $(DISTDIR) | |
541 | cp $(WXDIR)/mkinstalldirs $(DISTDIR) | |
542 | cp $(WXDIR)/wx-config.in $(DISTDIR) | |
543 | cp $(WXDIR)/setup.h.in $(DISTDIR) | |
544 | cp $(WXDIR)/setup.h_vms $(DISTDIR) | |
545 | cp $(WXDIR)/descrip.mms $(DISTDIR) | |
546 | cp $(WXDIR)/Makefile.in $(DISTDIR) | |
547 | cp $(WXDIR)/wxBase.spec $(DISTDIR) | |
548 | cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB | |
549 | cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt | |
550 | cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt | |
551 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
552 | mkdir $(DISTDIR)/lib | |
553 | cp $(WXDIR)/lib/vms.opt $(DISTDIR)/lib | |
554 | cp $(WXDIR)/lib/vms_gtk.opt $(DISTDIR)/lib | |
555 | mkdir $(DISTDIR)/src | |
556 | cp $(SRCDIR)/files.lst $(DISTDIR)/src/ | |
557 | mkdir $(DISTDIR)/src/zlib | |
558 | cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib | |
559 | cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib | |
560 | cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib | |
561 | cp $(ZLIBDIR)/*.mms $(DISTDIR)/src/zlib | |
562 | mkdir $(DISTDIR)/src/regex | |
563 | cp $(REGEXDIR)/*.h $(DISTDIR)/src/regex | |
564 | cp $(REGEXDIR)/*.ih $(DISTDIR)/src/regex | |
565 | cp $(REGEXDIR)/*.c $(DISTDIR)/src/regex | |
566 | cp $(REGEXDIR)/Makefile $(DISTDIR)/src/regex | |
567 | cp $(REGEXDIR)/COPYRIGHT $(DISTDIR)/src/regex | |
568 | cp $(REGEXDIR)/README $(DISTDIR)/src/regex | |
569 | cp $(REGEXDIR)/WHATSNEW $(DISTDIR)/src/regex | |
570 | cp $(REGEXDIR)/mkh $(DISTDIR)/src/regex | |
571 | cp $(REGEXDIR)/tests $(DISTDIR)/src/regex | |
572 | ||
573 | # this target is the common part of distribution script for all GUI toolkits, | |
574 | # but is not used when building wxBase distribution | |
575 | ALL_GUI_DIST: ALL_DIST | |
576 | cp $(WXDIR)/configure.in $(DISTDIR) | |
577 | cp $(WXDIR)/configure $(DISTDIR) | |
578 | cp $(DOCDIR)/readme.txt $(DISTDIR)/README.txt | |
579 | cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt | |
580 | if test -f $(DOCDIR)/$(TOOLKITDIR)/changes.txt ; then \ | |
581 | cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES-$(TOOLKIT).txt ; fi | |
582 | cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README-$(TOOLKIT).txt | |
583 | cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt | |
584 | mkdir $(DISTDIR)/include | |
585 | mkdir $(DISTDIR)/include/wx | |
586 | mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR) | |
587 | mkdir $(DISTDIR)/include/wx/generic | |
588 | mkdir $(DISTDIR)/include/wx/html | |
589 | mkdir $(DISTDIR)/include/wx/protocol | |
590 | mkdir $(DISTDIR)/include/wx/unix | |
591 | cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx | |
592 | cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx | |
593 | cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx | |
594 | cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic | |
595 | cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic | |
596 | cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html | |
597 | cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix | |
598 | cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol | |
599 | mkdir $(DISTDIR)/src/common | |
600 | mkdir $(DISTDIR)/src/generic | |
601 | mkdir $(DISTDIR)/src/html | |
602 | mkdir $(DISTDIR)/src/html/bitmaps | |
603 | mkdir $(DISTDIR)/src/$(TOOLKITDIR) | |
604 | mkdir $(DISTDIR)/src/png | |
605 | mkdir $(DISTDIR)/src/jpeg | |
606 | mkdir $(DISTDIR)/src/tiff | |
607 | mkdir $(DISTDIR)/src/iodbc | |
608 | mkdir $(DISTDIR)/src/unix | |
609 | cp $(SRCDIR)/*.in $(DISTDIR)/src | |
610 | cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common | |
611 | cp $(COMMDIR)/*.c $(DISTDIR)/src/common | |
612 | cp $(COMMDIR)/*.inc $(DISTDIR)/src/common | |
613 | cp $(COMMDIR)/*.l $(DISTDIR)/src/common | |
614 | cp $(COMMDIR)/*.h $(DISTDIR)/src/common | |
615 | cp $(COMMDIR)/*.y $(DISTDIR)/src/common | |
616 | cp $(COMMDIR)/*.mms $(DISTDIR)/src/common | |
617 | cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix | |
618 | cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix | |
619 | cp $(UNIXDIR)/*.mms $(DISTDIR)/src/unix | |
620 | cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic | |
621 | cp $(GENDIR)/*.mms $(DISTDIR)/src/generic | |
622 | cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html | |
623 | cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps | |
624 | cp $(PNGDIR)/*.h $(DISTDIR)/src/png | |
625 | cp $(PNGDIR)/*.c $(DISTDIR)/src/png | |
626 | cp $(PNGDIR)/README $(DISTDIR)/src/png | |
627 | cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg | |
628 | cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg | |
629 | cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg | |
630 | cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff | |
631 | cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff | |
632 | cp $(TIFFDIR)/README $(DISTDIR)/src/tiff | |
633 | cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc | |
634 | cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc | |
635 | cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc | |
636 | cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc | |
637 | cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc | |
638 | cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc | |
639 | cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc | |
640 | ||
641 | BASE_DIST: ALL_DIST | |
642 | # make --disable-gui the default | |
643 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
644 | $(WXDIR)/configure.in > $(DISTDIR)/configure.in | |
645 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
646 | $(WXDIR)/configure > $(DISTDIR)/configure | |
647 | chmod +x $(DISTDIR)/configure | |
648 | mkdir $(DISTDIR)/include | |
649 | mkdir $(DISTDIR)/include/wx | |
650 | mkdir $(DISTDIR)/include/wx/protocol | |
651 | mkdir $(DISTDIR)/include/wx/unix | |
652 | mkdir $(DISTDIR)/include/wx/msw | |
653 | mkdir $(DISTDIR)/src/common | |
654 | mkdir $(DISTDIR)/src/unix | |
655 | mkdir $(DISTDIR)/src/msw | |
656 | cp @PORT_FILES@ $(DISTDIR) | |
657 | cp $(WXDIR)/src/wxBase*.dsp $(DISTDIR) | |
658 | cp $(WXDIR)/src/wxBase*.dsw $(DISTDIR) | |
659 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
660 | cp $(DOCDIR)/install.txt $(DISTDIR)/README.txt | |
661 | cp $(SRCDIR)/*.in $(DISTDIR)/src | |
662 | cp $(WXDIR)/src/common/*.inc $(DISTDIR)/src/common | |
663 | cp $(WXDIR)/src/common/base.rc $(DISTDIR)/src/common | |
664 | cp $(WXDIR)/src/common/unzip.h $(DISTDIR)/src/common | |
665 | list='$(HEADERS)'; for p in $$list; do \ | |
666 | cp $(WXDIR)/include/wx/$$p $(DISTDIR)/include/wx/$$p; \ | |
667 | done | |
668 | list='$(SOURCES)'; for p in $$list; do \ | |
669 | cp $(WXDIR)/src/$$p $(DISTDIR)/src/$$p; \ | |
670 | done | |
671 | ||
672 | mkdir $(DISTDIR)/samples | |
673 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
674 | cp $(SAMPDIR)/configure $(DISTDIR)/samples | |
675 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
676 | ||
677 | mkdir $(DISTDIR)/samples/console | |
678 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
679 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
680 | cp $(SAMPDIR)/console/console.cpp $(DISTDIR)/samples/console | |
681 | cp $(SAMPDIR)/console/console.dsp $(DISTDIR)/samples/console | |
682 | cp $(SAMPDIR)/console/testdata.fc $(DISTDIR)/samples/console | |
683 | ||
684 | GTK_DIST: ALL_GUI_DIST | |
685 | cp $(WXDIR)/wxGTK.spec $(DISTDIR) | |
686 | cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk | |
687 | cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk | |
688 | cp $(GTKDIR)/files.lst $(DISTDIR)/src/gtk | |
689 | cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk | |
690 | cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk | |
691 | cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk | |
692 | cp $(GTKDIR)/*.mms $(DISTDIR)/src/gtk | |
693 | mkdir $(DISTDIR)/contrib | |
694 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
695 | ||
696 | MOTIF_DIST: ALL_GUI_DIST | |
697 | cp $(WXDIR)/wxMotif.spec $(DISTDIR) | |
698 | cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif | |
699 | cp $(MOTIFDIR)/files.lst $(DISTDIR)/src/motif | |
700 | cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif | |
701 | cp $(MOTIFDIR)/*.c $(DISTDIR)/src/motif | |
702 | cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif | |
703 | mkdir $(DISTDIR)/src/motif/xmcombo | |
704 | cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo | |
705 | cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo | |
706 | cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo | |
707 | ||
708 | MACX_DIST: ALL_GUI_DIST | |
709 | cp $(INCDIR)/*.* $(DISTDIR)/include | |
710 | cp $(INCDIR)/wx/mac/*.h $(DISTDIR)/include/wx/mac | |
711 | cp $(MACDIR)/files.lst $(DISTDIR)/src/mac | |
712 | cp $(MACDIR)/*.cpp $(DISTDIR)/src/mac | |
713 | cp $(MACDIR)/*.c $(DISTDIR)/src/mac | |
714 | cp $(MACDIR)/*.h $(DISTDIR)/src/mac | |
715 | cp $(MACDIR)/*.r $(DISTDIR)/src/mac | |
716 | mkdir $(DISTDIR)/src/mac/morefile | |
717 | cp $(MACDIR)/morefile/*.h $(DISTDIR)/src/mac/morefile | |
718 | cp $(MACDIR)/morefile/*.c $(DISTDIR)/src/mac/morefile | |
719 | mkdir $(DISTDIR)/src/mac/macsock | |
720 | cp $(MACDIR)/macsock/*.lib $(DISTDIR)/src/mac/macsock | |
721 | ||
722 | MSW_DIST: ALL_GUI_DIST | |
723 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) | |
724 | mkdir $(DISTDIR)/include/wx/msw/ctl3d | |
725 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32 | |
726 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
727 | mkdir $(DISTDIR)/include/wx/msw/ole | |
728 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw | |
729 | cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw | |
730 | cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw | |
731 | cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw | |
732 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw | |
733 | cp $(INCDIR)/wx/msw/ctl3d/*.h $(DISTDIR)/include/wx/msw/ctl3d | |
734 | cp $(INCDIR)/wx/msw/gnuwin32/*.h $(DISTDIR)/include/wx/msw/gnuwin32 | |
735 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.h $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
736 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.def $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
737 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole | |
738 | ||
739 | mkdir $(DISTDIR)/src/msw/ole | |
740 | cp $(MSWDIR)/files.lst $(DISTDIR)/src/msw | |
741 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw | |
742 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw | |
743 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw | |
744 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole | |
745 | ||
746 | UNIV_DIST: ALL_GUI_DIST | |
747 | mkdir $(DISTDIR)/include/wx/univ | |
748 | mkdir $(DISTDIR)/src/univ | |
749 | mkdir $(DISTDIR)/src/univ/themes | |
750 | cp $(INCDIR)/wx/univ/*.h $(DISTDIR)/include/wx/univ | |
751 | cp $(SRCDIR)/univ/files.lst $(DISTDIR)/src/univ | |
752 | cp $(SRCDIR)/univ/*.cpp $(DISTDIR)/src/univ | |
753 | cp $(SRCDIR)/univ/themes/*.cpp $(DISTDIR)/src/univ/themes | |
754 | ||
755 | DEMOS_DIST: ALL_GUI_DIST | |
756 | mkdir $(DISTDIR)/demos | |
757 | cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos | |
758 | cp $(DEMODIR)/configure $(DISTDIR)/demos | |
759 | cp $(DEMODIR)/configure.in $(DISTDIR)/demos | |
760 | ||
761 | mkdir $(DISTDIR)/demos/bombs | |
762 | cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs | |
763 | cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs | |
764 | cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs | |
765 | cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs | |
766 | cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs | |
767 | cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs | |
768 | ||
769 | cp -R $(DEMODIR)/dbbrowse $(DISTDIR)/demos/dbbrowse | |
770 | ||
771 | mkdir $(DISTDIR)/demos/forty | |
772 | cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty | |
773 | cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty | |
774 | cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty | |
775 | cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty | |
776 | cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty | |
777 | cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty | |
778 | ||
779 | mkdir $(DISTDIR)/demos/life | |
780 | mkdir $(DISTDIR)/demos/life/bitmaps | |
781 | cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life | |
782 | cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life | |
783 | cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life | |
784 | cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life | |
785 | cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life | |
786 | cp $(DEMODIR)/life/*.inc $(DISTDIR)/demos/life | |
787 | cp $(DEMODIR)/life/*.lif $(DISTDIR)/demos/life | |
788 | cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps | |
789 | ||
790 | mkdir $(DISTDIR)/demos/poem | |
791 | cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem | |
792 | cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem | |
793 | cp $(DEMODIR)/poem/*.h $(DISTDIR)/demos/poem | |
794 | cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem | |
795 | cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem | |
796 | cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem | |
797 | cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem | |
798 | ||
799 | mkdir $(DISTDIR)/demos/fractal | |
800 | cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal | |
801 | cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal | |
802 | cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal | |
803 | ||
804 | SAMPLES_DIST: ALL_GUI_DIST | |
805 | mkdir $(DISTDIR)/samples | |
806 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
807 | cp $(SAMPDIR)/configure $(DISTDIR)/samples | |
808 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
809 | ||
810 | mkdir $(DISTDIR)/samples/calendar | |
811 | cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar | |
812 | cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar | |
813 | cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar | |
814 | ||
815 | mkdir $(DISTDIR)/samples/caret | |
816 | cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret | |
817 | cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret | |
818 | cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret | |
819 | cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret | |
820 | ||
821 | mkdir $(DISTDIR)/samples/checklst | |
822 | cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst | |
823 | cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst | |
824 | cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst | |
825 | cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst | |
826 | cp $(SAMPDIR)/checklst/*.mms $(DISTDIR)/samples/checklst | |
827 | ||
828 | mkdir $(DISTDIR)/samples/config | |
829 | cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config | |
830 | cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config | |
831 | cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config | |
832 | ||
833 | mkdir $(DISTDIR)/samples/console | |
834 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
835 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
836 | cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console | |
837 | ||
838 | mkdir $(DISTDIR)/samples/controls | |
839 | mkdir $(DISTDIR)/samples/controls/icons | |
840 | cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls | |
841 | cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls | |
842 | cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls | |
843 | cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls | |
844 | cp $(SAMPDIR)/controls/*.mms $(DISTDIR)/samples/controls | |
845 | cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons | |
846 | ||
847 | mkdir $(DISTDIR)/samples/db | |
848 | cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db | |
849 | cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db | |
850 | cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db | |
851 | cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db | |
852 | cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db | |
853 | ||
854 | mkdir $(DISTDIR)/samples/dialogs | |
855 | cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs | |
856 | cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs | |
857 | cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs | |
858 | cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs | |
859 | cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs | |
860 | cp $(SAMPDIR)/dialogs/*.mms $(DISTDIR)/samples/dialogs | |
861 | ||
862 | mkdir $(DISTDIR)/samples/dnd | |
863 | cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd | |
864 | cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd | |
865 | cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd | |
866 | cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd | |
867 | cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd | |
868 | cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd | |
869 | cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd | |
870 | ||
871 | mkdir $(DISTDIR)/samples/docview | |
872 | cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview | |
873 | cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview | |
874 | cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview | |
875 | cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview | |
876 | cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview | |
877 | ||
878 | mkdir $(DISTDIR)/samples/docvwmdi | |
879 | cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi | |
880 | cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi | |
881 | cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi | |
882 | cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi | |
883 | ||
884 | mkdir $(DISTDIR)/samples/dragimag | |
885 | cp $(SAMPDIR)/dragimag/Makefile.in $(DISTDIR)/samples/dragimag | |
886 | cp $(SAMPDIR)/dragimag/makefile.unx $(DISTDIR)/samples/dragimag | |
887 | cp $(SAMPDIR)/dragimag/*.cpp $(DISTDIR)/samples/dragimag | |
888 | cp $(SAMPDIR)/dragimag/*.h $(DISTDIR)/samples/dragimag | |
889 | cp $(SAMPDIR)/dragimag/*.xpm $(DISTDIR)/samples/dragimag | |
890 | cp $(SAMPDIR)/dragimag/*.png $(DISTDIR)/samples/dragimag | |
891 | ||
892 | mkdir $(DISTDIR)/samples/drawing | |
893 | cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing | |
894 | cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing | |
895 | cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing | |
896 | cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing | |
897 | cp $(SAMPDIR)/drawing/*.bmp $(DISTDIR)/samples/drawing | |
898 | ||
899 | mkdir $(DISTDIR)/samples/dynamic | |
900 | cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic | |
901 | cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic | |
902 | cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic | |
903 | cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic | |
904 | ||
905 | mkdir $(DISTDIR)/samples/erase | |
906 | cp $(SAMPDIR)/erase/Makefile.in $(DISTDIR)/samples/erase | |
907 | cp $(SAMPDIR)/erase/makefile.unx $(DISTDIR)/samples/erase | |
908 | cp $(SAMPDIR)/erase/*.cpp $(DISTDIR)/samples/erase | |
909 | ||
910 | mkdir $(DISTDIR)/samples/event | |
911 | cp $(SAMPDIR)/event/Makefile.in $(DISTDIR)/samples/event | |
912 | cp $(SAMPDIR)/event/makefile.unx $(DISTDIR)/samples/event | |
913 | cp $(SAMPDIR)/event/*.cpp $(DISTDIR)/samples/event | |
914 | ||
915 | mkdir $(DISTDIR)/samples/exec | |
916 | cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec | |
917 | cp $(SAMPDIR)/exec/makefile.unx $(DISTDIR)/samples/exec | |
918 | cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec | |
919 | ||
920 | mkdir $(DISTDIR)/samples/font | |
921 | cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font | |
922 | cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font | |
923 | cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font | |
924 | ||
925 | mkdir $(DISTDIR)/samples/grid | |
926 | cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid | |
927 | cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid | |
928 | cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid | |
929 | ||
930 | mkdir $(DISTDIR)/samples/help | |
931 | mkdir $(DISTDIR)/samples/help/doc | |
932 | cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help | |
933 | cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help | |
934 | cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help | |
935 | cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help | |
936 | cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc | |
937 | ||
938 | mkdir $(DISTDIR)/samples/html | |
939 | cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html | |
940 | mkdir $(DISTDIR)/samples/html/about | |
941 | cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about | |
942 | cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about | |
943 | mkdir $(DISTDIR)/samples/html/about/data | |
944 | cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data | |
945 | cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data | |
946 | mkdir $(DISTDIR)/samples/html/help | |
947 | cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help | |
948 | cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help | |
949 | mkdir $(DISTDIR)/samples/html/help/helpfiles | |
950 | cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles | |
951 | mkdir $(DISTDIR)/samples/html/helpview | |
952 | cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview | |
953 | cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview | |
954 | cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview | |
955 | mkdir $(DISTDIR)/samples/html/printing | |
956 | cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing | |
957 | cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing | |
958 | cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing | |
959 | mkdir $(DISTDIR)/samples/html/test | |
960 | cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test | |
961 | cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test | |
962 | cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test | |
963 | cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test | |
964 | cp $(SAMPDIR)/html/test/*.gif $(DISTDIR)/samples/html/test | |
965 | cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test | |
966 | cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test | |
967 | mkdir $(DISTDIR)/samples/html/virtual | |
968 | cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual | |
969 | cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual | |
970 | cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual | |
971 | mkdir $(DISTDIR)/samples/html/widget | |
972 | cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget | |
973 | cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget | |
974 | cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget | |
975 | mkdir $(DISTDIR)/samples/html/zip | |
976 | cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip | |
977 | cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip | |
978 | cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip | |
979 | cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip | |
980 | ||
981 | mkdir $(DISTDIR)/samples/image | |
982 | cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image | |
983 | cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image | |
984 | cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image | |
985 | cp $(SAMPDIR)/image/*.mms $(DISTDIR)/samples/image | |
986 | cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image | |
987 | cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image | |
988 | cp $(SAMPDIR)/image/smile.xpm $(DISTDIR)/samples/image | |
989 | ||
990 | mkdir $(DISTDIR)/samples/internat | |
991 | mkdir $(DISTDIR)/samples/internat/de | |
992 | mkdir $(DISTDIR)/samples/internat/fr | |
993 | mkdir $(DISTDIR)/samples/internat/ru | |
994 | cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat | |
995 | cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat | |
996 | cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat | |
997 | cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat | |
998 | cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat | |
999 | cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat | |
1000 | cp $(SAMPDIR)/internat/fr/*.mo $(DISTDIR)/samples/internat/fr | |
1001 | cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de | |
1002 | cp $(SAMPDIR)/internat/ru/*.mo $(DISTDIR)/samples/internat/ru | |
1003 | cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr | |
1004 | cp $(SAMPDIR)/internat/de/*.po $(DISTDIR)/samples/internat/de | |
1005 | cp $(SAMPDIR)/internat/ru/*.po $(DISTDIR)/samples/internat/ru | |
1006 | ||
1007 | mkdir $(DISTDIR)/samples/ipc | |
1008 | cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc | |
1009 | cp $(SAMPDIR)/ipc/makefile.unx $(DISTDIR)/samples/ipc | |
1010 | cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc | |
1011 | cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc | |
1012 | cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc | |
1013 | ||
1014 | mkdir $(DISTDIR)/samples/joytest | |
1015 | cp $(SAMPDIR)/joytest/Makefile.in $(DISTDIR)/samples/joytest | |
1016 | cp $(SAMPDIR)/joytest/makefile.unx $(DISTDIR)/samples/joytest | |
1017 | cp $(SAMPDIR)/joytest/*.cpp $(DISTDIR)/samples/joytest | |
1018 | cp $(SAMPDIR)/joytest/*.h $(DISTDIR)/samples/joytest | |
1019 | cp $(SAMPDIR)/joytest/*.wav $(DISTDIR)/samples/joytest | |
1020 | ||
1021 | mkdir $(DISTDIR)/samples/layout | |
1022 | cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout | |
1023 | cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout | |
1024 | cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout | |
1025 | cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout | |
1026 | ||
1027 | mkdir $(DISTDIR)/samples/listctrl | |
1028 | mkdir $(DISTDIR)/samples/listctrl/bitmaps | |
1029 | cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl | |
1030 | cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl | |
1031 | cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl | |
1032 | cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl | |
1033 | cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl | |
1034 | cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps | |
1035 | ||
1036 | mkdir $(DISTDIR)/samples/mdi | |
1037 | mkdir $(DISTDIR)/samples/mdi/bitmaps | |
1038 | cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi | |
1039 | cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi | |
1040 | cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi | |
1041 | cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi | |
1042 | cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi | |
1043 | cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps | |
1044 | ||
1045 | mkdir $(DISTDIR)/samples/memcheck | |
1046 | cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck | |
1047 | cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck | |
1048 | cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck | |
1049 | cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck | |
1050 | ||
1051 | mkdir $(DISTDIR)/samples/menu | |
1052 | cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu | |
1053 | cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu | |
1054 | cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu | |
1055 | ||
1056 | mkdir $(DISTDIR)/samples/minifram | |
1057 | mkdir $(DISTDIR)/samples/minifram/bitmaps | |
1058 | cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram | |
1059 | cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram | |
1060 | cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram | |
1061 | cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram | |
1062 | cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram | |
1063 | cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps | |
1064 | ||
1065 | mkdir $(DISTDIR)/samples/minimal | |
1066 | cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal | |
1067 | cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal | |
1068 | cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal | |
1069 | cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal | |
1070 | cp $(SAMPDIR)/minimal/*.mms $(DISTDIR)/samples/minimal | |
1071 | ||
1072 | mkdir $(DISTDIR)/samples/dialup | |
1073 | cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup | |
1074 | cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup | |
1075 | cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup | |
1076 | ||
1077 | mkdir $(DISTDIR)/samples/newgrid | |
1078 | cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid | |
1079 | cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid | |
1080 | cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid | |
1081 | cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid | |
1082 | ||
1083 | mkdir $(DISTDIR)/samples/notebook | |
1084 | cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook | |
1085 | cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook | |
1086 | cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook | |
1087 | cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook | |
1088 | ||
1089 | mkdir $(DISTDIR)/samples/opengl | |
1090 | cp $(SAMPDIR)/opengl/Makefile.in $(DISTDIR)/samples/opengl | |
1091 | mkdir $(DISTDIR)/samples/opengl/penguin | |
1092 | cp $(SAMPDIR)/opengl/penguin/Makefile.in $(DISTDIR)/samples/opengl/penguin | |
1093 | cp $(SAMPDIR)/opengl/penguin/makefile.unx $(DISTDIR)/samples/opengl/penguin | |
1094 | cp $(SAMPDIR)/opengl/penguin/*.cpp $(DISTDIR)/samples/opengl/penguin | |
1095 | cp $(SAMPDIR)/opengl/penguin/*.c $(DISTDIR)/samples/opengl/penguin | |
1096 | cp $(SAMPDIR)/opengl/penguin/*.h $(DISTDIR)/samples/opengl/penguin | |
1097 | cp $(SAMPDIR)/opengl/penguin/*.lwo $(DISTDIR)/samples/opengl/penguin | |
1098 | mkdir $(DISTDIR)/samples/opengl/cube | |
1099 | cp $(SAMPDIR)/opengl/cube/Makefile.in $(DISTDIR)/samples/opengl/cube | |
1100 | cp $(SAMPDIR)/opengl/cube/makefile.unx $(DISTDIR)/samples/opengl/cube | |
1101 | cp $(SAMPDIR)/opengl/cube/*.cpp $(DISTDIR)/samples/opengl/cube | |
1102 | cp $(SAMPDIR)/opengl/cube/*.h $(DISTDIR)/samples/opengl/cube | |
1103 | mkdir $(DISTDIR)/samples/opengl/isosurf | |
1104 | cp $(SAMPDIR)/opengl/isosurf/Makefile.in $(DISTDIR)/samples/opengl/isosurf | |
1105 | cp $(SAMPDIR)/opengl/isosurf/makefile.unx $(DISTDIR)/samples/opengl/isosurf | |
1106 | cp $(SAMPDIR)/opengl/isosurf/*.cpp $(DISTDIR)/samples/opengl/isosurf | |
1107 | cp $(SAMPDIR)/opengl/isosurf/*.h $(DISTDIR)/samples/opengl/isosurf | |
1108 | cp $(SAMPDIR)/opengl/isosurf/*.gz $(DISTDIR)/samples/opengl/isosurf | |
1109 | ||
1110 | mkdir $(DISTDIR)/samples/png | |
1111 | cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png | |
1112 | cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png | |
1113 | cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png | |
1114 | cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png | |
1115 | cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png | |
1116 | ||
1117 | mkdir $(DISTDIR)/samples/printing | |
1118 | cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing | |
1119 | cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing | |
1120 | cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing | |
1121 | cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing | |
1122 | cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing | |
1123 | cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing | |
1124 | ||
1125 | mkdir $(DISTDIR)/samples/resource | |
1126 | cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource | |
1127 | cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource | |
1128 | cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource | |
1129 | cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource | |
1130 | cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource | |
1131 | ||
1132 | mkdir $(DISTDIR)/samples/rotate | |
1133 | cp $(SAMPDIR)/rotate/Makefile.in $(DISTDIR)/samples/rotate | |
1134 | cp $(SAMPDIR)/rotate/makefile.unx $(DISTDIR)/samples/rotate | |
1135 | cp $(SAMPDIR)/rotate/*.cpp $(DISTDIR)/samples/rotate | |
1136 | cp $(SAMPDIR)/rotate/*.bmp $(DISTDIR)/samples/rotate | |
1137 | ||
1138 | mkdir $(DISTDIR)/samples/richedit | |
1139 | cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit | |
1140 | cp $(SAMPDIR)/richedit/makefile.unx $(DISTDIR)/samples/richedit | |
1141 | cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit | |
1142 | cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit | |
1143 | cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit | |
1144 | cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit | |
1145 | cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit | |
1146 | ||
1147 | mkdir $(DISTDIR)/samples/proplist | |
1148 | cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist | |
1149 | cp $(SAMPDIR)/proplist/makefile.unx $(DISTDIR)/samples/proplist | |
1150 | cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist | |
1151 | cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist | |
1152 | ||
1153 | mkdir $(DISTDIR)/samples/propsize | |
1154 | cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize | |
1155 | cp $(SAMPDIR)/propsize/makefile.unx $(DISTDIR)/samples/propsize | |
1156 | cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize | |
1157 | cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize | |
1158 | ||
1159 | mkdir $(DISTDIR)/samples/sashtest | |
1160 | cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest | |
1161 | cp $(SAMPDIR)/sashtest/makefile.unx $(DISTDIR)/samples/sashtest | |
1162 | cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest | |
1163 | cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest | |
1164 | ||
1165 | mkdir $(DISTDIR)/samples/scroll | |
1166 | cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll | |
1167 | cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll | |
1168 | cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll | |
1169 | ||
1170 | mkdir $(DISTDIR)/samples/scrollsub | |
1171 | cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub | |
1172 | cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub | |
1173 | cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub | |
1174 | ||
1175 | mkdir $(DISTDIR)/samples/sockets | |
1176 | cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets | |
1177 | cp $(SAMPDIR)/sockets/makefile.unx $(DISTDIR)/samples/sockets | |
1178 | cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets | |
1179 | cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets | |
1180 | ||
1181 | mkdir $(DISTDIR)/samples/splitter | |
1182 | cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter | |
1183 | cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter | |
1184 | cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter | |
1185 | ||
1186 | mkdir $(DISTDIR)/samples/statbar | |
1187 | cp $(SAMPDIR)/statbar/Makefile.in $(DISTDIR)/samples/statbar | |
1188 | cp $(SAMPDIR)/statbar/makefile.unx $(DISTDIR)/samples/statbar | |
1189 | cp $(SAMPDIR)/statbar/*.cpp $(DISTDIR)/samples/statbar | |
1190 | cp $(SAMPDIR)/statbar/*.xpm $(DISTDIR)/samples/statbar | |
1191 | ||
1192 | mkdir $(DISTDIR)/samples/text | |
1193 | cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text | |
1194 | cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text | |
1195 | cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text | |
1196 | cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text | |
1197 | ||
1198 | mkdir $(DISTDIR)/samples/thread | |
1199 | cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread | |
1200 | cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread | |
1201 | cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread | |
1202 | ||
1203 | mkdir $(DISTDIR)/samples/toolbar | |
1204 | cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar | |
1205 | cp $(SAMPDIR)/toolbar/makefile.unx $(DISTDIR)/samples/toolbar | |
1206 | cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar | |
1207 | cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar | |
1208 | mkdir $(DISTDIR)/samples/toolbar/bitmaps | |
1209 | cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps | |
1210 | ||
1211 | mkdir $(DISTDIR)/samples/treectrl | |
1212 | cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl | |
1213 | cp $(SAMPDIR)/treectrl/makefile.unx $(DISTDIR)/samples/treectrl | |
1214 | cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl | |
1215 | cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl | |
1216 | cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl | |
1217 | mkdir $(DISTDIR)/samples/treectrl/bitmaps | |
1218 | cp $(SAMPDIR)/treectrl/bitmaps/*.bmp $(DISTDIR)/samples/treectrl/bitmaps | |
1219 | ||
1220 | mkdir $(DISTDIR)/samples/treelay | |
1221 | cp $(SAMPDIR)/treelay/Makefile.in $(DISTDIR)/samples/treelay | |
1222 | cp $(SAMPDIR)/treelay/makefile.unx $(DISTDIR)/samples/treelay | |
1223 | cp $(SAMPDIR)/treelay/*.cpp $(DISTDIR)/samples/treelay | |
1224 | cp $(SAMPDIR)/treelay/*.h $(DISTDIR)/samples/treelay | |
1225 | ||
1226 | mkdir $(DISTDIR)/samples/typetest | |
1227 | cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest | |
1228 | cp $(SAMPDIR)/typetest/makefile.unx $(DISTDIR)/samples/typetest | |
1229 | cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest | |
1230 | cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest | |
1231 | cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest | |
1232 | ||
1233 | mkdir $(DISTDIR)/samples/validate | |
1234 | cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate | |
1235 | cp $(SAMPDIR)/validate/makefile.unx $(DISTDIR)/samples/validate | |
1236 | cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate | |
1237 | cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate | |
1238 | cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate | |
1239 | ||
1240 | mkdir $(DISTDIR)/samples/wizard | |
1241 | cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard | |
1242 | cp $(SAMPDIR)/wizard/makefile.unx $(DISTDIR)/samples/wizard | |
1243 | cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard | |
1244 | cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard | |
1245 | ||
1246 | mkdir $(DISTDIR)/samples/widgets | |
1247 | mkdir $(DISTDIR)/samples/widgets/icons | |
1248 | cp $(SAMPDIR)/widgets/Makefile.in $(DISTDIR)/samples/widgets | |
1249 | cp $(SAMPDIR)/widgets/*.cpp $(DISTDIR)/samples/widgets | |
1250 | cp $(SAMPDIR)/widgets/*.h $(DISTDIR)/samples/widgets | |
1251 | cp $(SAMPDIR)/widgets/*.rc $(DISTDIR)/samples/widgets | |
1252 | cp $(SAMPDIR)/widgets/icons/*.xpm $(DISTDIR)/samples/widgets/icons | |
1253 | ||
1254 | UTILS_DIST: ALL_GUI_DIST | |
1255 | mkdir $(DISTDIR)/utils | |
1256 | cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils | |
1257 | cp $(UTILSDIR)/configure $(DISTDIR)/utils | |
1258 | cp $(UTILSDIR)/configure.in $(DISTDIR)/utils | |
1259 | ||
1260 | mkdir $(DISTDIR)/utils/tex2rtf | |
1261 | mkdir $(DISTDIR)/utils/tex2rtf/src | |
1262 | cp $(UTILSDIR)/tex2rtf/*.in $(DISTDIR)/utils/tex2rtf | |
1263 | cp $(UTILSDIR)/tex2rtf/src/*.h $(DISTDIR)/utils/tex2rtf/src | |
1264 | cp $(UTILSDIR)/tex2rtf/src/*.in $(DISTDIR)/utils/tex2rtf/src | |
1265 | cp $(UTILSDIR)/tex2rtf/src/*.cpp $(DISTDIR)/utils/tex2rtf/src | |
1266 | cp $(UTILSDIR)/tex2rtf/src/tex2rtf.* $(DISTDIR)/utils/tex2rtf/src | |
1267 | ||
1268 | mkdir $(DISTDIR)/utils/makegen | |
1269 | mkdir $(DISTDIR)/utils/makegen/templates | |
1270 | cp $(UTILSDIR)/makegen/Makefile.in $(DISTDIR)/utils/makegen | |
1271 | cp $(UTILSDIR)/makegen/*.cpp $(DISTDIR)/utils/makegen | |
1272 | cp $(UTILSDIR)/makegen/templates/*.* $(DISTDIR)/utils/makegen/templates | |
1273 | ||
1274 | mkdir $(DISTDIR)/utils/hhp2cached | |
1275 | cp $(UTILSDIR)/hhp2cached/*.* $(DISTDIR)/utils/hhp2cached | |
1276 | ||
1277 | mkdir $(DISTDIR)/utils/HelpGen | |
1278 | mkdir $(DISTDIR)/utils/HelpGen/src | |
1279 | cp $(UTILSDIR)/HelpGen/Makefile.in $(DISTDIR)/utils/HelpGen | |
1280 | cp $(UTILSDIR)/HelpGen/src/*.* $(DISTDIR)/utils/HelpGen/src | |
1281 | ||
1282 | cp -R $(UTILSDIR)/dialoged $(DISTDIR)/utils/dialoged | |
1283 | ||
1284 | MISC_DIST: ALL_GUI_DIST | |
1285 | mkdir $(DISTDIR)/misc | |
1286 | mkdir $(DISTDIR)/misc/afm | |
1287 | cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm | |
1288 | mkdir $(DISTDIR)/misc/gs_afm | |
1289 | cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm | |
1290 | ||
1291 | INTL_DIST: | |
1292 | mkdir $(DISTDIR)/locale | |
1293 | cp $(INTLDIR)/Makefile $(DISTDIR)/locale | |
1294 | cp $(INTLDIR)/*.po $(DISTDIR)/locale | |
1295 | -cp $(INTLDIR)/*.mo $(DISTDIR)/locale | |
1296 | ||
1297 | MANUAL_DIST: | |
1298 | mkdir $(DISTDIR)/docs | |
1299 | mkdir $(DISTDIR)/docs/latex | |
1300 | mkdir $(DISTDIR)/docs/latex/wx | |
1301 | cp $(DOCDIR)/latex/wx/*.tex $(DISTDIR)/docs/latex/wx | |
1302 | cp $(DOCDIR)/latex/wx/*.inc $(DISTDIR)/docs/latex/wx | |
1303 | cp $(DOCDIR)/latex/wx/*.gif $(DISTDIR)/docs/latex/wx | |
1304 | cp $(DOCDIR)/latex/wx/*.ini $(DISTDIR)/docs/latex/wx | |
1305 | cp $(DOCDIR)/latex/wx/*.bib $(DISTDIR)/docs/latex/wx | |
1306 | cp $(DOCDIR)/latex/wx/*.sty $(DISTDIR)/docs/latex/wx | |
1307 | ||
1308 | # this target does not generate a complete wxPython dist, it only includes | |
1309 | # those files needed for the Debian source package. | |
1310 | # see utils/wxPython/distrib for scripts to make a proper wxPython dist. | |
1311 | PYTHON_DIST: | |
1312 | mkdir $(DISTDIR)/wxPython | |
1313 | mkdir $(DISTDIR)/wxPython/contrib | |
1314 | mkdir $(DISTDIR)/wxPython/contrib/dllwidget | |
1315 | mkdir $(DISTDIR)/wxPython/contrib/gizmos | |
1316 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas | |
1317 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas/gtk | |
1318 | mkdir $(DISTDIR)/wxPython/contrib/ogl | |
1319 | mkdir $(DISTDIR)/wxPython/contrib/stc | |
1320 | mkdir $(DISTDIR)/wxPython/contrib/stc/gtk | |
1321 | mkdir $(DISTDIR)/wxPython/contrib/xrc | |
1322 | mkdir $(DISTDIR)/wxPython/demo | |
1323 | mkdir $(DISTDIR)/wxPython/demo/bitmaps | |
1324 | mkdir $(DISTDIR)/wxPython/demo/bmp_source | |
1325 | mkdir $(DISTDIR)/wxPython/demo/data | |
1326 | mkdir $(DISTDIR)/wxPython/demo/dllwidget | |
1327 | mkdir $(DISTDIR)/wxPython/src | |
1328 | mkdir $(DISTDIR)/wxPython/src/gtk | |
1329 | mkdir $(DISTDIR)/wxPython/wxPython | |
1330 | mkdir $(DISTDIR)/wxPython/wxPython/lib | |
1331 | mkdir $(DISTDIR)/wxPython/wxPython/lib/PyCrust | |
1332 | mkdir $(DISTDIR)/wxPython/wxPython/lib/editor | |
1333 | mkdir $(DISTDIR)/wxPython/wxPython/lib/mixins | |
1334 | ||
1335 | cp $(WXDIR)/wxPython/*.txt $(DISTDIR)/wxPython | |
1336 | cp $(WXDIR)/wxPython/*.py $(DISTDIR)/wxPython | |
1337 | cp $(WXDIR)/wxPython/setup.cfg $(DISTDIR)/wxPython | |
1338 | cp $(WXDIR)/wxPython/MANIFEST.in $(DISTDIR)/wxPython | |
1339 | cp $(WXDIR)/wxPython/contrib/dllwidget/*.{py,cpp,h,i} $(DISTDIR)/wxPython/contrib/dllwidget | |
1340 | cp $(WXDIR)/wxPython/contrib/gizmos/*.{py,cpp,i} $(DISTDIR)/wxPython/contrib/gizmos | |
1341 | -cp $(WXDIR)/wxPython/contrib/glcanvas/* $(DISTDIR)/wxPython/contrib/glcanvas | |
1342 | cp $(WXDIR)/wxPython/contrib/glcanvas/gtk/glcanvas.* $(DISTDIR)/wxPython/contrib/glcanvas/gtk | |
1343 | -cp $(WXDIR)/wxPython/contrib/ogl/* $(DISTDIR)/wxPython/contrib/ogl | |
1344 | -cp $(WXDIR)/wxPython/contrib/stc/* $(DISTDIR)/wxPython/contrib/stc | |
1345 | -cp $(WXDIR)/wxPython/contrib/stc/gtk/* $(DISTDIR)/wxPython/contrib/stc/gtk | |
1346 | -cp $(WXDIR)/wxPython/contrib/xrc/xrc.* $(DISTDIR)/wxPython/contrib/xrc | |
1347 | -cp $(WXDIR)/wxPython/demo/* $(DISTDIR)/wxPython/demo | |
1348 | -cp $(WXDIR)/wxPython/demo/bitmaps/* $(DISTDIR)/wxPython/demo/bitmaps | |
1349 | -cp $(WXDIR)/wxPython/demo/bmp_source/* $(DISTDIR)/wxPython/demo/bmp_source | |
1350 | -cp $(WXDIR)/wxPython/demo/data/* $(DISTDIR)/wxPython/demo/data | |
1351 | -cp $(WXDIR)/wxPython/demo/dllwidget/Makefile $(DISTDIR)/wxPython/demo/dllwidget | |
1352 | -cp $(WXDIR)/wxPython/demo/dllwidget/test_* $(DISTDIR)/wxPython/demo/dllwidget | |
1353 | -cp $(WXDIR)/wxPython/src/* $(DISTDIR)/wxPython/src | |
1354 | cp $(WXDIR)/wxPython/src/gtk/*.py $(DISTDIR)/wxPython/src/gtk | |
1355 | cp $(WXDIR)/wxPython/src/gtk/*.cpp $(DISTDIR)/wxPython/src/gtk | |
1356 | cp $(WXDIR)/wxPython/wxPython/lib/*.py $(DISTDIR)/wxPython/wxPython/lib | |
1357 | cp $(WXDIR)/wxPython/wxPython/lib/PyCrust/*.py $(DISTDIR)/wxPython/wxPython/lib/PyCrust | |
1358 | cp $(WXDIR)/wxPython/wxPython/lib/editor/*.py $(DISTDIR)/wxPython/wxPython/lib/editor | |
1359 | cp $(WXDIR)/wxPython/wxPython/lib/mixins/*.py $(DISTDIR)/wxPython/wxPython/lib/mixins | |
1360 | ||
1361 | distclean: | |
1362 | $(RM) -r _dist_dir | |
1363 | ||
1364 | # VZ: the -only targets allow to do "make dist bzip-dist-only" without copying | |
1365 | # the files twice | |
1366 | dist-only: | |
1367 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1368 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); | |
1369 | @if test "$(USE_GUI)" = 1; then \ | |
1370 | cd $(DISTDIR); \ | |
1371 | mv samples wxSamples-$(VER_SUFFIX); \ | |
1372 | echo "*** Creating wxSamples archive..."; \ | |
1373 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1374 | mv wxSamples-$(VER_SUFFIX) samples; \ | |
1375 | mv demos wxDemos-$(VER_SUFFIX); \ | |
1376 | echo "*** Creating wxDemos archive..."; \ | |
1377 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ | |
1378 | mv wxDemos-$(VER_SUFFIX) demos; \ | |
1379 | fi | |
1380 | ||
1381 | dist: @GUIDIST@ | |
1382 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1383 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); | |
1384 | @if test "$(USE_GUI)" = 1; then \ | |
1385 | cd $(DISTDIR); \ | |
1386 | mv samples wxSamples-$(VER_SUFFIX); \ | |
1387 | echo "*** Creating wxSamples archive..."; \ | |
1388 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1389 | mv wxSamples-$(VER_SUFFIX) samples; \ | |
1390 | mv demos wxDemos-$(VER_SUFFIX); \ | |
1391 | echo "*** Creating wxDemos archive..."; \ | |
1392 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ | |
1393 | mv wxDemos-$(VER_SUFFIX) demos; \ | |
1394 | fi | |
1395 | ||
1396 | bzip-dist-only: | |
1397 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1398 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP); | |
1399 | @if test "$(USE_GUI)" = 1; then \ | |
1400 | cd $(DISTDIR); \ | |
1401 | mv samples wxSamples-${VER_SUFFIX}; \ | |
1402 | echo "*** Creating wxSamples archive..."; \ | |
1403 | tar ch wxSamples-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1404 | mv wxSamples-${VER_SUFFIX} samples; \ | |
1405 | mv demos wxDemos-${VER_SUFFIX}; \ | |
1406 | echo "*** Creating wxDemos archive..."; \ | |
1407 | tar ch wxDemos-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1408 | mv wxDemos-${VER_SUFFIX} demos; \ | |
1409 | fi | |
1410 | ||
1411 | bzip-dist: @GUIDIST@ | |
1412 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1413 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP) | |
1414 | @if test "$(USE_GUI)" = 1; then \ | |
1415 | cd $(DISTDIR); \ | |
1416 | mv samples wxSamples; \ | |
1417 | tar ch wxSamples | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1418 | mv wxSamples samples; \ | |
1419 | mv demos wxDemos; \ | |
1420 | tar ch wxDemos | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1421 | mv wxDemos demos; \ | |
1422 | fi | |
1423 | ||
1424 | debian-dist: debian-native-dist debian-msw-dirs MSW_DIST | |
1425 | mkdir $(DISTDIR)/debian | |
1426 | -cp $(WXDIR)/debian/* $(DISTDIR)/debian | |
1427 | cp $(DOCDIR)/licence.txt $(DISTDIR)/docs | |
1428 | cp $(DOCDIR)/licendoc.txt $(DISTDIR)/docs | |
1429 | cp $(DOCDIR)/preamble.txt $(DISTDIR)/docs | |
1430 | rm -f $(DISTDIR)/*.spec | |
1431 | ||
1432 | @# now prune away a lot of the crap included by using cp -R | |
1433 | @# in other dist targets. Ugly and hardly portable but it | |
1434 | @# will run on any Debian box and that's enough for now. | |
1435 | ||
1436 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \ | |
1437 | \( -name "makefile.*" -a ! -name "makefile.unx" \) \) \ | |
1438 | -print0 | xargs -0 rm -rf | |
1439 | ||
1440 | rm -rf $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
1441 | mv $(DISTDIR) $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
1442 | ||
1443 | debian-native-dist: @GUIDIST@ UNIV_DIST MANUAL_DIST PYTHON_DIST | |
1444 | ||
1445 | debian-msw-dirs: | |
1446 | mkdir $(DISTDIR)/include/wx/msw | |
1447 | mkdir $(DISTDIR)/src/msw | |
1448 | ||
1449 | ||
1450 | clean: | |
1451 | $(RM) *.o | |
1452 | $(RM) *.d | |
1453 | $(RM) parser.c | |
1454 | $(RM) lexer.c | |
1455 | $(RM) $(build_libdir)/lib* | |
1456 | # Don't remove this lot, configure will reuse it | |
1457 | # if it's still good | |
1458 | # $(RM) -r $(build_libdir)/wx/* | |
1459 | ||
1460 | cleanall: clean | |
1461 | ||
1462 | ||
1463 | RPMTOP=_dist_dir/_rpm_top | |
1464 | ||
1465 | rpm: bzip-dist | |
1466 | @echo "*** Building RPMs ***" | |
1467 | -mkdir $(RPMTOP) | |
1468 | -mkdir $(RPMTOP)/SOURCES | |
1469 | -mkdir $(RPMTOP)/SPECS | |
1470 | -mkdir $(RPMTOP)/BUILD | |
1471 | -mkdir $(RPMTOP)/RPMS | |
1472 | -mkdir $(RPMTOP)/SRPMS | |
1473 | cp -f $(WXARCHIVE_BZIP) $(RPMTOP)/SOURCES | |
1474 | rpm -ba --define "_topdir `pwd`/$(RPMTOP)" $(WXDIR)/wx$(TOOLKIT).spec | |
1475 | mv -f `find $(RPMTOP) -name "wx$(TARGET)*.rpm"` . | |
1476 |