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