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