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