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