]>
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 | @IF_GNU_MAKE@-include $(OBJECTS:.o=.d) | |
379 | ||
380 | CREATE_INSTALLED_LINKS: preinstall | |
381 | $(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
382 | $(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
383 | cd $(libdir) \ | |
384 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK1@ \ | |
385 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK2@ | |
386 | ||
387 | CREATE_INSTALLED_LINKS_GL: preinstall_gl | |
388 | $(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
389 | $(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
390 | cd $(libdir) \ | |
391 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK1_GL@ \ | |
392 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK2_GL@ | |
393 | ||
394 | afminstall: preinstall | |
395 | @if test ! -d $(datadir); then $(INSTALL) -d $(datadir); fi | |
396 | $(INSTALL) -d $(datadir)/wx | |
397 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN) | |
398 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN)/afm | |
399 | $(INSTALL) -d $(datadir)/wx/$(VER_MAJMIN)/gs_afm | |
400 | $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/afm | |
401 | $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/gs_afm | |
402 | ||
403 | m4datainstall: preinstall | |
404 | $(INSTALL) -d $(datadir)/aclocal | |
405 | $(INSTALL_DATA) $(top_srcdir)/wxwin.m4 $(datadir)/aclocal | |
406 | ||
407 | # this is the real install target: copies the library, wx-config and the | |
408 | # headers to the installation directory | |
409 | preinstall: $(build_libdir)/@WX_TARGET_LIBRARY@ $(top_builddir)/wx@TOOLCHAIN_NAME@-config | |
410 | @echo " " | |
411 | @echo " Installing wxWindows..." | |
412 | @echo " " | |
413 | ||
414 | @if test ! -d $(prefix); then $(INSTALL) -d $(prefix); fi | |
415 | @if test ! -d $(bindir); then $(INSTALL) -d $(bindir); fi | |
416 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
417 | ||
418 | $(INSTALL_SCRIPT) $(top_builddir)/wx@TOOLCHAIN_NAME@-config $(bindir)/wx@TOOLCHAIN_NAME@-config | |
419 | cd $(bindir) && rm -f wx-config && $(LN_S) wx@TOOLCHAIN_NAME@-config wx-config | |
420 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@ | |
421 | @if test "x@WX_LIBRARY_IMPORTLIB@" != "x"; then \ | |
422 | $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_LIBRARY_IMPORTLIB@ $(libdir)/@WX_LIBRARY_IMPORTLIB@; fi | |
423 | ||
424 | $(INSTALL) -d $(libdir)/wx | |
425 | $(INSTALL) -d $(libdir)/wx/include | |
426 | $(INSTALL) -d $(libdir)/wx/include/@TOOLCHAIN_NAME@ | |
427 | $(INSTALL) -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx | |
428 | $(INSTALL_DATA) $(build_libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h \ | |
429 | $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h | |
430 | ||
431 | $(INSTALL) -d $(includedir)/wx | |
432 | @# FIXME: This will erroneously install a wx/base dir for wxBase.. | |
433 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi | |
434 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi | |
435 | @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi | |
436 | @if test "@TOOLKIT_DIR@" = "msw"; then $(INSTALL) -d $(includedir)/wx/msw/ole; fi | |
437 | ||
438 | @# always install msw headers for wxBase, it's much simpler | |
439 | @if test "$(USE_GUI)" = 0; then $(INSTALL) -d $(includedir)/wx/msw; fi | |
440 | ||
441 | $(INSTALL) -d $(includedir)/wx/protocol | |
442 | $(INSTALL) -d $(includedir)/wx/unix | |
443 | @list='$(HEADERS)'; for p in $$list; do \ | |
444 | $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \ | |
445 | echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \ | |
446 | done | |
447 | ||
448 | @if test ! -d $(localedir); then $(INSTALL) -d $(localedir); fi | |
449 | @for p in $(WX_LINGUAS); do \ | |
450 | if test ! -d $(localedir)/$$p; then $(INSTALL) -d $(localedir)/$$p; fi;\ | |
451 | if test ! -d $(localedir)/$$p/LC_MESSAGES; then $(INSTALL) -d $(localedir)/$$p/LC_MESSAGES; fi;\ | |
452 | $(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ | |
453 | echo "$(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo"; \ | |
454 | done | |
455 | ||
456 | preinstall_res: $(build_libdir)/@WX_RESOURCES_MACOSX_COMPILED@ | |
457 | @echo " " | |
458 | @echo " Installing wxWindows Mac resource ..." | |
459 | @echo " " | |
460 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
461 | $(INSTALL_PROGRAM) $(build_libdir)/@WX_RESOURCES_MACOSX_COMPILED@ $(libdir)/@WX_RESOURCES_MACOSX_COMPILED@ | |
462 | ||
463 | preinstall_gl: $(build_libdir)/@WX_TARGET_LIBRARY_GL@ | |
464 | @echo " " | |
465 | @echo " Installing wxWindows OpenGl add-on..." | |
466 | @echo " " | |
467 | @if test ! -d $(libdir); then $(INSTALL) -d $(libdir); fi | |
468 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY_GL@ $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
469 | ||
470 | install: @AFMINSTALL@ @WX_ALL_INSTALLED@ m4datainstall | |
471 | @echo " " | |
472 | @echo " The installation of wxWindows is finished. On certain" | |
473 | @echo " platforms (e.g. Linux) you'll now have to run ldconfig" | |
474 | @echo " if you installed a shared library and also modify the" | |
475 | @echo " LD_LIBRARY_PATH (or equivalent) environment variable." | |
476 | @echo " " | |
477 | @echo " wxWindows comes with no guarantees and doesn't claim" | |
478 | @echo " to be suitable for any purpose." | |
479 | @echo " " | |
480 | @echo " Read the wxWindows Licence on licencing conditions." | |
481 | @echo " " | |
482 | ||
483 | uninstall: | |
484 | @echo " " | |
485 | @echo " Uninstalling wxWindows..." | |
486 | @echo " " | |
487 | @echo " Removing library..." | |
488 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY@ | |
489 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1@ | |
490 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2@ | |
491 | @echo " Removing GL library..." | |
492 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY_GL@ | |
493 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ | |
494 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ | |
495 | @echo " Removing helper files..." | |
496 | @$(RM) $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h | |
497 | @$(RM) $(bindir)/wx-config | |
498 | @$(RM) $(bindir)/wx@TOOLCHAIN_NAME@-config | |
499 | @$(RM) $(datadir)/wx/afm/* | |
500 | @$(RM) $(datadir)/wx/gs_afm/* | |
501 | # FIXME: wxBase doesnt install these next 3 dirs. | |
502 | @-rmdir $(datadir)/wx/gs_afm | |
503 | @-rmdir $(datadir)/wx/afm | |
504 | @-rmdir $(datadir)/wx | |
505 | @echo " Removing headers..." | |
506 | @list='$(HEADERS)'; for p in $$list; do \ | |
507 | $(RM) $(includedir)/wx/$$p; \ | |
508 | done | |
509 | @echo " Removing i18n files..." | |
510 | @-for p in $(WX_LINGUAS); do \ | |
511 | $(RM) $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ | |
512 | rmdir $(localedir)/$$p/LC_MESSAGES; \ | |
513 | rmdir $(localedir)/$$p; \ | |
514 | done | |
515 | @echo " Removing directories..." | |
516 | @-rmdir $(localedir) | |
517 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; fi | |
518 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@; fi | |
519 | @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi | |
520 | @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi | |
521 | @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi | |
522 | @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi | |
523 | @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi | |
524 | @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi | |
525 | @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi | |
526 | @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi | |
527 | @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi | |
528 | @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi | |
529 | ||
530 | # this target should copy only the files common to really all ports (including | |
531 | # wxBase) to the dist dir | |
532 | ALL_DIST: distclean | |
533 | mkdir _dist_dir | |
534 | mkdir $(DISTDIR) | |
535 | cp $(WXDIR)/wxwin.m4 $(DISTDIR) | |
536 | cp $(WXDIR)/aclocal.m4 $(DISTDIR) | |
537 | cp $(WXDIR)/config.sub $(DISTDIR) | |
538 | cp $(WXDIR)/config.guess $(DISTDIR) | |
539 | cp $(WXDIR)/install-sh $(DISTDIR) | |
540 | cp $(WXDIR)/mkinstalldirs $(DISTDIR) | |
541 | cp $(WXDIR)/wx-config.in $(DISTDIR) | |
542 | cp $(WXDIR)/setup.h.in $(DISTDIR) | |
543 | cp $(WXDIR)/setup.h_vms $(DISTDIR) | |
544 | cp $(WXDIR)/descrip.mms $(DISTDIR) | |
545 | cp $(WXDIR)/Makefile.in $(DISTDIR) | |
546 | cp $(WXDIR)/wxBase.spec $(DISTDIR) | |
547 | cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB | |
548 | cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt | |
549 | cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt | |
550 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
551 | mkdir $(DISTDIR)/lib | |
552 | cp $(WXDIR)/lib/vms.opt $(DISTDIR)/lib | |
553 | cp $(WXDIR)/lib/vms_gtk.opt $(DISTDIR)/lib | |
554 | mkdir $(DISTDIR)/src | |
555 | cp $(SRCDIR)/files.lst $(DISTDIR)/src/ | |
556 | mkdir $(DISTDIR)/src/zlib | |
557 | cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib | |
558 | cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib | |
559 | cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib | |
560 | cp $(ZLIBDIR)/*.mms $(DISTDIR)/src/zlib | |
561 | mkdir $(DISTDIR)/src/regex | |
562 | cp $(REGEXDIR)/*.h $(DISTDIR)/src/regex | |
563 | cp $(REGEXDIR)/*.ih $(DISTDIR)/src/regex | |
564 | cp $(REGEXDIR)/*.c $(DISTDIR)/src/regex | |
565 | cp $(REGEXDIR)/Makefile $(DISTDIR)/src/regex | |
566 | cp $(REGEXDIR)/COPYRIGHT $(DISTDIR)/src/regex | |
567 | cp $(REGEXDIR)/README $(DISTDIR)/src/regex | |
568 | cp $(REGEXDIR)/WHATSNEW $(DISTDIR)/src/regex | |
569 | cp $(REGEXDIR)/mkh $(DISTDIR)/src/regex | |
570 | cp $(REGEXDIR)/tests $(DISTDIR)/src/regex | |
571 | ||
572 | # this target is the common part of distribution script for all GUI toolkits, | |
573 | # but is not used when building wxBase distribution | |
574 | ALL_GUI_DIST: ALL_DIST | |
575 | cp $(WXDIR)/configure.in $(DISTDIR) | |
576 | cp $(WXDIR)/configure $(DISTDIR) | |
577 | cp $(DOCDIR)/readme.txt $(DISTDIR)/README.txt | |
578 | cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt | |
579 | if test -f $(DOCDIR)/$(TOOLKITDIR)/changes.txt ; then \ | |
580 | cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES-$(TOOLKIT).txt ; fi | |
581 | cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README-$(TOOLKIT).txt | |
582 | cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt | |
583 | mkdir $(DISTDIR)/include | |
584 | mkdir $(DISTDIR)/include/wx | |
585 | mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR) | |
586 | mkdir $(DISTDIR)/include/wx/generic | |
587 | mkdir $(DISTDIR)/include/wx/html | |
588 | mkdir $(DISTDIR)/include/wx/protocol | |
589 | mkdir $(DISTDIR)/include/wx/unix | |
590 | cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx | |
591 | cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx | |
592 | cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx | |
593 | cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic | |
594 | cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic | |
595 | cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html | |
596 | cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix | |
597 | cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol | |
598 | mkdir $(DISTDIR)/src/common | |
599 | mkdir $(DISTDIR)/src/generic | |
600 | mkdir $(DISTDIR)/src/html | |
601 | mkdir $(DISTDIR)/src/html/bitmaps | |
602 | mkdir $(DISTDIR)/src/$(TOOLKITDIR) | |
603 | mkdir $(DISTDIR)/src/png | |
604 | mkdir $(DISTDIR)/src/jpeg | |
605 | mkdir $(DISTDIR)/src/tiff | |
606 | mkdir $(DISTDIR)/src/iodbc | |
607 | mkdir $(DISTDIR)/src/unix | |
608 | cp $(SRCDIR)/*.in $(DISTDIR)/src | |
609 | cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common | |
610 | cp $(COMMDIR)/*.c $(DISTDIR)/src/common | |
611 | cp $(COMMDIR)/*.inc $(DISTDIR)/src/common | |
612 | cp $(COMMDIR)/*.l $(DISTDIR)/src/common | |
613 | cp $(COMMDIR)/*.h $(DISTDIR)/src/common | |
614 | cp $(COMMDIR)/*.y $(DISTDIR)/src/common | |
615 | cp $(COMMDIR)/*.mms $(DISTDIR)/src/common | |
616 | cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix | |
617 | cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix | |
618 | cp $(UNIXDIR)/*.mms $(DISTDIR)/src/unix | |
619 | cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic | |
620 | cp $(GENDIR)/*.mms $(DISTDIR)/src/generic | |
621 | cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html | |
622 | cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps | |
623 | cp $(PNGDIR)/*.h $(DISTDIR)/src/png | |
624 | cp $(PNGDIR)/*.c $(DISTDIR)/src/png | |
625 | cp $(PNGDIR)/README $(DISTDIR)/src/png | |
626 | cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg | |
627 | cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg | |
628 | cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg | |
629 | cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff | |
630 | cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff | |
631 | cp $(TIFFDIR)/README $(DISTDIR)/src/tiff | |
632 | cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc | |
633 | cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc | |
634 | cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc | |
635 | cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc | |
636 | cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc | |
637 | cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc | |
638 | cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc | |
639 | ||
640 | BASE_DIST: ALL_DIST | |
641 | # make --disable-gui the default | |
642 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
643 | $(WXDIR)/configure.in > $(DISTDIR)/configure.in | |
644 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ | |
645 | $(WXDIR)/configure > $(DISTDIR)/configure | |
646 | chmod +x $(DISTDIR)/configure | |
647 | mkdir $(DISTDIR)/include | |
648 | mkdir $(DISTDIR)/include/wx | |
649 | mkdir $(DISTDIR)/include/wx/protocol | |
650 | mkdir $(DISTDIR)/include/wx/unix | |
651 | mkdir $(DISTDIR)/include/wx/msw | |
652 | mkdir $(DISTDIR)/src/common | |
653 | mkdir $(DISTDIR)/src/unix | |
654 | mkdir $(DISTDIR)/src/msw | |
655 | cp @PORT_FILES@ $(DISTDIR) | |
656 | cp $(WXDIR)/src/wxBase*.dsp $(DISTDIR) | |
657 | cp $(WXDIR)/src/wxBase*.dsw $(DISTDIR) | |
658 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt | |
659 | cp $(DOCDIR)/install.txt $(DISTDIR)/README.txt | |
660 | cp $(SRCDIR)/*.in $(DISTDIR)/src | |
661 | cp $(WXDIR)/src/common/*.inc $(DISTDIR)/src/common | |
662 | cp $(WXDIR)/src/common/base.rc $(DISTDIR)/src/common | |
663 | cp $(WXDIR)/src/common/unzip.h $(DISTDIR)/src/common | |
664 | list='$(HEADERS)'; for p in $$list; do \ | |
665 | cp $(WXDIR)/include/wx/$$p $(DISTDIR)/include/wx/$$p; \ | |
666 | done | |
667 | list='$(SOURCES)'; for p in $$list; do \ | |
668 | cp $(WXDIR)/src/$$p $(DISTDIR)/src/$$p; \ | |
669 | done | |
670 | ||
671 | mkdir $(DISTDIR)/samples | |
672 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
673 | cp $(SAMPDIR)/configure $(DISTDIR)/samples | |
674 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
675 | ||
676 | mkdir $(DISTDIR)/samples/console | |
677 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
678 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
679 | cp $(SAMPDIR)/console/console.cpp $(DISTDIR)/samples/console | |
680 | cp $(SAMPDIR)/console/console.dsp $(DISTDIR)/samples/console | |
681 | cp $(SAMPDIR)/console/testdata.fc $(DISTDIR)/samples/console | |
682 | ||
683 | GTK_DIST: ALL_GUI_DIST | |
684 | cp $(WXDIR)/wxGTK.spec $(DISTDIR) | |
685 | cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk | |
686 | cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk | |
687 | cp $(GTKDIR)/files.lst $(DISTDIR)/src/gtk | |
688 | cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk | |
689 | cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk | |
690 | cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk | |
691 | cp $(GTKDIR)/*.mms $(DISTDIR)/src/gtk | |
692 | mkdir $(DISTDIR)/contrib | |
693 | cp -R $(WXDIR)/contrib $(DISTDIR) | |
694 | ||
695 | MOTIF_DIST: ALL_GUI_DIST | |
696 | cp $(WXDIR)/wxMotif.spec $(DISTDIR) | |
697 | cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif | |
698 | cp $(MOTIFDIR)/files.lst $(DISTDIR)/src/motif | |
699 | cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif | |
700 | cp $(MOTIFDIR)/*.c $(DISTDIR)/src/motif | |
701 | cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif | |
702 | mkdir $(DISTDIR)/src/motif/xmcombo | |
703 | cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo | |
704 | cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo | |
705 | cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo | |
706 | ||
707 | MACX_DIST: ALL_GUI_DIST | |
708 | cp $(INCDIR)/*.* $(DISTDIR)/include | |
709 | cp $(INCDIR)/wx/mac/*.h $(DISTDIR)/include/wx/mac | |
710 | cp $(MACDIR)/files.lst $(DISTDIR)/src/mac | |
711 | cp $(MACDIR)/*.cpp $(DISTDIR)/src/mac | |
712 | cp $(MACDIR)/*.c $(DISTDIR)/src/mac | |
713 | cp $(MACDIR)/*.h $(DISTDIR)/src/mac | |
714 | cp $(MACDIR)/*.r $(DISTDIR)/src/mac | |
715 | mkdir $(DISTDIR)/src/mac/morefile | |
716 | cp $(MACDIR)/morefile/*.h $(DISTDIR)/src/mac/morefile | |
717 | cp $(MACDIR)/morefile/*.c $(DISTDIR)/src/mac/morefile | |
718 | mkdir $(DISTDIR)/src/mac/macsock | |
719 | cp $(MACDIR)/macsock/*.lib $(DISTDIR)/src/mac/macsock | |
720 | ||
721 | MSW_DIST: ALL_GUI_DIST | |
722 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) | |
723 | mkdir $(DISTDIR)/include/wx/msw/ctl3d | |
724 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32 | |
725 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
726 | mkdir $(DISTDIR)/include/wx/msw/ole | |
727 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw | |
728 | cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw | |
729 | cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw | |
730 | cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw | |
731 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw | |
732 | cp $(INCDIR)/wx/msw/ctl3d/*.h $(DISTDIR)/include/wx/msw/ctl3d | |
733 | cp $(INCDIR)/wx/msw/gnuwin32/*.h $(DISTDIR)/include/wx/msw/gnuwin32 | |
734 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.h $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
735 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.def $(DISTDIR)/include/wx/msw/gnuwin32/gl | |
736 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole | |
737 | ||
738 | mkdir $(DISTDIR)/src/msw/ole | |
739 | cp $(MSWDIR)/files.lst $(DISTDIR)/src/msw | |
740 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw | |
741 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw | |
742 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw | |
743 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole | |
744 | ||
745 | UNIV_DIST: ALL_GUI_DIST | |
746 | mkdir $(DISTDIR)/include/wx/univ | |
747 | mkdir $(DISTDIR)/src/univ | |
748 | mkdir $(DISTDIR)/src/univ/themes | |
749 | cp $(INCDIR)/wx/univ/*.h $(DISTDIR)/include/wx/univ | |
750 | cp $(SRCDIR)/univ/files.lst $(DISTDIR)/src/univ | |
751 | cp $(SRCDIR)/univ/*.cpp $(DISTDIR)/src/univ | |
752 | cp $(SRCDIR)/univ/themes/*.cpp $(DISTDIR)/src/univ/themes | |
753 | ||
754 | DEMOS_DIST: ALL_GUI_DIST | |
755 | mkdir $(DISTDIR)/demos | |
756 | cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos | |
757 | cp $(DEMODIR)/configure $(DISTDIR)/demos | |
758 | cp $(DEMODIR)/configure.in $(DISTDIR)/demos | |
759 | ||
760 | mkdir $(DISTDIR)/demos/bombs | |
761 | cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs | |
762 | cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs | |
763 | cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs | |
764 | cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs | |
765 | cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs | |
766 | cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs | |
767 | ||
768 | cp -R $(DEMODIR)/dbbrowse $(DISTDIR)/demos/dbbrowse | |
769 | ||
770 | mkdir $(DISTDIR)/demos/forty | |
771 | cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty | |
772 | cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty | |
773 | cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty | |
774 | cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty | |
775 | cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty | |
776 | cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty | |
777 | ||
778 | mkdir $(DISTDIR)/demos/life | |
779 | mkdir $(DISTDIR)/demos/life/bitmaps | |
780 | cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life | |
781 | cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life | |
782 | cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life | |
783 | cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life | |
784 | cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life | |
785 | cp $(DEMODIR)/life/*.inc $(DISTDIR)/demos/life | |
786 | cp $(DEMODIR)/life/*.lif $(DISTDIR)/demos/life | |
787 | cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps | |
788 | ||
789 | mkdir $(DISTDIR)/demos/poem | |
790 | cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem | |
791 | cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem | |
792 | cp $(DEMODIR)/poem/*.h $(DISTDIR)/demos/poem | |
793 | cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem | |
794 | cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem | |
795 | cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem | |
796 | cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem | |
797 | ||
798 | mkdir $(DISTDIR)/demos/fractal | |
799 | cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal | |
800 | cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal | |
801 | cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal | |
802 | ||
803 | SAMPLES_DIST: ALL_GUI_DIST | |
804 | mkdir $(DISTDIR)/samples | |
805 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples | |
806 | cp $(SAMPDIR)/configure $(DISTDIR)/samples | |
807 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples | |
808 | ||
809 | mkdir $(DISTDIR)/samples/calendar | |
810 | cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar | |
811 | cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar | |
812 | cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar | |
813 | ||
814 | mkdir $(DISTDIR)/samples/caret | |
815 | cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret | |
816 | cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret | |
817 | cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret | |
818 | cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret | |
819 | ||
820 | mkdir $(DISTDIR)/samples/checklst | |
821 | cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst | |
822 | cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst | |
823 | cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst | |
824 | cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst | |
825 | cp $(SAMPDIR)/checklst/*.mms $(DISTDIR)/samples/checklst | |
826 | ||
827 | mkdir $(DISTDIR)/samples/config | |
828 | cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config | |
829 | cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config | |
830 | cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config | |
831 | ||
832 | mkdir $(DISTDIR)/samples/console | |
833 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console | |
834 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console | |
835 | cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console | |
836 | ||
837 | mkdir $(DISTDIR)/samples/controls | |
838 | mkdir $(DISTDIR)/samples/controls/icons | |
839 | cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls | |
840 | cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls | |
841 | cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls | |
842 | cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls | |
843 | cp $(SAMPDIR)/controls/*.mms $(DISTDIR)/samples/controls | |
844 | cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons | |
845 | ||
846 | mkdir $(DISTDIR)/samples/db | |
847 | cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db | |
848 | cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db | |
849 | cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db | |
850 | cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db | |
851 | cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db | |
852 | ||
853 | mkdir $(DISTDIR)/samples/dialogs | |
854 | cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs | |
855 | cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs | |
856 | cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs | |
857 | cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs | |
858 | cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs | |
859 | cp $(SAMPDIR)/dialogs/*.mms $(DISTDIR)/samples/dialogs | |
860 | ||
861 | mkdir $(DISTDIR)/samples/dnd | |
862 | cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd | |
863 | cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd | |
864 | cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd | |
865 | cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd | |
866 | cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd | |
867 | cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd | |
868 | cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd | |
869 | ||
870 | mkdir $(DISTDIR)/samples/docview | |
871 | cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview | |
872 | cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview | |
873 | cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview | |
874 | cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview | |
875 | cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview | |
876 | ||
877 | mkdir $(DISTDIR)/samples/docvwmdi | |
878 | cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi | |
879 | cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi | |
880 | cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi | |
881 | cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi | |
882 | ||
883 | mkdir $(DISTDIR)/samples/dragimag | |
884 | cp $(SAMPDIR)/dragimag/Makefile.in $(DISTDIR)/samples/dragimag | |
885 | cp $(SAMPDIR)/dragimag/makefile.unx $(DISTDIR)/samples/dragimag | |
886 | cp $(SAMPDIR)/dragimag/*.cpp $(DISTDIR)/samples/dragimag | |
887 | cp $(SAMPDIR)/dragimag/*.h $(DISTDIR)/samples/dragimag | |
888 | cp $(SAMPDIR)/dragimag/*.xpm $(DISTDIR)/samples/dragimag | |
889 | cp $(SAMPDIR)/dragimag/*.png $(DISTDIR)/samples/dragimag | |
890 | ||
891 | mkdir $(DISTDIR)/samples/drawing | |
892 | cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing | |
893 | cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing | |
894 | cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing | |
895 | cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing | |
896 | cp $(SAMPDIR)/drawing/*.bmp $(DISTDIR)/samples/drawing | |
897 | ||
898 | mkdir $(DISTDIR)/samples/dynamic | |
899 | cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic | |
900 | cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic | |
901 | cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic | |
902 | cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic | |
903 | ||
904 | mkdir $(DISTDIR)/samples/erase | |
905 | cp $(SAMPDIR)/erase/Makefile.in $(DISTDIR)/samples/erase | |
906 | cp $(SAMPDIR)/erase/makefile.unx $(DISTDIR)/samples/erase | |
907 | cp $(SAMPDIR)/erase/*.cpp $(DISTDIR)/samples/erase | |
908 | ||
909 | mkdir $(DISTDIR)/samples/event | |
910 | cp $(SAMPDIR)/event/Makefile.in $(DISTDIR)/samples/event | |
911 | cp $(SAMPDIR)/event/makefile.unx $(DISTDIR)/samples/event | |
912 | cp $(SAMPDIR)/event/*.cpp $(DISTDIR)/samples/event | |
913 | ||
914 | mkdir $(DISTDIR)/samples/exec | |
915 | cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec | |
916 | cp $(SAMPDIR)/exec/makefile.unx $(DISTDIR)/samples/exec | |
917 | cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec | |
918 | ||
919 | mkdir $(DISTDIR)/samples/font | |
920 | cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font | |
921 | cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font | |
922 | cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font | |
923 | ||
924 | mkdir $(DISTDIR)/samples/grid | |
925 | cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid | |
926 | cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid | |
927 | cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid | |
928 | ||
929 | mkdir $(DISTDIR)/samples/help | |
930 | mkdir $(DISTDIR)/samples/help/doc | |
931 | cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help | |
932 | cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help | |
933 | cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help | |
934 | cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help | |
935 | cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc | |
936 | ||
937 | mkdir $(DISTDIR)/samples/html | |
938 | cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html | |
939 | mkdir $(DISTDIR)/samples/html/about | |
940 | cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about | |
941 | cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about | |
942 | mkdir $(DISTDIR)/samples/html/about/data | |
943 | cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data | |
944 | cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data | |
945 | mkdir $(DISTDIR)/samples/html/help | |
946 | cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help | |
947 | cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help | |
948 | mkdir $(DISTDIR)/samples/html/help/helpfiles | |
949 | cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles | |
950 | mkdir $(DISTDIR)/samples/html/helpview | |
951 | cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview | |
952 | cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview | |
953 | cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview | |
954 | mkdir $(DISTDIR)/samples/html/printing | |
955 | cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing | |
956 | cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing | |
957 | cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing | |
958 | mkdir $(DISTDIR)/samples/html/test | |
959 | cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test | |
960 | cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test | |
961 | cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test | |
962 | cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test | |
963 | cp $(SAMPDIR)/html/test/*.gif $(DISTDIR)/samples/html/test | |
964 | cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test | |
965 | cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test | |
966 | mkdir $(DISTDIR)/samples/html/virtual | |
967 | cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual | |
968 | cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual | |
969 | cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual | |
970 | mkdir $(DISTDIR)/samples/html/widget | |
971 | cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget | |
972 | cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget | |
973 | cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget | |
974 | mkdir $(DISTDIR)/samples/html/zip | |
975 | cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip | |
976 | cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip | |
977 | cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip | |
978 | cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip | |
979 | ||
980 | mkdir $(DISTDIR)/samples/image | |
981 | cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image | |
982 | cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image | |
983 | cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image | |
984 | cp $(SAMPDIR)/image/*.mms $(DISTDIR)/samples/image | |
985 | cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image | |
986 | cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image | |
987 | cp $(SAMPDIR)/image/smile.xpm $(DISTDIR)/samples/image | |
988 | ||
989 | mkdir $(DISTDIR)/samples/internat | |
990 | mkdir $(DISTDIR)/samples/internat/de | |
991 | mkdir $(DISTDIR)/samples/internat/fr | |
992 | mkdir $(DISTDIR)/samples/internat/ru | |
993 | cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat | |
994 | cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat | |
995 | cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat | |
996 | cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat | |
997 | cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat | |
998 | cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat | |
999 | cp $(SAMPDIR)/internat/fr/*.mo $(DISTDIR)/samples/internat/fr | |
1000 | cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de | |
1001 | cp $(SAMPDIR)/internat/ru/*.mo $(DISTDIR)/samples/internat/ru | |
1002 | cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr | |
1003 | cp $(SAMPDIR)/internat/de/*.po $(DISTDIR)/samples/internat/de | |
1004 | cp $(SAMPDIR)/internat/ru/*.po $(DISTDIR)/samples/internat/ru | |
1005 | ||
1006 | mkdir $(DISTDIR)/samples/ipc | |
1007 | cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc | |
1008 | cp $(SAMPDIR)/ipc/makefile.unx $(DISTDIR)/samples/ipc | |
1009 | cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc | |
1010 | cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc | |
1011 | cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc | |
1012 | ||
1013 | mkdir $(DISTDIR)/samples/joytest | |
1014 | cp $(SAMPDIR)/joytest/Makefile.in $(DISTDIR)/samples/joytest | |
1015 | cp $(SAMPDIR)/joytest/makefile.unx $(DISTDIR)/samples/joytest | |
1016 | cp $(SAMPDIR)/joytest/*.cpp $(DISTDIR)/samples/joytest | |
1017 | cp $(SAMPDIR)/joytest/*.h $(DISTDIR)/samples/joytest | |
1018 | cp $(SAMPDIR)/joytest/*.wav $(DISTDIR)/samples/joytest | |
1019 | ||
1020 | mkdir $(DISTDIR)/samples/layout | |
1021 | cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout | |
1022 | cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout | |
1023 | cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout | |
1024 | cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout | |
1025 | ||
1026 | mkdir $(DISTDIR)/samples/listctrl | |
1027 | mkdir $(DISTDIR)/samples/listctrl/bitmaps | |
1028 | cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl | |
1029 | cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl | |
1030 | cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl | |
1031 | cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl | |
1032 | cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl | |
1033 | cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps | |
1034 | ||
1035 | mkdir $(DISTDIR)/samples/mdi | |
1036 | mkdir $(DISTDIR)/samples/mdi/bitmaps | |
1037 | cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi | |
1038 | cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi | |
1039 | cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi | |
1040 | cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi | |
1041 | cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi | |
1042 | cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps | |
1043 | ||
1044 | mkdir $(DISTDIR)/samples/memcheck | |
1045 | cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck | |
1046 | cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck | |
1047 | cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck | |
1048 | cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck | |
1049 | ||
1050 | mkdir $(DISTDIR)/samples/menu | |
1051 | cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu | |
1052 | cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu | |
1053 | cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu | |
1054 | ||
1055 | mkdir $(DISTDIR)/samples/minifram | |
1056 | mkdir $(DISTDIR)/samples/minifram/bitmaps | |
1057 | cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram | |
1058 | cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram | |
1059 | cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram | |
1060 | cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram | |
1061 | cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram | |
1062 | cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps | |
1063 | ||
1064 | mkdir $(DISTDIR)/samples/minimal | |
1065 | cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal | |
1066 | cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal | |
1067 | cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal | |
1068 | cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal | |
1069 | cp $(SAMPDIR)/minimal/*.mms $(DISTDIR)/samples/minimal | |
1070 | ||
1071 | mkdir $(DISTDIR)/samples/dialup | |
1072 | cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup | |
1073 | cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup | |
1074 | cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup | |
1075 | ||
1076 | mkdir $(DISTDIR)/samples/newgrid | |
1077 | cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid | |
1078 | cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid | |
1079 | cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid | |
1080 | cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid | |
1081 | ||
1082 | mkdir $(DISTDIR)/samples/notebook | |
1083 | cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook | |
1084 | cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook | |
1085 | cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook | |
1086 | cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook | |
1087 | ||
1088 | mkdir $(DISTDIR)/samples/opengl | |
1089 | cp $(SAMPDIR)/opengl/Makefile.in $(DISTDIR)/samples/opengl | |
1090 | mkdir $(DISTDIR)/samples/opengl/penguin | |
1091 | cp $(SAMPDIR)/opengl/penguin/Makefile.in $(DISTDIR)/samples/opengl/penguin | |
1092 | cp $(SAMPDIR)/opengl/penguin/makefile.unx $(DISTDIR)/samples/opengl/penguin | |
1093 | cp $(SAMPDIR)/opengl/penguin/*.cpp $(DISTDIR)/samples/opengl/penguin | |
1094 | cp $(SAMPDIR)/opengl/penguin/*.c $(DISTDIR)/samples/opengl/penguin | |
1095 | cp $(SAMPDIR)/opengl/penguin/*.h $(DISTDIR)/samples/opengl/penguin | |
1096 | cp $(SAMPDIR)/opengl/penguin/*.lwo $(DISTDIR)/samples/opengl/penguin | |
1097 | mkdir $(DISTDIR)/samples/opengl/cube | |
1098 | cp $(SAMPDIR)/opengl/cube/Makefile.in $(DISTDIR)/samples/opengl/cube | |
1099 | cp $(SAMPDIR)/opengl/cube/makefile.unx $(DISTDIR)/samples/opengl/cube | |
1100 | cp $(SAMPDIR)/opengl/cube/*.cpp $(DISTDIR)/samples/opengl/cube | |
1101 | cp $(SAMPDIR)/opengl/cube/*.h $(DISTDIR)/samples/opengl/cube | |
1102 | mkdir $(DISTDIR)/samples/opengl/isosurf | |
1103 | cp $(SAMPDIR)/opengl/isosurf/Makefile.in $(DISTDIR)/samples/opengl/isosurf | |
1104 | cp $(SAMPDIR)/opengl/isosurf/makefile.unx $(DISTDIR)/samples/opengl/isosurf | |
1105 | cp $(SAMPDIR)/opengl/isosurf/*.cpp $(DISTDIR)/samples/opengl/isosurf | |
1106 | cp $(SAMPDIR)/opengl/isosurf/*.h $(DISTDIR)/samples/opengl/isosurf | |
1107 | cp $(SAMPDIR)/opengl/isosurf/*.gz $(DISTDIR)/samples/opengl/isosurf | |
1108 | ||
1109 | mkdir $(DISTDIR)/samples/png | |
1110 | cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png | |
1111 | cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png | |
1112 | cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png | |
1113 | cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png | |
1114 | cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png | |
1115 | ||
1116 | mkdir $(DISTDIR)/samples/printing | |
1117 | cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing | |
1118 | cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing | |
1119 | cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing | |
1120 | cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing | |
1121 | cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing | |
1122 | cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing | |
1123 | ||
1124 | mkdir $(DISTDIR)/samples/resource | |
1125 | cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource | |
1126 | cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource | |
1127 | cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource | |
1128 | cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource | |
1129 | cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource | |
1130 | ||
1131 | mkdir $(DISTDIR)/samples/rotate | |
1132 | cp $(SAMPDIR)/rotate/Makefile.in $(DISTDIR)/samples/rotate | |
1133 | cp $(SAMPDIR)/rotate/makefile.unx $(DISTDIR)/samples/rotate | |
1134 | cp $(SAMPDIR)/rotate/*.cpp $(DISTDIR)/samples/rotate | |
1135 | cp $(SAMPDIR)/rotate/*.bmp $(DISTDIR)/samples/rotate | |
1136 | ||
1137 | mkdir $(DISTDIR)/samples/richedit | |
1138 | cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit | |
1139 | cp $(SAMPDIR)/richedit/makefile.unx $(DISTDIR)/samples/richedit | |
1140 | cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit | |
1141 | cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit | |
1142 | cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit | |
1143 | cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit | |
1144 | cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit | |
1145 | ||
1146 | mkdir $(DISTDIR)/samples/proplist | |
1147 | cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist | |
1148 | cp $(SAMPDIR)/proplist/makefile.unx $(DISTDIR)/samples/proplist | |
1149 | cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist | |
1150 | cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist | |
1151 | ||
1152 | mkdir $(DISTDIR)/samples/propsize | |
1153 | cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize | |
1154 | cp $(SAMPDIR)/propsize/makefile.unx $(DISTDIR)/samples/propsize | |
1155 | cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize | |
1156 | cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize | |
1157 | ||
1158 | mkdir $(DISTDIR)/samples/sashtest | |
1159 | cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest | |
1160 | cp $(SAMPDIR)/sashtest/makefile.unx $(DISTDIR)/samples/sashtest | |
1161 | cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest | |
1162 | cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest | |
1163 | ||
1164 | mkdir $(DISTDIR)/samples/scroll | |
1165 | cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll | |
1166 | cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll | |
1167 | cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll | |
1168 | ||
1169 | mkdir $(DISTDIR)/samples/scrollsub | |
1170 | cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub | |
1171 | cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub | |
1172 | cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub | |
1173 | ||
1174 | mkdir $(DISTDIR)/samples/sockets | |
1175 | cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets | |
1176 | cp $(SAMPDIR)/sockets/makefile.unx $(DISTDIR)/samples/sockets | |
1177 | cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets | |
1178 | cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets | |
1179 | ||
1180 | mkdir $(DISTDIR)/samples/splitter | |
1181 | cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter | |
1182 | cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter | |
1183 | cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter | |
1184 | ||
1185 | mkdir $(DISTDIR)/samples/statbar | |
1186 | cp $(SAMPDIR)/statbar/Makefile.in $(DISTDIR)/samples/statbar | |
1187 | cp $(SAMPDIR)/statbar/makefile.unx $(DISTDIR)/samples/statbar | |
1188 | cp $(SAMPDIR)/statbar/*.cpp $(DISTDIR)/samples/statbar | |
1189 | cp $(SAMPDIR)/statbar/*.xpm $(DISTDIR)/samples/statbar | |
1190 | ||
1191 | mkdir $(DISTDIR)/samples/text | |
1192 | cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text | |
1193 | cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text | |
1194 | cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text | |
1195 | cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text | |
1196 | ||
1197 | mkdir $(DISTDIR)/samples/thread | |
1198 | cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread | |
1199 | cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread | |
1200 | cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread | |
1201 | ||
1202 | mkdir $(DISTDIR)/samples/toolbar | |
1203 | cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar | |
1204 | cp $(SAMPDIR)/toolbar/makefile.unx $(DISTDIR)/samples/toolbar | |
1205 | cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar | |
1206 | cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar | |
1207 | mkdir $(DISTDIR)/samples/toolbar/bitmaps | |
1208 | cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps | |
1209 | ||
1210 | mkdir $(DISTDIR)/samples/treectrl | |
1211 | cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl | |
1212 | cp $(SAMPDIR)/treectrl/makefile.unx $(DISTDIR)/samples/treectrl | |
1213 | cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl | |
1214 | cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl | |
1215 | cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl | |
1216 | mkdir $(DISTDIR)/samples/treectrl/bitmaps | |
1217 | cp $(SAMPDIR)/treectrl/bitmaps/*.bmp $(DISTDIR)/samples/treectrl/bitmaps | |
1218 | ||
1219 | mkdir $(DISTDIR)/samples/treelay | |
1220 | cp $(SAMPDIR)/treelay/Makefile.in $(DISTDIR)/samples/treelay | |
1221 | cp $(SAMPDIR)/treelay/makefile.unx $(DISTDIR)/samples/treelay | |
1222 | cp $(SAMPDIR)/treelay/*.cpp $(DISTDIR)/samples/treelay | |
1223 | cp $(SAMPDIR)/treelay/*.h $(DISTDIR)/samples/treelay | |
1224 | ||
1225 | mkdir $(DISTDIR)/samples/typetest | |
1226 | cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest | |
1227 | cp $(SAMPDIR)/typetest/makefile.unx $(DISTDIR)/samples/typetest | |
1228 | cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest | |
1229 | cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest | |
1230 | cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest | |
1231 | ||
1232 | mkdir $(DISTDIR)/samples/validate | |
1233 | cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate | |
1234 | cp $(SAMPDIR)/validate/makefile.unx $(DISTDIR)/samples/validate | |
1235 | cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate | |
1236 | cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate | |
1237 | cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate | |
1238 | ||
1239 | mkdir $(DISTDIR)/samples/wizard | |
1240 | cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard | |
1241 | cp $(SAMPDIR)/wizard/makefile.unx $(DISTDIR)/samples/wizard | |
1242 | cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard | |
1243 | cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard | |
1244 | ||
1245 | mkdir $(DISTDIR)/samples/widgets | |
1246 | mkdir $(DISTDIR)/samples/widgets/icons | |
1247 | cp $(SAMPDIR)/widgets/Makefile.in $(DISTDIR)/samples/widgets | |
1248 | cp $(SAMPDIR)/widgets/*.cpp $(DISTDIR)/samples/widgets | |
1249 | cp $(SAMPDIR)/widgets/*.h $(DISTDIR)/samples/widgets | |
1250 | cp $(SAMPDIR)/widgets/*.rc $(DISTDIR)/samples/widgets | |
1251 | cp $(SAMPDIR)/widgets/icons/*.xpm $(DISTDIR)/samples/widgets/icons | |
1252 | ||
1253 | UTILS_DIST: ALL_GUI_DIST | |
1254 | mkdir $(DISTDIR)/utils | |
1255 | cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils | |
1256 | cp $(UTILSDIR)/configure $(DISTDIR)/utils | |
1257 | cp $(UTILSDIR)/configure.in $(DISTDIR)/utils | |
1258 | ||
1259 | mkdir $(DISTDIR)/utils/tex2rtf | |
1260 | mkdir $(DISTDIR)/utils/tex2rtf/src | |
1261 | cp $(UTILSDIR)/tex2rtf/*.in $(DISTDIR)/utils/tex2rtf | |
1262 | cp $(UTILSDIR)/tex2rtf/src/*.h $(DISTDIR)/utils/tex2rtf/src | |
1263 | cp $(UTILSDIR)/tex2rtf/src/*.in $(DISTDIR)/utils/tex2rtf/src | |
1264 | cp $(UTILSDIR)/tex2rtf/src/*.cpp $(DISTDIR)/utils/tex2rtf/src | |
1265 | cp $(UTILSDIR)/tex2rtf/src/tex2rtf.* $(DISTDIR)/utils/tex2rtf/src | |
1266 | ||
1267 | mkdir $(DISTDIR)/utils/makegen | |
1268 | mkdir $(DISTDIR)/utils/makegen/templates | |
1269 | cp $(UTILSDIR)/makegen/Makefile.in $(DISTDIR)/utils/makegen | |
1270 | cp $(UTILSDIR)/makegen/*.cpp $(DISTDIR)/utils/makegen | |
1271 | cp $(UTILSDIR)/makegen/templates/*.* $(DISTDIR)/utils/makegen/templates | |
1272 | ||
1273 | mkdir $(DISTDIR)/utils/hhp2cached | |
1274 | cp $(UTILSDIR)/hhp2cached/*.* $(DISTDIR)/utils/hhp2cached | |
1275 | ||
1276 | mkdir $(DISTDIR)/utils/HelpGen | |
1277 | mkdir $(DISTDIR)/utils/HelpGen/src | |
1278 | cp $(UTILSDIR)/HelpGen/Makefile.in $(DISTDIR)/utils/HelpGen | |
1279 | cp $(UTILSDIR)/HelpGen/src/*.* $(DISTDIR)/utils/HelpGen/src | |
1280 | ||
1281 | cp -R $(UTILSDIR)/dialoged $(DISTDIR)/utils/dialoged | |
1282 | ||
1283 | MISC_DIST: ALL_GUI_DIST | |
1284 | mkdir $(DISTDIR)/misc | |
1285 | mkdir $(DISTDIR)/misc/afm | |
1286 | cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm | |
1287 | mkdir $(DISTDIR)/misc/gs_afm | |
1288 | cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm | |
1289 | ||
1290 | INTL_DIST: | |
1291 | mkdir $(DISTDIR)/locale | |
1292 | cp $(INTLDIR)/Makefile $(DISTDIR)/locale | |
1293 | cp $(INTLDIR)/*.po $(DISTDIR)/locale | |
1294 | -cp $(INTLDIR)/*.mo $(DISTDIR)/locale | |
1295 | ||
1296 | MANUAL_DIST: | |
1297 | mkdir $(DISTDIR)/docs | |
1298 | mkdir $(DISTDIR)/docs/latex | |
1299 | mkdir $(DISTDIR)/docs/latex/wx | |
1300 | cp $(DOCDIR)/latex/wx/*.tex $(DISTDIR)/docs/latex/wx | |
1301 | cp $(DOCDIR)/latex/wx/*.inc $(DISTDIR)/docs/latex/wx | |
1302 | cp $(DOCDIR)/latex/wx/*.gif $(DISTDIR)/docs/latex/wx | |
1303 | cp $(DOCDIR)/latex/wx/*.ini $(DISTDIR)/docs/latex/wx | |
1304 | cp $(DOCDIR)/latex/wx/*.bib $(DISTDIR)/docs/latex/wx | |
1305 | cp $(DOCDIR)/latex/wx/*.sty $(DISTDIR)/docs/latex/wx | |
1306 | ||
1307 | # this target does not generate a complete wxPython dist, it only includes | |
1308 | # those files needed for the Debian source package. | |
1309 | # see utils/wxPython/distrib for scripts to make a proper wxPython dist. | |
1310 | PYTHON_DIST: | |
1311 | mkdir $(DISTDIR)/wxPython | |
1312 | mkdir $(DISTDIR)/wxPython/contrib | |
1313 | mkdir $(DISTDIR)/wxPython/contrib/dllwidget | |
1314 | mkdir $(DISTDIR)/wxPython/contrib/gizmos | |
1315 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas | |
1316 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas/gtk | |
1317 | mkdir $(DISTDIR)/wxPython/contrib/ogl | |
1318 | mkdir $(DISTDIR)/wxPython/contrib/stc | |
1319 | mkdir $(DISTDIR)/wxPython/contrib/stc/gtk | |
1320 | mkdir $(DISTDIR)/wxPython/contrib/xrc | |
1321 | mkdir $(DISTDIR)/wxPython/demo | |
1322 | mkdir $(DISTDIR)/wxPython/demo/bitmaps | |
1323 | mkdir $(DISTDIR)/wxPython/demo/bmp_source | |
1324 | mkdir $(DISTDIR)/wxPython/demo/data | |
1325 | mkdir $(DISTDIR)/wxPython/demo/dllwidget | |
1326 | mkdir $(DISTDIR)/wxPython/src | |
1327 | mkdir $(DISTDIR)/wxPython/src/gtk | |
1328 | mkdir $(DISTDIR)/wxPython/wxPython | |
1329 | mkdir $(DISTDIR)/wxPython/wxPython/lib | |
1330 | mkdir $(DISTDIR)/wxPython/wxPython/lib/PyCrust | |
1331 | mkdir $(DISTDIR)/wxPython/wxPython/lib/editor | |
1332 | mkdir $(DISTDIR)/wxPython/wxPython/lib/mixins | |
1333 | ||
1334 | cp $(WXDIR)/wxPython/*.txt $(DISTDIR)/wxPython | |
1335 | cp $(WXDIR)/wxPython/*.py $(DISTDIR)/wxPython | |
1336 | cp $(WXDIR)/wxPython/setup.cfg $(DISTDIR)/wxPython | |
1337 | cp $(WXDIR)/wxPython/MANIFEST.in $(DISTDIR)/wxPython | |
1338 | cp $(WXDIR)/wxPython/contrib/dllwidget/*.{py,cpp,h,i} $(DISTDIR)/wxPython/contrib/dllwidget | |
1339 | cp $(WXDIR)/wxPython/contrib/gizmos/*.{py,cpp,i} $(DISTDIR)/wxPython/contrib/gizmos | |
1340 | -cp $(WXDIR)/wxPython/contrib/glcanvas/* $(DISTDIR)/wxPython/contrib/glcanvas | |
1341 | cp $(WXDIR)/wxPython/contrib/glcanvas/gtk/glcanvas.* $(DISTDIR)/wxPython/contrib/glcanvas/gtk | |
1342 | -cp $(WXDIR)/wxPython/contrib/ogl/* $(DISTDIR)/wxPython/contrib/ogl | |
1343 | -cp $(WXDIR)/wxPython/contrib/stc/* $(DISTDIR)/wxPython/contrib/stc | |
1344 | -cp $(WXDIR)/wxPython/contrib/stc/gtk/* $(DISTDIR)/wxPython/contrib/stc/gtk | |
1345 | -cp $(WXDIR)/wxPython/contrib/xrc/xrc.* $(DISTDIR)/wxPython/contrib/xrc | |
1346 | -cp $(WXDIR)/wxPython/demo/* $(DISTDIR)/wxPython/demo | |
1347 | -cp $(WXDIR)/wxPython/demo/bitmaps/* $(DISTDIR)/wxPython/demo/bitmaps | |
1348 | -cp $(WXDIR)/wxPython/demo/bmp_source/* $(DISTDIR)/wxPython/demo/bmp_source | |
1349 | -cp $(WXDIR)/wxPython/demo/data/* $(DISTDIR)/wxPython/demo/data | |
1350 | -cp $(WXDIR)/wxPython/demo/dllwidget/Makefile $(DISTDIR)/wxPython/demo/dllwidget | |
1351 | -cp $(WXDIR)/wxPython/demo/dllwidget/test_* $(DISTDIR)/wxPython/demo/dllwidget | |
1352 | -cp $(WXDIR)/wxPython/src/* $(DISTDIR)/wxPython/src | |
1353 | cp $(WXDIR)/wxPython/src/gtk/*.py $(DISTDIR)/wxPython/src/gtk | |
1354 | cp $(WXDIR)/wxPython/src/gtk/*.cpp $(DISTDIR)/wxPython/src/gtk | |
1355 | cp $(WXDIR)/wxPython/wxPython/lib/*.py $(DISTDIR)/wxPython/wxPython/lib | |
1356 | cp $(WXDIR)/wxPython/wxPython/lib/PyCrust/*.py $(DISTDIR)/wxPython/wxPython/lib/PyCrust | |
1357 | cp $(WXDIR)/wxPython/wxPython/lib/editor/*.py $(DISTDIR)/wxPython/wxPython/lib/editor | |
1358 | cp $(WXDIR)/wxPython/wxPython/lib/mixins/*.py $(DISTDIR)/wxPython/wxPython/lib/mixins | |
1359 | ||
1360 | distclean: | |
1361 | $(RM) -r _dist_dir | |
1362 | ||
1363 | # VZ: the -only targets allow to do "make dist bzip-dist-only" without copying | |
1364 | # the files twice | |
1365 | dist-only: | |
1366 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1367 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); | |
1368 | @if test "$(USE_GUI)" = 1; then \ | |
1369 | cd $(DISTDIR); \ | |
1370 | mv samples wxSamples-$(VER_SUFFIX); \ | |
1371 | echo "*** Creating wxSamples archive..."; \ | |
1372 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1373 | mv wxSamples-$(VER_SUFFIX) samples; \ | |
1374 | mv demos wxDemos-$(VER_SUFFIX); \ | |
1375 | echo "*** Creating wxDemos archive..."; \ | |
1376 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ | |
1377 | mv wxDemos-$(VER_SUFFIX) demos; \ | |
1378 | fi | |
1379 | ||
1380 | dist: @GUIDIST@ | |
1381 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1382 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); | |
1383 | @if test "$(USE_GUI)" = 1; then \ | |
1384 | cd $(DISTDIR); \ | |
1385 | mv samples wxSamples-$(VER_SUFFIX); \ | |
1386 | echo "*** Creating wxSamples archive..."; \ | |
1387 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ | |
1388 | mv wxSamples-$(VER_SUFFIX) samples; \ | |
1389 | mv demos wxDemos-$(VER_SUFFIX); \ | |
1390 | echo "*** Creating wxDemos archive..."; \ | |
1391 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ | |
1392 | mv wxDemos-$(VER_SUFFIX) demos; \ | |
1393 | fi | |
1394 | ||
1395 | bzip-dist-only: | |
1396 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1397 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP); | |
1398 | @if test "$(USE_GUI)" = 1; then \ | |
1399 | cd $(DISTDIR); \ | |
1400 | mv samples wxSamples-${VER_SUFFIX}; \ | |
1401 | echo "*** Creating wxSamples archive..."; \ | |
1402 | tar ch wxSamples-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1403 | mv wxSamples-${VER_SUFFIX} samples; \ | |
1404 | mv demos wxDemos-${VER_SUFFIX}; \ | |
1405 | echo "*** Creating wxDemos archive..."; \ | |
1406 | tar ch wxDemos-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1407 | mv wxDemos-${VER_SUFFIX} demos; \ | |
1408 | fi | |
1409 | ||
1410 | bzip-dist: @GUIDIST@ | |
1411 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." | |
1412 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP) | |
1413 | @if test "$(USE_GUI)" = 1; then \ | |
1414 | cd $(DISTDIR); \ | |
1415 | mv samples wxSamples; \ | |
1416 | tar ch wxSamples | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ | |
1417 | mv wxSamples samples; \ | |
1418 | mv demos wxDemos; \ | |
1419 | tar ch wxDemos | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ | |
1420 | mv wxDemos demos; \ | |
1421 | fi | |
1422 | ||
1423 | debian-dist: debian-native-dist debian-msw-dirs MSW_DIST | |
1424 | mkdir $(DISTDIR)/debian | |
1425 | -cp $(WXDIR)/debian/* $(DISTDIR)/debian | |
1426 | cp $(DOCDIR)/licence.txt $(DISTDIR)/docs | |
1427 | cp $(DOCDIR)/licendoc.txt $(DISTDIR)/docs | |
1428 | cp $(DOCDIR)/preamble.txt $(DISTDIR)/docs | |
1429 | rm -f $(DISTDIR)/*.spec | |
1430 | ||
1431 | @# now prune away a lot of the crap included by using cp -R | |
1432 | @# in other dist targets. Ugly and hardly portable but it | |
1433 | @# will run on any Debian box and that's enough for now. | |
1434 | ||
1435 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \ | |
1436 | \( -name "makefile.*" -a ! -name "makefile.unx" \) \) \ | |
1437 | -print0 | xargs -0 rm -rf | |
1438 | ||
1439 | rm -rf $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
1440 | mv $(DISTDIR) $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) | |
1441 | ||
1442 | debian-native-dist: @GUIDIST@ UNIV_DIST MANUAL_DIST PYTHON_DIST | |
1443 | ||
1444 | debian-msw-dirs: | |
1445 | mkdir $(DISTDIR)/include/wx/msw | |
1446 | mkdir $(DISTDIR)/src/msw | |
1447 | ||
1448 | ||
1449 | clean: | |
1450 | $(RM) *.o | |
1451 | $(RM) *.d | |
1452 | $(RM) parser.c | |
1453 | $(RM) lexer.c | |
1454 | $(RM) $(build_libdir)/lib* | |
1455 | # Don't remove this lot, configure will reuse it | |
1456 | # if it's still good | |
1457 | # $(RM) -r $(build_libdir)/wx/* | |
1458 | ||
1459 | cleanall: clean | |
1460 | ||
1461 | ||
1462 | RPMTOP=_dist_dir/_rpm_top | |
1463 | ||
1464 | rpm: bzip-dist | |
1465 | @echo "*** Building RPMs ***" | |
1466 | -mkdir $(RPMTOP) | |
1467 | -mkdir $(RPMTOP)/SOURCES | |
1468 | -mkdir $(RPMTOP)/SPECS | |
1469 | -mkdir $(RPMTOP)/BUILD | |
1470 | -mkdir $(RPMTOP)/RPMS | |
1471 | -mkdir $(RPMTOP)/SRPMS | |
1472 | cp -f $(WXARCHIVE_BZIP) $(RPMTOP)/SOURCES | |
1473 | rpm -ba --define "_topdir `pwd`/$(RPMTOP)" $(WXDIR)/wx$(TOOLKIT).spec | |
1474 | mv -f `find $(RPMTOP) -name "wx$(TARGET)*.rpm"` . | |
1475 |