]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/tmake/unx.t
wxLocale now uses wxEncodingConverter (must be explicitly enabled)
[wxWidgets.git] / distrib / msw / tmake / unx.t
CommitLineData
f56b8330
RR
1#!################################################################################
2#! File: unx.t
ad9edf45
RR
3#! Purpose: tmake template file from which Makefile.in is generated by running
4#! tmake -t unx wxwin.pro -o Makefile.in
f56b8330
RR
5#! Author: Vadim Zeitlin, Robert Roebling, Julian Smart
6#! Created: 14.07.99
7#! Version: $Id$
8#!################################################################################
f56b8330
RR
9#${
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric, %wxHtml, %wxUnix and %wxGTK hashes.
12 IncludeTemplate("filelist.t");
13
e4b4d60e 14 #! Generic
791a2102 15
e4b4d60e
RR
16 foreach $file (sort keys %wxGeneric) {
17 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
18 #! so take the generic version
19 if ( $wxGeneric{$file} =~ /\b(PS|G|U|16)\b/ ) {
20 next unless $file =~ /^dirdlgg\./;
21 }
22
5586805b 23 $file2 = $file;
e4b4d60e 24 $file =~ s/cp?p?$/\o/;
5586805b
RR
25 $file2 =~ s/cp?p?$/\d/;
26 $project{"WXMSW_GENERICOBJS"} .= $file . " ";
27 $project{"WXMSW_GENERICDEPS"} .= $file2 . " "
e4b4d60e
RR
28 }
29
f56b8330 30 foreach $file (sort keys %wxGeneric) {
77282916 31 #! skip generic files not required for the wxGTK port
f56b8330
RR
32 next if $wxGeneric{$file} =~ /\bR\b/;
33
5586805b 34 $file2 = $file;
f56b8330 35 $file =~ s/cp?p?$/\o/;
5586805b
RR
36 $file2 =~ s/cp?p?$/\d/;
37 $project{"WXGTK_GENERICOBJS"} .= $file . " ";
38 $project{"WXGTK_GENERICDEPS"} .= $file2 . " "
073478b3
RR
39 }
40
073478b3 41 foreach $file (sort keys %wxGeneric) {
72ed7aae 42 next if $wxGeneric{$file} =~ /\bX\b/;
073478b3 43
5586805b 44 $file2 = $file;
073478b3 45 $file =~ s/cp?p?$/\o/;
5586805b
RR
46 $file2 =~ s/cp?p?$/\d/;
47 $project{"WXMOTIF_GENERICOBJS"} .= $file . " ";
48 $project{"WXMOTIF_GENERICDEPS"} .= $file2 . " "
f56b8330
RR
49 }
50
791a2102
VZ
51 #! Base
52
53 foreach $file (sort keys %wxBase) {
54 ($fileobj = $file) =~ s/cp?p?$/\o/;
55 ($filedep = $file) =~ s/cp?p?$/\d/;
56
57 $project{"BASE_OBJS"} .= $fileobj . " ";
58 $project{"BASE_DEPS"} .= $filedep . " ";
59 }
60
e4b4d60e 61 #! Common
791a2102 62
f56b8330 63 foreach $file (sort keys %wxCommon) {
37667812
VZ
64 ($fileobj = $file) =~ s/cp?p?$/\o/;
65 ($filedep = $file) =~ s/cp?p?$/\d/;
f56b8330 66
37667812
VZ
67 #! 'B' flag means that the file makes part of wxBase too
68 if ( $wxCommon{$file} =~ /\bB\b/ ) {
69 $project{"BASE_OBJS"} .= $fileobj . " ";
70 $project{"BASE_DEPS"} .= $filedep . " ";
71 }
f56b8330 72
37667812
VZ
73 if ( $wxCommon{$file} !~ /\bR\b/ ) { #! unless not for GTK
74 $project{"WXGTK_COMMONOBJS"} .= $fileobj . " ";
75 $project{"WXGTK_COMMONDEPS"} .= $filedep . " "
76 }
77 if ( $wxCommon{$file} !~ /\bX\b/ ) { #! unless not for Motif
78 $project{"WXMOTIF_COMMONOBJS"} .= $fileobj . " ";
79 $project{"WXMOTIF_COMMONDEPS"} .= $filedep . " "
80 }
e4b4d60e 81
37667812
VZ
82 #! ODBC needs extra files (sql*.h) so not compiled by default.
83 if ( (file !~ /^odbc\./) && ($wxCommon{$file} !~ /\b(16)\b/) ) {
84 $project{"WXMSW_COMMONOBJS"} .= $fileobj . " ";
85 $project{"WXMSW_COMMONDEPS"} .= $filedep . " "
86 }
e4b4d60e
RR
87 }
88
89 #! GUI
791a2102 90
e4b4d60e
RR
91 foreach $file (sort keys %wxMSW) {
92 #! Mingw32 doesn't have the OLE headers and has some troubles with
93 #! socket code
94 next if $wxMSW{$file} =~ /\b(O|16)\b/;
95
96 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
97 next if $file =~ /^dirdlg\./;
98
5586805b 99 $file2 = $file;
e4b4d60e 100 $file =~ s/cp?p?$/\o/;
5586805b
RR
101 $file2 =~ s/cp?p?$/\d/;
102 $project{"WXMSW_GUIOBJS"} .= $file . " ";
103 $project{"WXMSW_GUIDEPS"} .= $file2 . " "
e4b4d60e
RR
104 }
105
f56b8330 106 foreach $file (sort keys %wxGTK) {
5586805b 107 $file2 = $file;
f56b8330 108 $file =~ s/cp?p?$/\o/;
5586805b
RR
109 $file2 =~ s/cp?p?$/\d/;
110 $project{"WXGTK_GUIOBJS"} .= $file . " ";
111 $project{"WXGTK_GUIDEPS"} .= $file2 . " "
073478b3
RR
112 }
113
114 foreach $file (sort keys %wxMOTIF) {
5586805b 115 $file2 = $file;
073478b3 116 $file =~ s/cp?p?$/\o/;
5586805b
RR
117 $file2 =~ s/cp?p?$/\d/;
118 $project{"WXMOTIF_GUIOBJS"} .= $file . " ";
119 $project{"WXMOTIF_GUIDEPS"} .= $file2 . " "
f56b8330
RR
120 }
121
e4b4d60e
RR
122 #! others
123
f56b8330 124 foreach $file (sort keys %wxHTML) {
5586805b 125 $file2 = $file;
f56b8330 126 $file =~ s/cp?p?$/\o/;
5586805b
RR
127 $file2 =~ s/cp?p?$/\d/;
128 $project{"WXHTMLOBJS"} .= $file . " ";
129 $project{"WXHTMLDEPS"} .= $file2 . " "
f56b8330
RR
130 }
131
132 foreach $file (sort keys %wxUNIX) {
37667812
VZ
133 ($fileobj = $file) =~ s/cp?p?$/\o/;
134 ($filedep = $file) =~ s/cp?p?$/\d/;
135
136 #! 'B' flag means that the file makes part of wxBase too
137 if ( $wxUNIX{$file} =~ /\bB\b/ ) {
138 $project{"BASE_OBJS"} .= $fileobj . " ";
139 $project{"BASE_DEPS"} .= $filedep . " "
140 }
141
142 $project{"WXUNIX_OBJS"} .= $fileobj . " ";
143 $project{"WXUNIX_DEPS"} .= $filedep . " "
f56b8330 144 }
23a54e14 145
e4b4d60e
RR
146 #! headers
147
2aa88730 148 foreach $file (sort keys %wxWXINCLUDE) {
37667812
VZ
149 $project{"WX_HEADERS"} .= $file . " ";
150 $project{"BASE_HEADERS"} .= $file . " " if $wxWXINCLUDE{$file} =~ /\bB\b/;
2aa88730
RR
151 }
152
153 foreach $file (sort keys %wxGENERICINCLUDE) {
154 $project{"WXGENERIC_HEADERS"} .= "generic/" . $file . " "
155 }
156
157 foreach $file (sort keys %wxMOTIFINCLUDE) {
158 $project{"WXMOTIF_HEADERS"} .= "motif/" . $file . " "
159 }
160
161 foreach $file (sort keys %wxGTKINCLUDE) {
162 $project{"WXGTK_HEADERS"} .= "gtk/" . $file . " "
163 }
164
a4aad961
RR
165 foreach $file (sort keys %wxMSWINCLUDE) {
166 $project{"WXMSW_HEADERS"} .= "msw/" . $file . " "
167 }
168
2aa88730
RR
169 foreach $file (sort keys %wxHTMLINCLUDE) {
170 $project{"WXHTML_HEADERS"} .= "html/" . $file . " "
171 }
172
173 foreach $file (sort keys %wxUNIXINCLUDE) {
174 $project{"WXUNIX_HEADERS"} .= "unix/" . $file . " "
175 }
176
177 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
178 $project{"WXPROTOCOL_HEADERS"} .= "protocol/" . $file . " "
179 }
f56b8330 180#$}
23a54e14 181#
f56b8330
RR
182# This file was automatically generated by tmake at #$ Now()
183# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
184
185#
186# File: makefile.unx
187# Author: Julian Smart, Robert Roebling, Vadim Zeitlin
188# Created: 1993
189# Updated: 1999
190# Copyright:(c) 1993, AIAI, University of Edinburgh,
191# Copyright:(c) 1999, Vadim Zeitlin
192# Copyright:(c) 1999, Robert Roebling
193#
194# Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a
195
8e877c19 196###################################################################
f56b8330 197
2aa88730 198include ./src/make.env
f56b8330 199
48b1d0ff
RR
200############## override make.env for PIC ##########################
201
202# Clears all default suffixes
203.SUFFIXES: .o .cpp .c .cxx
204
205.c.o :
5586805b 206 $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
48b1d0ff
RR
207
208.cpp.o :
5586805b 209 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
48b1d0ff
RR
210
211.cxx.o :
5586805b 212 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
48b1d0ff 213
f56b8330
RR
214########################### Paths #################################
215
8e877c19
RR
216srcdir = @srcdir@
217
5586805b
RR
218VP1 = @top_srcdir@/src/common
219VP2 = @top_srcdir@/src/@TOOLKIT_DIR@
220VP3 = @top_srcdir@/src/motif/xmcombo
221VP4 = @top_srcdir@/src/generic
222VP5 = @top_srcdir@/src/unix
223VP6 = @top_srcdir@/src/html
224VP7 = @top_srcdir@/src/png
225VP8 = @top_srcdir@/src/jpeg
8e1c1887
RR
226VP9 = @top_srcdir@/src/tiff
227VP10 = @top_srcdir@/src/zlib
228VP11 = @top_srcdir@/src/iodbc
5586805b 229
8e1c1887 230VPATH = $(VP1):$(VP2):$(VP3):$(VP4):$(VP5):$(VP6):$(VP7):$(VP8):$(VP9):$(VP10):$(VP11)
f56b8330
RR
231
232top_srcdir = @top_srcdir@
233prefix = @prefix@
234exec_prefix = @exec_prefix@
235
236bindir = @bindir@
237sbindir = @sbindir@
238libexecdir = @libexecdir@
239datadir = @datadir@
240sysconfdir = @sysconfdir@
241sharedstatedir = @sharedstatedir@
242localstatedir = @localstatedir@
243libdir = @libdir@
244infodir = @infodir@
245mandir = @mandir@
246includedir = @includedir@
247oldincludedir = /usr/include
248
249DESTDIR =
250
251pkgdatadir = $(datadir)/@PACKAGE@
252pkglibdir = $(libdir)/@PACKAGE@
253pkgincludedir = $(includedir)/@PACKAGE@
254
2aa88730 255top_builddir = .
f56b8330
RR
256
257INSTALL = @INSTALL@
258INSTALL_PROGRAM = @INSTALL_PROGRAM@
259INSTALL_DATA = @INSTALL_DATA@
0b129e1a
KB
260# my autoconf doesn't set this
261#INSTALL_SCRIPT = @INSTALL_SCRIPT@
262# maybe do an additional chmod if needed?
263INSTALL_SCRIPT = @INSTALL@
f56b8330
RR
264transform = @program_transform_name@
265
266NORMAL_INSTALL = :
267PRE_INSTALL = :
268POST_INSTALL = :
269NORMAL_UNINSTALL = :
270PRE_UNINSTALL = :
271POST_UNINSTALL = :
272build_alias = @build_alias@
273build_triplet = @build@
274host_alias = @host_alias@
275host_triplet = @host@
276target_alias = @target_alias@
277target_triplet = @target@
278
8e877c19 279############################# Dirs #################################
f56b8330 280
2aa88730 281WXDIR = $(top_srcdir)
f56b8330
RR
282
283# Subordinate library possibilities
284
4cb122de
RR
285SRCDIR = $(WXDIR)/src
286GENDIR = $(WXDIR)/src/generic
287COMMDIR = $(WXDIR)/src/common
288HTMLDIR = $(WXDIR)/src/html
289UNIXDIR = $(WXDIR)/src/unix
290PNGDIR = $(WXDIR)/src/png
291JPEGDIR = $(WXDIR)/src/jpeg
1d62a8b4 292TIFFDIR = $(WXDIR)/src/tiff
4cb122de
RR
293ZLIBDIR = $(WXDIR)/src/zlib
294GTKDIR = $(WXDIR)/src/gtk
073478b3 295MOTIFDIR = $(WXDIR)/src/motif
4cb122de 296MSWDIR = $(WXDIR)/src/msw
c09ab26a 297ODBCDIR = $(WXDIR)/src/iodbc
4cb122de
RR
298INCDIR = $(WXDIR)/include
299SAMPDIR = $(WXDIR)/samples
641d87d8 300UTILSDIR = $(WXDIR)/utils
a6f3598d 301MISCDIR = $(WXDIR)/misc
f56b8330 302
8e877c19
RR
303DOCDIR = $(WXDIR)/docs
304
a4aad961
RR
305########################## Archive name ###############################
306
79144b8a 307WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
ba0e7d41 308WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
a4aad961
RR
309DISTDIR = ./_dist_dir/wx$(TOOLKIT)
310
8e877c19 311############################## Files ##################################
f56b8330 312
37667812
VZ
313BASE_HEADERS = \
314 #$ ExpandList("BASE_HEADERS");
315
2aa88730
RR
316WX_HEADERS = \
317 #$ ExpandList("WX_HEADERS");
318
319GTK_HEADERS = \
320 #$ ExpandList("WXGTK_HEADERS");
321
322MOTIF_HEADERS = \
323 #$ ExpandList("WXMOTIF_HEADERS");
324
a4aad961
RR
325MSW_HEADERS = \
326 #$ ExpandList("WXMSW_HEADERS");
327
2aa88730
RR
328UNIX_HEADERS = \
329 #$ ExpandList("WXUNIX_HEADERS");
330
331GENERIC_HEADERS = \
332 #$ ExpandList("WXGENERIC_HEADERS");
333
334PROTOCOL_HEADERS = \
335 #$ ExpandList("WXPROTOCOL_HEADERS");
336
337HTML_HEADERS = \
338 #$ ExpandList("WXHTML_HEADERS");
339
073478b3 340GTK_GENERICOBJS = \
2aa88730 341 #$ ExpandList("WXGTK_GENERICOBJS");
073478b3 342
5586805b
RR
343GTK_GENERICDEPS = \
344 #$ ExpandList("WXGTK_GENERICDEPS");
345
2aa88730 346GTK_COMMONOBJS = \
073478b3
RR
347 parser.o \
348 #$ ExpandList("WXGTK_COMMONOBJS");
349
5586805b
RR
350GTK_COMMONDEPS = \
351 parser.d \
352 #$ ExpandList("WXGTK_COMMONDEPS");
353
2aa88730 354GTK_GUIOBJS = \
073478b3
RR
355 #$ ExpandList("WXGTK_GUIOBJS");
356
5586805b
RR
357GTK_GUIDEPS = \
358 #$ ExpandList("WXGTK_GUIDEPS");
359
073478b3 360MOTIF_GENERICOBJS = \
2aa88730 361 #$ ExpandList("WXMOTIF_GENERICOBJS");
f56b8330 362
5586805b
RR
363MOTIF_GENERICDEPS = \
364 #$ ExpandList("WXMOTIF_GENERICDEPS");
365
2aa88730 366MOTIF_COMMONOBJS = \
f56b8330 367 parser.o \
073478b3
RR
368 #$ ExpandList("WXMOTIF_COMMONOBJS");
369
5586805b
RR
370MOTIF_COMMONDEPS = \
371 parser.d \
372 #$ ExpandList("WXMOTIF_COMMONDEPS");
373
2aa88730 374MOTIF_GUIOBJS = \
5586805b 375 xmcombo.o \
073478b3 376 #$ ExpandList("WXMOTIF_GUIOBJS");
f56b8330 377
5586805b
RR
378MOTIF_GUIDEPS = \
379 xmcombo.d \
380 #$ ExpandList("WXMOTIF_GUIDEPS");
381
e4b4d60e
RR
382MSW_GENERICOBJS = \
383 #$ ExpandList("WXMSW_GENERICOBJS");
384
5586805b
RR
385MSW_GENERICDEPS = \
386 #$ ExpandList("WXMSW_GENERICDEPS");
387
e4b4d60e 388MSW_COMMONOBJS = \
80d895cd 389 parser.o \
e4b4d60e
RR
390 #$ ExpandList("WXMSW_COMMONOBJS");
391
5586805b 392MSW_COMMONDEPS = \
80d895cd 393 parser.d \
5586805b
RR
394 #$ ExpandList("WXMSW_COMMONDEPS");
395
e4b4d60e
RR
396MSW_GUIOBJS = \
397 #$ ExpandList("WXMSW_GUIOBJS");
398
5586805b
RR
399MSW_GUIDEPS = \
400 #$ ExpandList("WXMSW_GUIDEPS");
401
37667812
VZ
402BASE_OBJS = \
403 #$ ExpandList("BASE_OBJS");
404
405BASE_DEPS = \
406 #$ ExpandList("BASE_DEPS");
407
f56b8330 408HTMLOBJS = \
2aa88730 409 #$ ExpandList("WXHTMLOBJS");
f56b8330 410
5586805b
RR
411HTMLDEPS = \
412 #$ ExpandList("WXHTMLDEPS");
413
37667812
VZ
414UNIX_OBJS = \
415 #$ ExpandList("WXUNIX_OBJS");
f56b8330 416
37667812
VZ
417UNIX_DEPS = \
418 #$ ExpandList("WXUNIX_DEPS");
5586805b 419
f56b8330 420ZLIBOBJS = \
5586805b
RR
421 adler32.o \
422 compress.o \
423 crc32.o \
424 gzio.o \
425 uncompr.o \
426 deflate.o \
427 trees.o \
428 zutil.o \
429 inflate.o \
430 infblock.o \
431 inftrees.o \
432 infcodes.o \
433 infutil.o \
434 inffast.o
f56b8330
RR
435
436PNGOBJS = \
5586805b
RR
437 png.o \
438 pngread.o \
439 pngrtran.o \
440 pngrutil.o \
441 pngpread.o \
442 pngtrans.o \
443 pngwrite.o \
444 pngwtran.o \
445 pngwutil.o \
446 pngerror.o \
447 pngmem.o \
448 pngwio.o \
449 pngrio.o \
450 pngget.o \
451 pngset.o
f56b8330
RR
452
453
454JPEGOBJS = \
5586805b
RR
455 jcomapi.o \
456 jutils.o \
457 jerror.o \
458 jmemmgr.o \
459 jmemnobs.o \
460 jcapimin.o \
461 jcapistd.o \
462 jctrans.o \
463 jcparam.o \
464 jdatadst.o \
465 jcinit.o \
466 jcmaster.o \
467 jcmarker.o \
468 jcmainct.o \
469 jcprepct.o \
470 jccoefct.o \
471 jccolor.o \
472 jcsample.o \
473 jchuff.o \
474 jcphuff.o \
475 jcdctmgr.o \
476 jfdctfst.o \
477 jfdctflt.o \
478 jfdctint.o \
479 jdapimin.o \
480 jdapistd.o \
481 jdtrans.o \
482 jdatasrc.o \
483 jdmaster.o \
484 jdinput.o \
485 jdmarker.o \
486 jdhuff.o \
487 jdphuff.o \
488 jdmainct.o \
489 jdcoefct.o \
490 jdpostct.o \
491 jddctmgr.o \
492 jidctfst.o \
493 jidctflt.o \
494 jidctint.o \
495 jidctred.o \
496 jdsample.o \
497 jdcolor.o \
498 jquant1.o \
499 jquant2.o \
500 jdmerge.o
f56b8330 501
8e1c1887
RR
502TIFFOBJS = \
503 tif_aux.o \
504 tif_close.o \
505 tif_codec.o \
506 tif_compress.o \
507 tif_dir.o \
508 tif_dirinfo.o \
509 tif_dirread.o \
510 tif_dirwrite.o \
511 tif_dumpmode.o \
512 tif_error.o \
513 tif_fax3.o \
514 tif_fax3sm.o \
515 tif_getimage.o \
516 tif_jpeg.o \
517 tif_flush.o \
518 tif_lzw.o \
b47c832e 519 tif_luv.o \
8e1c1887
RR
520 tif_next.o \
521 tif_open.o \
522 tif_packbits.o \
523 tif_pixarlog.o \
524 tif_predict.o \
525 tif_print.o \
526 tif_read.o \
527 tif_swab.o \
528 tif_strip.o \
529 tif_thunder.o \
530 tif_tile.o \
531 tif_unix.o \
532 tif_version.o \
533 tif_warning.o \
534 tif_write.o \
535 tif_zip.o
536
a0c79abb 537IODBC_OBJS = \
e115e771
RR
538 catalog.o \
539 connect.o \
540 dlf.o \
541 dlproc.o \
542 execute.o \
543 fetch.o \
544 hdbc.o \
545 henv.o \
546 herr.o \
547 hstmt.o \
548 info.o \
549 itrace.o \
550 misc.o \
551 prepare.o \
552 result.o
553
37667812
VZ
554GUIOBJS = @GUIOBJS@
555GUIDEPS = @GUIDEPS@
556GUIHEADERS = @GUIHEADERS@
557COMMONOBJS = @COMMONOBJS@
558COMMONDEPS = @COMMONDEPS@
559GENERICOBJS = @GENERICOBJS@
560GENERICDEPS = @GENERICDEPS@
561UNIXOBJS = @UNIXOBJS@
562UNIXDEPS = @UNIXDEPS@
a0c79abb 563IODBCOBJS = @IODBCOBJS@
073478b3 564
a0c79abb 565OBJECTS = @ALL_OBJECTS@
f56b8330 566
37667812 567DEPFILES = @ALL_DEPFILES@
5586805b 568
37667812 569HEADERS = @ALL_HEADERS@
f56b8330 570
1d62a8b4
RR
571BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@
572
de87c353 573all: @WX_ALL@
8e877c19 574
48b1d0ff 575@WX_LIBRARY_NAME_STATIC@: $(OBJECTS)
4130b487 576 @$(INSTALL) -d ./lib
2aa88730
RR
577 $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS)
578 $(RANLIB) ./lib/$@
f56b8330 579
48b1d0ff 580@WX_LIBRARY_NAME_SHARED@: $(OBJECTS)
4130b487 581 @$(INSTALL) -d ./lib
1d62a8b4 582 $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME) $(OBJECTS) $(EXTRALIBS)
48b1d0ff 583
de87c353 584CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@
4130b487
RR
585 @$(RM) ./lib/@WX_LIBRARY_LINK1@
586 @$(RM) ./lib/@WX_LIBRARY_LINK2@
587 @$(RM) ./lib/@WX_LIBRARY_LINK3@
2aa88730
RR
588 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
589 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
590 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
48b1d0ff 591
de87c353 592CREATE_INSTALLED_LINKS: $(libdir)/@WX_LIBRARY_NAME_SHARED@
5586805b
RR
593 $(RM) $(libdir)/@WX_LIBRARY_LINK1@
594 $(RM) $(libdir)/@WX_LIBRARY_LINK2@
595 $(RM) $(libdir)/@WX_LIBRARY_LINK3@
de87c353
RR
596 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK1@
597 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK2@
598 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK3@
517a619d 599
257980e6 600$(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h
f56b8330
RR
601
602parser.o: parser.c lexer.c
8636aed8 603 $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c
f56b8330
RR
604
605parser.c: $(COMMDIR)/parser.y lexer.c
606 $(YACC) $(COMMDIR)/parser.y
607 @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \
608 sed -e "s/BUFSIZ/5000/g" | \
609 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
610 sed -e "s/yy/PROIO_yy/g" | \
611 sed -e "s/input/PROIO_input/g" | \
612 sed -e "s/unput/PROIO_unput/g" > parser.c
613 @$(RM) y.tab.c
614
615lexer.c: $(COMMDIR)/lexer.l
616 $(LEX) $(COMMDIR)/lexer.l
617 @sed -e "s;$(COMMDIR)/lex.yy.c;lexer.l;g" < lex.yy.c | \
618 sed -e "s/yy/PROIO_yy/g" | \
619 sed -e "s/input/PROIO_input/g" | \
620 sed -e "s/unput/PROIO_unput/g" > lexer.c
621 @$(RM) lex.yy.c
622
5586805b
RR
623-include $(DEPFILES)
624
257980e6 625preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx-config
517a619d
RR
626 @echo " "
627 @echo " Installing wxWindows..."
628 @echo " "
2aa88730 629
0b129e1a
KB
630 $(INSTALL) -d $(prefix)
631 $(INSTALL) -d $(bindir)
632 $(INSTALL) -d $(libdir)
a6f3598d 633 $(INSTALL) -d $(datadir)
0b129e1a 634
2aa88730
RR
635 $(INSTALL_SCRIPT) $(top_builddir)/wx-config $(bindir)/wx-config
636 $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@
0b129e1a
KB
637
638 $(INSTALL) -d $(libdir)/wx
639 $(INSTALL) -d $(libdir)/wx/include
640 $(INSTALL) -d $(libdir)/wx/include/wx
641 $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@
257980e6 642 $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
2aa88730 643
a6f3598d
RR
644 $(INSTALL) -d $(datadir)/wx
645 $(INSTALL) -d $(datadir)/wx/afm
646 $(INSTALL) -d $(datadir)/wx/gs_afm
647 $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm
648 $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm
649
0b129e1a
KB
650 $(INSTALL) -d $(includedir)/wx
651 $(INSTALL) -d $(includedir)/wx/msw
652 $(INSTALL) -d $(includedir)/wx/gtk
653 $(INSTALL) -d $(includedir)/wx/motif
654 $(INSTALL) -d $(includedir)/wx/html
655 $(INSTALL) -d $(includedir)/wx/protocol
656 $(INSTALL) -d $(includedir)/wx/unix
657 $(INSTALL) -d $(includedir)/wx/generic
2aa88730 658 @list='$(HEADERS)'; for p in $$list; do \
2aa88730 659 $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \
517a619d
RR
660 echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \
661 done
662
663write_message:
664 @echo " "
665 @echo " The installation of wxWindows is finished. On certain"
c09ab26a
RR
666 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
667 @echo " if you installed a shared library."
517a619d
RR
668 @echo " "
669 @echo " wxWindows comes with no guarantees and doesn't claim"
670 @echo " to be suitable for any purpose."
671 @echo " "
672 @echo " Read the wxWindows Licence on licencing conditions."
673 @echo " "
674
de87c353 675install: preinstall @WX_ALL_INSTALLED@ write_message
2aa88730
RR
676
677uninstall:
517a619d
RR
678 @echo " "
679 @echo " Uninstalling wxWindows..."
680 @echo " "
681 @echo " Removing library..."
0b129e1a
KB
682 @$(RM) $(libdir)/@WX_TARGET_LIBRARY@
683 @$(RM) $(libdir)/@WX_LIBRARY_LINK1@
684 @$(RM) $(libdir)/@WX_LIBRARY_LINK2@
685 @$(RM) $(libdir)/@WX_LIBRARY_LINK3@
517a619d 686 @echo " Removing helper files..."
0b129e1a
KB
687 @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
688 @$(RM) $(bindir)/wx-config
a6f3598d
RR
689 @$(RM) $(datadir)/wx/afm/*
690 @$(RM) $(datadir)/wx/gs_afm/*
691 @rmdir $(datadir)/wx/gs_afm
692 @rmdir $(datadir)/wx/afm
693 @rmdir $(datadir)/wx
517a619d
RR
694 @echo " Removing headers..."
695 @list='$(HEADERS)'; for p in $$list; do \
0b129e1a 696 $(RM) $(includedir)/wx/$$p; \
517a619d
RR
697 done
698 @echo " Removing directories..."
699 @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi
700 @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi
701 @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi
702 @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi
703 @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi
704 @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi
a6f3598d 705 @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi
517a619d
RR
706 @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi
707 @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi
708 @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi
709 @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
710 @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
23a54e14 711
4cb122de 712ALL_DIST:
a4aad961
RR
713 mkdir _dist_dir
714 mkdir $(DISTDIR)
715 cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
257980e6 716 cp $(WXDIR)/configure.in $(DISTDIR)
a4aad961
RR
717 cp $(WXDIR)/configure $(DISTDIR)
718 cp $(WXDIR)/config.sub $(DISTDIR)
719 cp $(WXDIR)/config.guess $(DISTDIR)
720 cp $(WXDIR)/install-sh $(DISTDIR)
721 cp $(WXDIR)/mkinstalldirs $(DISTDIR)
722 cp $(WXDIR)/wx-config.in $(DISTDIR)
723 cp $(WXDIR)/setup.h.in $(DISTDIR)
724 cp $(WXDIR)/Makefile.in $(DISTDIR)
725 cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
726 cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
727 cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
728 cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
729 cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
730 cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
731 cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
732 mkdir $(DISTDIR)/include
733 mkdir $(DISTDIR)/include/wx
734 mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
735 mkdir $(DISTDIR)/include/wx/generic
736 mkdir $(DISTDIR)/include/wx/html
737 mkdir $(DISTDIR)/include/wx/unix
738 mkdir $(DISTDIR)/include/wx/protocol
739 cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
740 cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
741 cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
742 cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
743 cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
744 cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
745 cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
4cb122de
RR
746 mkdir $(DISTDIR)/src
747 mkdir $(DISTDIR)/src/common
748 mkdir $(DISTDIR)/src/generic
749 mkdir $(DISTDIR)/src/html
750 mkdir $(DISTDIR)/src/html/bitmaps
751 mkdir $(DISTDIR)/src/$(TOOLKITDIR)
752 mkdir $(DISTDIR)/src/unix
753 mkdir $(DISTDIR)/src/png
754 mkdir $(DISTDIR)/src/jpeg
1d62a8b4 755 mkdir $(DISTDIR)/src/tiff
4cb122de 756 mkdir $(DISTDIR)/src/zlib
c09ab26a 757 mkdir $(DISTDIR)/src/iodbc
4cb122de
RR
758 cp $(SRCDIR)/*.in $(DISTDIR)/src
759 cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common
760 cp $(COMMDIR)/*.c $(DISTDIR)/src/common
761 cp $(COMMDIR)/*.inc $(DISTDIR)/src/common
762 cp $(COMMDIR)/*.l $(DISTDIR)/src/common
763 cp $(COMMDIR)/*.h $(DISTDIR)/src/common
764 cp $(COMMDIR)/*.y $(DISTDIR)/src/common
765 cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic
766 cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html
4cb122de 767 cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps
4cb122de
RR
768 cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix
769 cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix
770 cp $(PNGDIR)/*.h $(DISTDIR)/src/png
771 cp $(PNGDIR)/*.c $(DISTDIR)/src/png
772 cp $(PNGDIR)/README $(DISTDIR)/src/png
773 cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
774 cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
775 cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
776 cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
777 cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
778 cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
1d62a8b4
RR
779 cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff
780 cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff
781 cp $(TIFFDIR)/README $(DISTDIR)/src/tiff
c09ab26a
RR
782 cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc
783 cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc
784 cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc
785 cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc
786 cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc
787 cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc
788 cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc
a4aad961
RR
789
790GTK_DIST:
4cb122de 791 cp $(WXDIR)/wxGTK.spec $(DISTDIR)
a4aad961 792 cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
4cb122de
RR
793 cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk
794 cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk
795 cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk
796 cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk
a4aad961
RR
797
798MOTIF_DIST:
4cb122de 799 cp $(WXDIR)/wxMOTIF.spec $(DISTDIR)
a4aad961 800 cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
4cb122de
RR
801 cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif
802 cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif
803 mkdir $(DISTDIR)/src/motif/xmcombo
804 cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo
805 cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo
806 cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo
a4aad961
RR
807
808MSW_DIST:
4cb122de 809 cp $(WXDIR)/wxWINE.spec $(DISTDIR)
a4aad961
RR
810 cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
811 cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
812 cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
813 cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
814 cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
4cb122de
RR
815 cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw
816 cp $(MSWDIR)/*.c $(DISTDIR)/src/msw
817 cp $(MSWDIR)/*.def $(DISTDIR)/src/msw
818 mkdir $(DISTDIR)/src/msw/ole
819 cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole
820
821SAMPLES_DIST:
822 mkdir $(DISTDIR)/samples
823 cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples
e9093718 824
4cb122de
RR
825 mkdir $(DISTDIR)/samples/bombs
826 cp $(SAMPDIR)/bombs/Makefile.in $(DISTDIR)/samples/bombs
c4fda16b 827 cp $(SAMPDIR)/bombs/makefile.unx $(DISTDIR)/samples/bombs
4cb122de
RR
828 cp $(SAMPDIR)/bombs/*.cpp $(DISTDIR)/samples/bombs
829 cp $(SAMPDIR)/bombs/*.h $(DISTDIR)/samples/bombs
830 cp $(SAMPDIR)/bombs/*.xpm $(DISTDIR)/samples/bombs
831 cp $(SAMPDIR)/bombs/readme.txt $(DISTDIR)/samples/bombs
e9093718 832
4cb122de
RR
833 mkdir $(DISTDIR)/samples/caret
834 cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret
c4fda16b 835 cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret
4cb122de
RR
836 cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret
837 cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret
e9093718 838
4cb122de
RR
839 mkdir $(DISTDIR)/samples/config
840 cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config
c4fda16b 841 cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config
4cb122de 842 cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config
e9093718 843
4cb122de
RR
844 mkdir $(DISTDIR)/samples/controls
845 mkdir $(DISTDIR)/samples/controls/icons
846 cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls
c4fda16b 847 cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls
4cb122de
RR
848 cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls
849 cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls
850 cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons
e9093718 851
4cb122de
RR
852 mkdir $(DISTDIR)/samples/checklst
853 cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst
c4fda16b 854 cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst
4cb122de
RR
855 cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst
856 cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst
e9093718 857
641d87d8 858 mkdir $(DISTDIR)/samples/printing
27ea1d8a 859 cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing
c4fda16b 860 cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing
27ea1d8a
RR
861 cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing
862 cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing
863 cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing
864 cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing
e9093718 865
79144b8a
RR
866 mkdir $(DISTDIR)/samples/db
867 cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db
c4fda16b 868 cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db
79144b8a
RR
869 cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db
870 cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db
871 cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db
e9093718 872
641d87d8
RR
873 mkdir $(DISTDIR)/samples/dialogs
874 cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs
c4fda16b 875 cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs
641d87d8
RR
876 cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs
877 cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs
878 cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs
e9093718 879
641d87d8
RR
880 mkdir $(DISTDIR)/samples/dnd
881 cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd
c4fda16b 882 cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd
4b59bea3 883 cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd
641d87d8
RR
884 cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd
885 cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd
886 cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd
887 cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd
e9093718 888
641d87d8
RR
889 mkdir $(DISTDIR)/samples/docview
890 cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview
e9093718 891 cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview
641d87d8
RR
892 cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview
893 cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview
894 cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview
e9093718 895
641d87d8
RR
896 mkdir $(DISTDIR)/samples/docvwmdi
897 cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi
e9093718 898 cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi
641d87d8
RR
899 cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi
900 cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi
e9093718 901
641d87d8
RR
902 mkdir $(DISTDIR)/samples/drawing
903 cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing
e9093718 904 cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing
641d87d8
RR
905 cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing
906 cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing
e9093718 907
641d87d8
RR
908 mkdir $(DISTDIR)/samples/dynamic
909 cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic
e9093718 910 cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic
641d87d8
RR
911 cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic
912 cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic
e9093718 913
79144b8a
RR
914 mkdir $(DISTDIR)/samples/forty
915 cp $(SAMPDIR)/forty/Makefile.in $(DISTDIR)/samples/forty
e9093718 916 cp $(SAMPDIR)/forty/makefile.unx $(DISTDIR)/samples/forty
63081513 917 cp $(SAMPDIR)/forty/*.h $(DISTDIR)/samples/forty
79144b8a
RR
918 cp $(SAMPDIR)/forty/*.cpp $(DISTDIR)/samples/forty
919 cp $(SAMPDIR)/forty/*.xpm $(DISTDIR)/samples/forty
920 cp $(SAMPDIR)/forty/*.xbm $(DISTDIR)/samples/forty
e9093718 921
79144b8a
RR
922 mkdir $(DISTDIR)/samples/fractal
923 cp $(SAMPDIR)/fractal/Makefile.in $(DISTDIR)/samples/fractal
e9093718 924 cp $(SAMPDIR)/fractal/makefile.unx $(DISTDIR)/samples/fractal
79144b8a 925 cp $(SAMPDIR)/fractal/*.cpp $(DISTDIR)/samples/fractal
e9093718
RR
926
927 mkdir $(DISTDIR)/samples/help
928 mkdir $(DISTDIR)/samples/help/doc
929 cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help
930 cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help
931 cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help
932 cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help
933 cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc
934
641d87d8
RR
935 mkdir $(DISTDIR)/samples/html
936 cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html
937 mkdir $(DISTDIR)/samples/html/about
938 cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about
939 cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about
940 mkdir $(DISTDIR)/samples/html/about/data
941 cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data
942 cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data
943 mkdir $(DISTDIR)/samples/html/help
944 cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help
945 cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help
946 mkdir $(DISTDIR)/samples/html/help/helpfiles
947 cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles
fc9c7c09
RR
948 mkdir $(DISTDIR)/samples/html/helpview
949 cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview
950 cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview
951 cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview
641d87d8
RR
952 mkdir $(DISTDIR)/samples/html/printing
953 cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing
641d87d8 954 cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing
641d87d8
RR
955 cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing
956 mkdir $(DISTDIR)/samples/html/test
957 cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test
958 cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test
959 cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test
960 cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test
961 cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test
962 cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test
963 mkdir $(DISTDIR)/samples/html/virtual
964 cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual
965 cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual
966 cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual
967 mkdir $(DISTDIR)/samples/html/widget
968 cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget
969 cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget
970 cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget
971 mkdir $(DISTDIR)/samples/html/zip
972 cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip
973 cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip
974 cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip
975 cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip
e9093718 976
641d87d8
RR
977 mkdir $(DISTDIR)/samples/image
978 cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image
e9093718 979 cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image
641d87d8
RR
980 cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image
981 cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image
e9093718 982
c09ab26a
RR
983 mkdir $(DISTDIR)/samples/internat
984 mkdir $(DISTDIR)/samples/internat/de
985 mkdir $(DISTDIR)/samples/internat/fr
986 cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat
e9093718 987 cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat
c09ab26a
RR
988 cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat
989 cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat
990 cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat
991 cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat
992 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
993 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
994 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
995 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
e9093718 996
641d87d8
RR
997 mkdir $(DISTDIR)/samples/layout
998 cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout
e9093718 999 cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout
641d87d8
RR
1000 cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout
1001 cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout
e9093718 1002
641d87d8 1003 mkdir $(DISTDIR)/samples/listctrl
e9093718 1004 mkdir $(DISTDIR)/samples/listctrl/bitmaps
641d87d8 1005 cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl
e9093718 1006 cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl
641d87d8
RR
1007 cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl
1008 cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl
1009 cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl
d8d474af 1010 cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps
e9093718 1011
641d87d8 1012 mkdir $(DISTDIR)/samples/mdi
e9093718 1013 mkdir $(DISTDIR)/samples/mdi/bitmaps
641d87d8 1014 cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi
e9093718 1015 cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi
641d87d8
RR
1016 cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi
1017 cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi
1018 cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi
d8d474af 1019 cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps
e9093718
RR
1020
1021 mkdir $(DISTDIR)/samples/memcheck
1022 cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck
1023 cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck
1024 cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck
1025 cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck
1026
1027 mkdir $(DISTDIR)/samples/menu
1028 cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu
1029 cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu
1030 cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu
1031
641d87d8 1032 mkdir $(DISTDIR)/samples/minifram
e9093718 1033 mkdir $(DISTDIR)/samples/minifram/bitmaps
641d87d8 1034 cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram
e9093718 1035 cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram
641d87d8
RR
1036 cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram
1037 cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram
1038 cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram
d8d474af 1039 cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps
e9093718 1040
641d87d8
RR
1041 mkdir $(DISTDIR)/samples/minimal
1042 cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal
e9093718 1043 cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal
641d87d8
RR
1044 cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal
1045 cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal
e9093718 1046
d8d474af
RR
1047 mkdir $(DISTDIR)/samples/nettest
1048 cp $(SAMPDIR)/nettest/Makefile.in $(DISTDIR)/samples/nettest
1049 cp $(SAMPDIR)/nettest/*.cpp $(DISTDIR)/samples/nettest
e9093718 1050
f85afd4e
MB
1051 mkdir $(DISTDIR)/samples/newgrid
1052 cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid
1053 cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid
1054 cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid
e9093718 1055
641d87d8
RR
1056 mkdir $(DISTDIR)/samples/notebook
1057 cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook
1058 cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook
1059 cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook
e9093718 1060
79144b8a
RR
1061 mkdir $(DISTDIR)/samples/png
1062 cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png
1063 cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
1064 cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
1065 cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
e9093718 1066
3fd528b9
RR
1067 mkdir $(DISTDIR)/samples/resource
1068 cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
1069 cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
1070 cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
1071 cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
e9093718 1072
3fd528b9
RR
1073 mkdir $(DISTDIR)/samples/richedit
1074 cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
1075 cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
1076 cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
1077 cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
1078 cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
1079 cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
641d87d8
RR
1080 mkdir $(DISTDIR)/samples/proplist
1081 cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
1082 cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
1083 cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist
ba0e7d41
RR
1084 mkdir $(DISTDIR)/samples/propsize
1085 cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize
1086 cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize
1087 cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize
641d87d8
RR
1088 mkdir $(DISTDIR)/samples/sashtest
1089 cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest
1090 cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest
1091 cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest
1092 mkdir $(DISTDIR)/samples/scroll
1093 cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll
1094 cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll
d8d474af
RR
1095 mkdir $(DISTDIR)/samples/scrollsub
1096 cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub
1097 cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub
641d87d8
RR
1098 mkdir $(DISTDIR)/samples/splitter
1099 cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter
1100 cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter
1101 mkdir $(DISTDIR)/samples/text
1102 cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text
1103 cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text
1104 cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text
1105 mkdir $(DISTDIR)/samples/thread
1106 cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread
1107 cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread
1108 mkdir $(DISTDIR)/samples/toolbar
1109 cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar
1110 cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar
641d87d8 1111 cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar
d8d474af
RR
1112 mkdir $(DISTDIR)/samples/toolbar/bitmaps
1113 cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps
641d87d8
RR
1114 mkdir $(DISTDIR)/samples/treectrl
1115 cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl
1116 cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl
1117 cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl
1118 cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl
1119 mkdir $(DISTDIR)/samples/typetest
1120 cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest
1121 cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest
1122 cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest
1123 cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest
1124 mkdir $(DISTDIR)/samples/validate
1125 cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate
1126 cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate
1127 cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate
1128 cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate
1129 mkdir $(DISTDIR)/samples/wizard
1130 cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard
1131 cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard
1132 cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard
1133 mkdir $(DISTDIR)/samples/wxpoem
1134 cp $(SAMPDIR)/wxpoem/Makefile.in $(DISTDIR)/samples/wxpoem
1135 cp $(SAMPDIR)/wxpoem/*.cpp $(DISTDIR)/samples/wxpoem
1136 cp $(SAMPDIR)/wxpoem/*.xpm $(DISTDIR)/samples/wxpoem
1137 cp $(SAMPDIR)/wxpoem/*.dat $(DISTDIR)/samples/wxpoem
1138 cp $(SAMPDIR)/wxpoem/*.txt $(DISTDIR)/samples/wxpoem
1139 mkdir $(DISTDIR)/samples/wxsocket
1140 cp $(SAMPDIR)/wxsocket/Makefile.in $(DISTDIR)/samples/wxsocket
1141 cp $(SAMPDIR)/wxsocket/*.cpp $(DISTDIR)/samples/wxsocket
1142 cp $(SAMPDIR)/wxsocket/*.xpm $(DISTDIR)/samples/wxsocket
1143
1144UTILS_DIST:
1145 mkdir $(DISTDIR)/utils
1146 cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils
c09ab26a 1147
641d87d8 1148 mkdir $(DISTDIR)/utils/wxMMedia2
641d87d8 1149 mkdir $(DISTDIR)/utils/wxMMedia2/lib
c09ab26a
RR
1150 mkdir $(DISTDIR)/utils/wxMMedia2/sample
1151 cp $(UTILSDIR)/wxMMedia2/Makefile.in $(DISTDIR)/utils/wxMMedia2
641d87d8
RR
1152 cp $(UTILSDIR)/wxMMedia2/lib/Makefile.in $(DISTDIR)/utils/wxMMedia2/lib
1153 cp $(UTILSDIR)/wxMMedia2/lib/*.h $(DISTDIR)/utils/wxMMedia2/lib
1154 cp $(UTILSDIR)/wxMMedia2/lib/*.cpp $(DISTDIR)/utils/wxMMedia2/lib
1155 cp $(UTILSDIR)/wxMMedia2/lib/*.def $(DISTDIR)/utils/wxMMedia2/lib
641d87d8
RR
1156 cp $(UTILSDIR)/wxMMedia2/sample/Makefile.in $(DISTDIR)/utils/wxMMedia2/sample
1157 cp $(UTILSDIR)/wxMMedia2/sample/*.cpp $(DISTDIR)/utils/wxMMedia2/sample
c09ab26a 1158
641d87d8 1159 mkdir $(DISTDIR)/utils/glcanvas
c09ab26a 1160 mkdir $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
641d87d8
RR
1161 cp $(UTILSDIR)/glcanvas/Makefile.in $(DISTDIR)/utils/glcanvas
1162 cp $(UTILSDIR)/glcanvas/docs/notes.txt $(DISTDIR)/utils/glcanvas/NOTES.txt
641d87d8
RR
1163 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/Makefile.in $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1164 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.h $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1165 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.cpp $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1166
c09ab26a
RR
1167 mkdir $(DISTDIR)/utils/ogl
1168 mkdir $(DISTDIR)/utils/ogl/src
1169 cp $(UTILSDIR)/ogl/Makefile.in $(DISTDIR)/utils/ogl
1170 cp $(UTILSDIR)/ogl/src/Makefile.in $(DISTDIR)/utils/ogl/src
1171 cp $(UTILSDIR)/ogl/src/*.h $(DISTDIR)/utils/ogl/src
1172 cp $(UTILSDIR)/ogl/src/*.cpp $(DISTDIR)/utils/ogl/src
1173
a6f3598d
RR
1174MISC_DIST:
1175 mkdir $(DISTDIR)/misc
1176 mkdir $(DISTDIR)/misc/afm
1177 cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm
1178 mkdir $(DISTDIR)/misc/gs_afm
1179 cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm
1180
1181dist: ALL_DIST @GUIDIST@ SAMPLES_DIST UTILS_DIST MISC_DIST
a4aad961 1182 cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
ba0e7d41
RR
1183 mv _dist_dir/wx$(TOOLKIT)/samples _dist_dir/wx$(TOOLKIT)/wxSamples
1184 cd _dist_dir/wx$(TOOLKIT); tar ch wxSamples | gzip -f9 > $(WXSAMPLES); mv $(WXSAMPLES) ../..
0b129e1a 1185 $(RM) -r _dist_dir
a4aad961 1186
f56b8330 1187clean:
0b129e1a 1188 $(RM) *.o
5586805b 1189 $(RM) *.d
0b129e1a
KB
1190 $(RM) parser.c
1191 $(RM) lexer.c
1192 $(RM) ./lib/*
f56b8330
RR
1193
1194cleanall: clean