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