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