1 #!################################################################################
3 #! Purpose: tmake template file from which Makefile.in is generated by running
4 #! tmake -t unx wxwin.pro -o Makefile.in
5 #! Author: Vadim Zeitlin, Robert Roebling, Julian Smart
8 #!################################################################################
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric, %wxHtml, %wxUnix, %wxGTK, %wxMOTIF and
13 IncludeTemplate("filelist.t");
17 foreach $file (sort keys %wxGeneric) {
18 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
19 #! so take the generic version
20 if ( $wxGeneric{$file} =~ /\b(PS|G|U|16)\b/ ) {
21 next unless $file =~ /^dirdlgg\./;
25 $file =~ s/cp?p?$/\o/;
26 $file2 =~ s/cp?p?$/\d/;
27 $project{"WXMSW_GENERICOBJS"} .= $file . " ";
28 $project{"WXMSW_GENERICDEPS"} .= $file2 . " "
31 foreach $file (sort keys %wxGeneric) {
32 #! skip generic files not required for the wxGTK port
33 next if $wxGeneric{$file} =~ /\bR\b/;
36 $file =~ s/cp?p?$/\o/;
37 $file2 =~ s/cp?p?$/\d/;
38 $project{"WXGTK_GENERICOBJS"} .= $file . " ";
39 $project{"WXGTK_GENERICDEPS"} .= $file2 . " "
42 foreach $file (sort keys %wxGeneric) {
43 #! skip generic files not required for the wxMotif port
44 next if $wxGeneric{$file} =~ /\bX\b/;
47 $file =~ s/cp?p?$/\o/;
48 $file2 =~ s/cp?p?$/\d/;
49 $project{"WXMOTIF_GENERICOBJS"} .= $file . " ";
50 $project{"WXMOTIF_GENERICDEPS"} .= $file2 . " "
53 foreach $file (sort keys %wxGeneric) {
54 #! skip generic files not required for the wxPM port
55 next if $wxGeneric{$file} =~ /\bP\b/;
58 $file =~ s/cp?p?$/\o/;
59 $file2 =~ s/cp?p?$/\d/;
60 $project{"WXOS2PM_GENERICOBJS"} .= $file . " ";
61 $project{"WXOS2PM_GENERICDEPS"} .= $file2 . " "
66 foreach $file (sort keys %wxBase) {
67 ($fileobj = $file) =~ s/cp?p?$/\o/;
68 ($filedep = $file) =~ s/cp?p?$/\d/;
70 $project{"BASE_OBJS"} .= $fileobj . " ";
71 $project{"BASE_DEPS"} .= $filedep . " ";
76 foreach $file (sort keys %wxCommon) {
77 ($fileobj = $file) =~ s/cp?p?$/\o/;
78 ($filedep = $file) =~ s/cp?p?$/\d/;
80 #! 'B' flag means that the file makes part of wxBase too
81 if ( $wxCommon{$file} =~ /\bB\b/ ) {
82 $project{"BASE_OBJS"} .= $fileobj . " ";
83 $project{"BASE_DEPS"} .= $filedep . " ";
86 if ( $wxCommon{$file} !~ /\bR\b/ ) { #! unless not for GTK
87 $project{"WXGTK_COMMONOBJS"} .= $fileobj . " ";
88 $project{"WXGTK_COMMONDEPS"} .= $filedep . " "
90 if ( $wxCommon{$file} !~ /\bX\b/ ) { #! unless not for Motif
91 $project{"WXMOTIF_COMMONOBJS"} .= $fileobj . " ";
92 $project{"WXMOTIF_COMMONDEPS"} .= $filedep . " "
94 if ( $wxCommon{$file} !~ /\bP\b/ ) { #! unless not for OS2PM
95 $project{"WXOS2PM_COMMONOBJS"} .= $fileobj . " ";
96 $project{"WXOS2PM_COMMONDEPS"} .= $filedep . " ";
99 #! ODBC needs extra files (sql*.h) so not compiled by default.
100 if ( (file !~ /^odbc\./) && ($wxCommon{$file} !~ /\b(16)\b/) ) {
101 $project{"WXMSW_COMMONOBJS"} .= $fileobj . " ";
102 $project{"WXMSW_COMMONDEPS"} .= $filedep . " "
108 foreach $file (sort keys %wxMSW) {
109 #! Mingw32 doesn't have the OLE headers and has some troubles with
111 next if $wxMSW{$file} =~ /\b(O|16)\b/;
113 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
114 next if $file =~ /^dirdlg\./;
117 $file =~ s/cp?p?$/\o/;
118 $file2 =~ s/cp?p?$/\d/;
119 $project{"WXMSW_GUIOBJS"} .= $file . " ";
120 $project{"WXMSW_GUIDEPS"} .= $file2 . " "
123 foreach $file (sort keys %wxGTK) {
125 $file =~ s/cp?p?$/\o/;
126 $file2 =~ s/cp?p?$/\d/;
127 $project{"WXGTK_GUIOBJS"} .= $file . " ";
128 $project{"WXGTK_GUIDEPS"} .= $file2 . " "
131 foreach $file (sort keys %wxMOTIF) {
133 $file =~ s/cp?p?$/\o/;
134 $file2 =~ s/cp?p?$/\d/;
135 $project{"WXMOTIF_GUIOBJS"} .= $file . " ";
136 $project{"WXMOTIF_GUIDEPS"} .= $file2 . " "
139 foreach $file (sort keys %wxOS2PM) {
141 $file =~ s/cp?p?$/\o/;
142 $file2 =~ s/cp?p?$/\d/;
143 $project{"WXOS2PM_GUIOBJS"} .= $file . " ";
144 $project{"WXOS2PM_GUIDEPS"} .= $file2 . " "
149 foreach $file (sort keys %wxHTML) {
151 $file =~ s/cp?p?$/\o/;
152 $file2 =~ s/cp?p?$/\d/;
153 $project{"WXHTMLOBJS"} .= $file . " ";
154 $project{"WXHTMLDEPS"} .= $file2 . " "
157 foreach $file (sort keys %wxUNIX) {
158 ($fileobj = $file) =~ s/cp?p?$/\o/;
159 ($filedep = $file) =~ s/cp?p?$/\d/;
161 #! 'B' flag means that the file makes part of wxBase too
162 if ( $wxUNIX{$file} =~ /\bB\b/ ) {
163 $project{"BASE_OBJS"} .= $fileobj . " ";
164 $project{"BASE_DEPS"} .= $filedep . " "
167 $project{"WXUNIX_OBJS"} .= $fileobj . " ";
168 $project{"WXUNIX_DEPS"} .= $filedep . " "
173 foreach $file (sort keys %wxWXINCLUDE) {
174 $project{"WX_HEADERS"} .= $file . " ";
175 $project{"BASE_HEADERS"} .= $file . " " if $wxWXINCLUDE{$file} =~ /\bB\b/;
178 foreach $file (sort keys %wxGENERICINCLUDE) {
179 $project{"WXGENERIC_HEADERS"} .= "generic/" . $file . " "
182 foreach $file (sort keys %wxMOTIFINCLUDE) {
183 $project{"WXMOTIF_HEADERS"} .= "motif/" . $file . " "
186 foreach $file (sort keys %wxGTKINCLUDE) {
187 $project{"WXGTK_HEADERS"} .= "gtk/" . $file . " "
190 foreach $file (sort keys %wxOS2PMINCLUDE) {
191 $project{"WXOS2PM_HEADERS"} .= "os2/" . $file . " "
194 foreach $file (sort keys %wxMSWINCLUDE) {
195 $project{"WXMSW_HEADERS"} .= "msw/" . $file . " "
198 foreach $file (sort keys %wxHTMLINCLUDE) {
199 $project{"WXHTML_HEADERS"} .= "html/" . $file . " "
202 foreach $file (sort keys %wxUNIXINCLUDE) {
203 $project{"WXUNIX_HEADERS"} .= "unix/" . $file . " "
206 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
207 $project{"WXPROTOCOL_HEADERS"} .= "protocol/" . $file . " "
211 # This file was automatically generated by tmake at #$ Now()
212 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
216 # Author: Julian Smart, Robert Roebling, Vadim Zeitlin
219 # Copyright:(c) 1993, AIAI, University of Edinburgh,
220 # Copyright:(c) 1999, Vadim Zeitlin
221 # Copyright:(c) 1999, Robert Roebling
223 # Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a
225 ###################################################################
227 include ./src/make.env
229 ############## override make.env for PIC ##########################
231 # Clears all default suffixes
232 .SUFFIXES: .o .cpp .c .cxx
235 $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
238 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
241 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
243 ########################### Paths #################################
247 VP1 = @top_srcdir@/src/common
248 VP2 = @top_srcdir@/src/@TOOLKIT_DIR@
249 VP3 = @top_srcdir@/src/motif/xmcombo
250 VP4 = @top_srcdir@/src/generic
251 VP5 = @top_srcdir@/src/unix
252 VP6 = @top_srcdir@/src/html
253 VP7 = @top_srcdir@/src/png
254 VP8 = @top_srcdir@/src/jpeg
255 VP9 = @top_srcdir@/src/tiff
256 VP10 = @top_srcdir@/src/zlib
257 VP11 = @top_srcdir@/src/iodbc
259 VPATH = $(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@$(VP10)@PATH_IFS@$(VP11)
261 top_srcdir = @top_srcdir@
263 exec_prefix = @exec_prefix@
267 libexecdir = @libexecdir@
269 sysconfdir = @sysconfdir@
270 sharedstatedir = @sharedstatedir@
271 localstatedir = @localstatedir@
275 includedir = @includedir@
276 oldincludedir = /usr/include
280 pkgdatadir = $(datadir)/@PACKAGE@
281 pkglibdir = $(libdir)/@PACKAGE@
282 pkgincludedir = $(includedir)/@PACKAGE@
287 INSTALL_PROGRAM = @INSTALL_PROGRAM@
288 INSTALL_DATA = @INSTALL_DATA@
289 # my autoconf doesn't set this
290 #INSTALL_SCRIPT = @INSTALL_SCRIPT@
291 # maybe do an additional chmod if needed?
292 INSTALL_SCRIPT = @INSTALL@
293 transform = @program_transform_name@
301 build_alias = @build_alias@
302 build_triplet = @build@
303 host_alias = @host_alias@
304 host_triplet = @host@
305 target_alias = @target_alias@
306 target_triplet = @target@
310 ############################# Dirs #################################
312 WXDIR = $(top_srcdir)
314 # Subordinate library possibilities
316 SRCDIR = $(WXDIR)/src
317 GENDIR = $(WXDIR)/src/generic
318 COMMDIR = $(WXDIR)/src/common
319 HTMLDIR = $(WXDIR)/src/html
320 UNIXDIR = $(WXDIR)/src/unix
321 PNGDIR = $(WXDIR)/src/png
322 JPEGDIR = $(WXDIR)/src/jpeg
323 TIFFDIR = $(WXDIR)/src/tiff
324 ZLIBDIR = $(WXDIR)/src/zlib
325 GTKDIR = $(WXDIR)/src/gtk
326 MOTIFDIR = $(WXDIR)/src/motif
327 MSWDIR = $(WXDIR)/src/msw
328 PMDIR = $(WXDIR)/src/os2
329 ODBCDIR = $(WXDIR)/src/iodbc
330 INCDIR = $(WXDIR)/include
331 SAMPDIR = $(WXDIR)/samples
332 UTILSDIR = $(WXDIR)/utils
333 MISCDIR = $(WXDIR)/misc
335 DOCDIR = $(WXDIR)/docs
337 ########################## Archive name ###############################
339 WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
340 WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
341 DISTDIR = ./_dist_dir/wx$(TOOLKIT)
343 ############################## Files ##################################
346 #$ ExpandList("BASE_HEADERS");
349 #$ ExpandList("WX_HEADERS");
352 #$ ExpandList("WXGTK_HEADERS");
355 #$ ExpandList("WXMOTIF_HEADERS");
358 #$ ExpandList("WXMSW_HEADERS");
361 #$ ExpandList("WXOS2PM_HEADERS");
364 #$ ExpandList("WXUNIX_HEADERS");
367 #$ ExpandList("WXGENERIC_HEADERS");
370 #$ ExpandList("WXPROTOCOL_HEADERS");
373 #$ ExpandList("WXHTML_HEADERS");
376 #$ ExpandList("WXGTK_GENERICOBJS");
379 #$ ExpandList("WXGTK_GENERICDEPS");
383 #$ ExpandList("WXGTK_COMMONOBJS");
387 #$ ExpandList("WXGTK_COMMONDEPS");
390 #$ ExpandList("WXGTK_GUIOBJS");
393 #$ ExpandList("WXGTK_GUIDEPS");
395 MOTIF_GENERICOBJS = \
396 #$ ExpandList("WXMOTIF_GENERICOBJS");
398 MOTIF_GENERICDEPS = \
399 #$ ExpandList("WXMOTIF_GENERICDEPS");
403 #$ ExpandList("WXMOTIF_COMMONOBJS");
407 #$ ExpandList("WXMOTIF_COMMONDEPS");
411 #$ ExpandList("WXMOTIF_GUIOBJS");
415 #$ ExpandList("WXMOTIF_GUIDEPS");
418 #$ ExpandList("WXMSW_GENERICOBJS");
421 #$ ExpandList("WXMSW_GENERICDEPS");
425 #$ ExpandList("WXMSW_COMMONOBJS");
429 #$ ExpandList("WXMSW_COMMONDEPS");
432 #$ ExpandList("WXMSW_GUIOBJS");
435 #$ ExpandList("WXMSW_GUIDEPS");
438 #$ ExpandList("WXOS2PM_GENERICOBJS");
441 #$ ExpandList("WXOS2PM_GENERICDEPS");
445 #$ ExpandList("WXOS2PM_COMMONOBJS");
449 #$ ExpandList("WXOS2PM_COMMONDEPS");
452 #$ ExpandList("WXOS2PM_GUIOBJS");
455 #$ ExpandList("WXOS2PM_GUIDEPS");
458 #$ ExpandList("BASE_OBJS");
461 #$ ExpandList("BASE_DEPS");
464 #$ ExpandList("WXHTMLOBJS");
467 #$ ExpandList("WXHTMLDEPS");
470 #$ ExpandList("WXUNIX_OBJS");
473 #$ ExpandList("WXUNIX_DEPS");
611 GUIHEADERS = @GUIHEADERS@
612 COMMONOBJS = @COMMONOBJS@
613 COMMONDEPS = @COMMONDEPS@
614 GENERICOBJS = @GENERICOBJS@
615 GENERICDEPS = @GENERICDEPS@
616 UNIXOBJS = @UNIXOBJS@
617 UNIXDEPS = @UNIXDEPS@
618 IODBCOBJS = @IODBCOBJS@
620 OBJECTS = @ALL_OBJECTS@
622 DEPFILES = @ALL_DEPFILES@
624 HEADERS = @ALL_HEADERS@
626 BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@
630 @WX_LIBRARY_NAME_STATIC@: $(OBJECTS)
632 $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS)
635 @WX_LIBRARY_NAME_SHARED@: $(OBJECTS)
637 $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME) $(OBJECTS) $(EXTRALIBS)
639 CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@
640 @$(RM) ./lib/@WX_LIBRARY_LINK1@
641 @$(RM) ./lib/@WX_LIBRARY_LINK2@
642 @$(RM) ./lib/@WX_LIBRARY_LINK3@
643 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
644 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
645 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
647 CREATE_INSTALLED_LINKS: $(libdir)/@WX_LIBRARY_NAME_SHARED@
648 $(RM) $(libdir)/@WX_LIBRARY_LINK1@
649 $(RM) $(libdir)/@WX_LIBRARY_LINK2@
650 $(RM) $(libdir)/@WX_LIBRARY_LINK3@
651 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK1@
652 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK2@
653 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK3@
655 $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h
657 parser.o: parser.c lexer.c
658 $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c
660 parser.c: $(COMMDIR)/parser.y lexer.c
661 $(YACC) $(COMMDIR)/parser.y
662 @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \
663 sed -e "s/BUFSIZ/5000/g" | \
664 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
665 sed -e "s/yy/PROIO_yy/g" | \
666 sed -e "s/input/PROIO_input/g" | \
667 sed -e "s/unput/PROIO_unput/g" > parser.c
670 lexer.c: $(COMMDIR)/lexer.l
671 $(LEX) $(COMMDIR)/lexer.l
672 @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \
673 sed -e "s/yy/PROIO_yy/g" | \
674 sed -e "s/input/PROIO_input/g" | \
675 sed -e "s/unput/PROIO_unput/g" > lexer.c
681 $(INSTALL) -d $(datadir)
682 $(INSTALL) -d $(datadir)/wx
683 $(INSTALL) -d $(datadir)/wx/afm
684 $(INSTALL) -d $(datadir)/wx/gs_afm
685 $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm
686 $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm
688 preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx-config
690 @echo " Installing wxWindows..."
693 $(INSTALL) -d $(prefix)
694 $(INSTALL) -d $(bindir)
695 $(INSTALL) -d $(libdir)
697 $(INSTALL_SCRIPT) $(top_builddir)/wx-config $(bindir)/wx-config
698 $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@
700 $(INSTALL) -d $(libdir)/wx
701 $(INSTALL) -d $(libdir)/wx/include
702 $(INSTALL) -d $(libdir)/wx/include/wx
703 $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@
704 $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
706 $(INSTALL) -d $(includedir)/wx
707 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi
708 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi
709 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/protocol; fi
710 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/unix; fi
711 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi
712 @list='$(HEADERS)'; for p in $$list; do \
713 $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \
714 echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \
719 @echo " The installation of wxWindows is finished. On certain"
720 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
721 @echo " if you installed a shared library."
723 @echo " wxWindows comes with no guarantees and doesn't claim"
724 @echo " to be suitable for any purpose."
726 @echo " Read the wxWindows Licence on licencing conditions."
729 install: preinstall @AFMINSTALL@ @WX_ALL_INSTALLED@ write_message
733 @echo " Uninstalling wxWindows..."
735 @echo " Removing library..."
736 @$(RM) $(libdir)/@WX_TARGET_LIBRARY@
737 @$(RM) $(libdir)/@WX_LIBRARY_LINK1@
738 @$(RM) $(libdir)/@WX_LIBRARY_LINK2@
739 @$(RM) $(libdir)/@WX_LIBRARY_LINK3@
740 @echo " Removing helper files..."
741 @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
742 @$(RM) $(bindir)/wx-config
743 @$(RM) $(datadir)/wx/afm/*
744 @$(RM) $(datadir)/wx/gs_afm/*
745 @rmdir $(datadir)/wx/gs_afm
746 @rmdir $(datadir)/wx/afm
748 @echo " Removing headers..."
749 @list='$(HEADERS)'; for p in $$list; do \
750 $(RM) $(includedir)/wx/$$p; \
752 @echo " Removing directories..."
753 @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi
754 @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi
755 @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi
756 @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi
757 @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi
758 @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi
759 @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi
760 @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi
761 @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi
762 @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi
763 @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
764 @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
769 cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
770 cp $(WXDIR)/configure.in $(DISTDIR)
771 cp $(WXDIR)/configure $(DISTDIR)
772 cp $(WXDIR)/config.sub $(DISTDIR)
773 cp $(WXDIR)/config.guess $(DISTDIR)
774 cp $(WXDIR)/install-sh $(DISTDIR)
775 cp $(WXDIR)/mkinstalldirs $(DISTDIR)
776 cp $(WXDIR)/wx-config.in $(DISTDIR)
777 cp $(WXDIR)/setup.h.in $(DISTDIR)
778 cp $(WXDIR)/Makefile.in $(DISTDIR)
779 cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
780 cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
781 cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
782 cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
783 cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
784 cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
785 cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
786 mkdir $(DISTDIR)/include
787 mkdir $(DISTDIR)/include/wx
788 mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
789 mkdir $(DISTDIR)/include/wx/generic
790 mkdir $(DISTDIR)/include/wx/html
791 mkdir $(DISTDIR)/include/wx/unix
792 mkdir $(DISTDIR)/include/wx/protocol
793 cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
794 cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx
795 cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
796 cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
797 cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
798 cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
799 cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
800 cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
802 mkdir $(DISTDIR)/src/common
803 mkdir $(DISTDIR)/src/generic
804 mkdir $(DISTDIR)/src/html
805 mkdir $(DISTDIR)/src/html/bitmaps
806 mkdir $(DISTDIR)/src/$(TOOLKITDIR)
807 mkdir $(DISTDIR)/src/unix
808 mkdir $(DISTDIR)/src/png
809 mkdir $(DISTDIR)/src/jpeg
810 mkdir $(DISTDIR)/src/tiff
811 mkdir $(DISTDIR)/src/zlib
812 mkdir $(DISTDIR)/src/iodbc
813 cp $(SRCDIR)/*.in $(DISTDIR)/src
814 cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common
815 cp $(COMMDIR)/*.c $(DISTDIR)/src/common
816 cp $(COMMDIR)/*.inc $(DISTDIR)/src/common
817 cp $(COMMDIR)/*.l $(DISTDIR)/src/common
818 cp $(COMMDIR)/*.h $(DISTDIR)/src/common
819 cp $(COMMDIR)/*.y $(DISTDIR)/src/common
820 cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic
821 cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html
822 cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps
823 cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix
824 cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix
825 cp $(PNGDIR)/*.h $(DISTDIR)/src/png
826 cp $(PNGDIR)/*.c $(DISTDIR)/src/png
827 cp $(PNGDIR)/README $(DISTDIR)/src/png
828 cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
829 cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
830 cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
831 cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
832 cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
833 cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
834 cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff
835 cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff
836 cp $(TIFFDIR)/README $(DISTDIR)/src/tiff
837 cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc
838 cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc
839 cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc
840 cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc
841 cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc
842 cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc
843 cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc
846 cp $(WXDIR)/wxGTK.spec $(DISTDIR)
847 cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
848 cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk
849 cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk
850 cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk
851 cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk
854 cp $(WXDIR)/wxMOTIF.spec $(DISTDIR)
855 cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
856 cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif
857 cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif
858 mkdir $(DISTDIR)/src/motif/xmcombo
859 cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo
860 cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo
861 cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo
864 cp $(WXDIR)/wxWINE.spec $(DISTDIR)
865 cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
866 cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
867 cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
868 cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
869 cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
870 cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw
871 cp $(MSWDIR)/*.c $(DISTDIR)/src/msw
872 cp $(MSWDIR)/*.def $(DISTDIR)/src/msw
873 mkdir $(DISTDIR)/src/msw/ole
874 cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole
877 mkdir $(DISTDIR)/samples
878 cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples
880 mkdir $(DISTDIR)/samples/bombs
881 cp $(SAMPDIR)/bombs/Makefile.in $(DISTDIR)/samples/bombs
882 cp $(SAMPDIR)/bombs/makefile.unx $(DISTDIR)/samples/bombs
883 cp $(SAMPDIR)/bombs/*.cpp $(DISTDIR)/samples/bombs
884 cp $(SAMPDIR)/bombs/*.h $(DISTDIR)/samples/bombs
885 cp $(SAMPDIR)/bombs/*.xpm $(DISTDIR)/samples/bombs
886 cp $(SAMPDIR)/bombs/readme.txt $(DISTDIR)/samples/bombs
888 mkdir $(DISTDIR)/samples/caret
889 cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret
890 cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret
891 cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret
892 cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret
894 mkdir $(DISTDIR)/samples/calendar
895 cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar
896 cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar
897 cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar
899 mkdir $(DISTDIR)/samples/config
900 cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config
901 cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config
902 cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config
904 mkdir $(DISTDIR)/samples/console
905 cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console
906 cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console
907 cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console
909 mkdir $(DISTDIR)/samples/controls
910 mkdir $(DISTDIR)/samples/controls/icons
911 cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls
912 cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls
913 cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls
914 cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls
915 cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons
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
923 mkdir $(DISTDIR)/samples/db
924 cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db
925 cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db
926 cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db
927 cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db
928 cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db
930 mkdir $(DISTDIR)/samples/dialogs
931 cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs
932 cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs
933 cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs
934 cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs
935 cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs
937 mkdir $(DISTDIR)/samples/dnd
938 cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd
939 cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd
940 cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd
941 cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd
942 cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd
943 cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd
944 cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd
946 mkdir $(DISTDIR)/samples/docview
947 cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview
948 cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview
949 cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview
950 cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview
951 cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview
953 mkdir $(DISTDIR)/samples/docvwmdi
954 cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi
955 cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi
956 cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi
957 cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi
959 mkdir $(DISTDIR)/samples/drawing
960 cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing
961 cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing
962 cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing
963 cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing
965 mkdir $(DISTDIR)/samples/dynamic
966 cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic
967 cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic
968 cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic
969 cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic
971 mkdir $(DISTDIR)/samples/forty
972 cp $(SAMPDIR)/forty/Makefile.in $(DISTDIR)/samples/forty
973 cp $(SAMPDIR)/forty/makefile.unx $(DISTDIR)/samples/forty
974 cp $(SAMPDIR)/forty/*.h $(DISTDIR)/samples/forty
975 cp $(SAMPDIR)/forty/*.cpp $(DISTDIR)/samples/forty
976 cp $(SAMPDIR)/forty/*.xpm $(DISTDIR)/samples/forty
977 cp $(SAMPDIR)/forty/*.xbm $(DISTDIR)/samples/forty
979 mkdir $(DISTDIR)/samples/font
980 cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font
981 cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font
982 cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font
984 mkdir $(DISTDIR)/samples/fractal
985 cp $(SAMPDIR)/fractal/Makefile.in $(DISTDIR)/samples/fractal
986 cp $(SAMPDIR)/fractal/makefile.unx $(DISTDIR)/samples/fractal
987 cp $(SAMPDIR)/fractal/*.cpp $(DISTDIR)/samples/fractal
989 mkdir $(DISTDIR)/samples/grid
990 cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid
991 cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid
992 cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid
994 mkdir $(DISTDIR)/samples/help
995 mkdir $(DISTDIR)/samples/help/doc
996 cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help
997 cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help
998 cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help
999 cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help
1000 cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc
1002 mkdir $(DISTDIR)/samples/html
1003 cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html
1004 mkdir $(DISTDIR)/samples/html/about
1005 cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about
1006 cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about
1007 mkdir $(DISTDIR)/samples/html/about/data
1008 cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data
1009 cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data
1010 mkdir $(DISTDIR)/samples/html/help
1011 cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help
1012 cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help
1013 mkdir $(DISTDIR)/samples/html/help/helpfiles
1014 cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles
1015 mkdir $(DISTDIR)/samples/html/helpview
1016 cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview
1017 cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview
1018 cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview
1019 mkdir $(DISTDIR)/samples/html/printing
1020 cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing
1021 cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing
1022 cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing
1023 mkdir $(DISTDIR)/samples/html/test
1024 cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test
1025 cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test
1026 cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test
1027 cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test
1028 cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test
1029 cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test
1030 mkdir $(DISTDIR)/samples/html/virtual
1031 cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual
1032 cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual
1033 cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual
1034 mkdir $(DISTDIR)/samples/html/widget
1035 cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget
1036 cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget
1037 cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget
1038 mkdir $(DISTDIR)/samples/html/zip
1039 cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip
1040 cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip
1041 cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip
1042 cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip
1044 mkdir $(DISTDIR)/samples/image
1045 cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image
1046 cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image
1047 cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image
1048 cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image
1049 cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image
1051 mkdir $(DISTDIR)/samples/internat
1052 mkdir $(DISTDIR)/samples/internat/de
1053 mkdir $(DISTDIR)/samples/internat/fr
1054 cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat
1055 cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat
1056 cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat
1057 cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat
1058 cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat
1059 cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat
1060 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
1061 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
1062 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
1063 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
1065 mkdir $(DISTDIR)/samples/layout
1066 cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout
1067 cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout
1068 cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout
1069 cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout
1071 mkdir $(DISTDIR)/samples/life
1072 mkdir $(DISTDIR)/samples/life/bitmaps
1073 cp $(SAMPDIR)/life/Makefile.in $(DISTDIR)/samples/life
1074 cp $(SAMPDIR)/life/makefile.unx $(DISTDIR)/samples/life
1075 cp $(SAMPDIR)/life/*.cpp $(DISTDIR)/samples/life
1076 cp $(SAMPDIR)/life/*.xpm $(DISTDIR)/samples/life
1077 cp $(SAMPDIR)/life/bitmaps/*.xpm $(DISTDIR)/samples/life/bitmaps
1079 mkdir $(DISTDIR)/samples/listctrl
1080 mkdir $(DISTDIR)/samples/listctrl/bitmaps
1081 cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl
1082 cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl
1083 cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl
1084 cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl
1085 cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl
1086 cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps
1088 mkdir $(DISTDIR)/samples/mdi
1089 mkdir $(DISTDIR)/samples/mdi/bitmaps
1090 cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi
1091 cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi
1092 cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi
1093 cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi
1094 cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi
1095 cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps
1097 mkdir $(DISTDIR)/samples/memcheck
1098 cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck
1099 cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck
1100 cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck
1101 cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck
1103 mkdir $(DISTDIR)/samples/menu
1104 cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu
1105 cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu
1106 cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu
1108 mkdir $(DISTDIR)/samples/minifram
1109 mkdir $(DISTDIR)/samples/minifram/bitmaps
1110 cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram
1111 cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram
1112 cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram
1113 cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram
1114 cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram
1115 cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps
1117 mkdir $(DISTDIR)/samples/minimal
1118 cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal
1119 cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal
1120 cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal
1121 cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal
1123 mkdir $(DISTDIR)/samples/nettest
1124 cp $(SAMPDIR)/nettest/Makefile.in $(DISTDIR)/samples/nettest
1125 cp $(SAMPDIR)/nettest/makefile.unx $(DISTDIR)/samples/nettest
1126 cp $(SAMPDIR)/nettest/*.cpp $(DISTDIR)/samples/nettest
1128 mkdir $(DISTDIR)/samples/newgrid
1129 cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid
1130 cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid
1131 cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid
1132 cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid
1134 mkdir $(DISTDIR)/samples/notebook
1135 cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook
1136 cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook
1137 cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook
1138 cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook
1140 mkdir $(DISTDIR)/samples/png
1141 cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png
1142 cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png
1143 cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
1144 cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
1145 cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
1147 mkdir $(DISTDIR)/samples/printing
1148 cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing
1149 cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing
1150 cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing
1151 cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing
1152 cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing
1153 cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing
1155 mkdir $(DISTDIR)/samples/resource
1156 cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
1157 cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource
1158 cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
1159 cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
1160 cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
1162 mkdir $(DISTDIR)/samples/richedit
1163 cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
1164 cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
1165 cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
1166 cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
1167 cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
1168 cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
1170 mkdir $(DISTDIR)/samples/proplist
1171 cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
1172 cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
1173 cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist
1175 mkdir $(DISTDIR)/samples/propsize
1176 cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize
1177 cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize
1178 cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize
1180 mkdir $(DISTDIR)/samples/sashtest
1181 cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest
1182 cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest
1183 cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest
1185 mkdir $(DISTDIR)/samples/scroll
1186 cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll
1187 cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll
1188 cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll
1190 mkdir $(DISTDIR)/samples/scrollsub
1191 cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub
1192 cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub
1193 cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub
1195 mkdir $(DISTDIR)/samples/splitter
1196 cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter
1197 cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter
1198 cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter
1200 mkdir $(DISTDIR)/samples/text
1201 cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text
1202 cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text
1203 cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text
1204 cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text
1206 mkdir $(DISTDIR)/samples/thread
1207 cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread
1208 cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread
1209 cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread
1211 mkdir $(DISTDIR)/samples/toolbar
1212 cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar
1213 cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar
1214 cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar
1215 mkdir $(DISTDIR)/samples/toolbar/bitmaps
1216 cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps
1218 mkdir $(DISTDIR)/samples/treectrl
1219 cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl
1220 cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl
1221 cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl
1222 cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl
1224 mkdir $(DISTDIR)/samples/typetest
1225 cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest
1226 cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest
1227 cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest
1228 cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest
1230 mkdir $(DISTDIR)/samples/validate
1231 cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate
1232 cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate
1233 cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate
1234 cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate
1236 mkdir $(DISTDIR)/samples/wizard
1237 cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard
1238 cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard
1239 cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard
1241 mkdir $(DISTDIR)/samples/wxpoem
1242 cp $(SAMPDIR)/wxpoem/Makefile.in $(DISTDIR)/samples/wxpoem
1243 cp $(SAMPDIR)/wxpoem/*.cpp $(DISTDIR)/samples/wxpoem
1244 cp $(SAMPDIR)/wxpoem/*.xpm $(DISTDIR)/samples/wxpoem
1245 cp $(SAMPDIR)/wxpoem/*.dat $(DISTDIR)/samples/wxpoem
1246 cp $(SAMPDIR)/wxpoem/*.txt $(DISTDIR)/samples/wxpoem
1248 mkdir $(DISTDIR)/samples/wxsocket
1249 cp $(SAMPDIR)/wxsocket/Makefile.in $(DISTDIR)/samples/wxsocket
1250 cp $(SAMPDIR)/wxsocket/*.cpp $(DISTDIR)/samples/wxsocket
1251 cp $(SAMPDIR)/wxsocket/*.xpm $(DISTDIR)/samples/wxsocket
1254 mkdir $(DISTDIR)/utils
1255 cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils
1257 mkdir $(DISTDIR)/utils/wxMMedia2
1258 mkdir $(DISTDIR)/utils/wxMMedia2/lib
1259 mkdir $(DISTDIR)/utils/wxMMedia2/sample
1260 cp $(UTILSDIR)/wxMMedia2/Makefile.in $(DISTDIR)/utils/wxMMedia2
1261 cp $(UTILSDIR)/wxMMedia2/lib/Makefile.in $(DISTDIR)/utils/wxMMedia2/lib
1262 cp $(UTILSDIR)/wxMMedia2/lib/*.h $(DISTDIR)/utils/wxMMedia2/lib
1263 cp $(UTILSDIR)/wxMMedia2/lib/*.cpp $(DISTDIR)/utils/wxMMedia2/lib
1264 cp $(UTILSDIR)/wxMMedia2/lib/*.def $(DISTDIR)/utils/wxMMedia2/lib
1265 cp $(UTILSDIR)/wxMMedia2/sample/Makefile.in $(DISTDIR)/utils/wxMMedia2/sample
1266 cp $(UTILSDIR)/wxMMedia2/sample/*.cpp $(DISTDIR)/utils/wxMMedia2/sample
1268 mkdir $(DISTDIR)/utils/glcanvas
1269 mkdir $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1270 cp $(UTILSDIR)/glcanvas/Makefile.in $(DISTDIR)/utils/glcanvas
1271 cp $(UTILSDIR)/glcanvas/docs/notes.txt $(DISTDIR)/utils/glcanvas/NOTES.txt
1272 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/Makefile.in $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1273 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.h $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1274 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.cpp $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1276 mkdir $(DISTDIR)/utils/ogl
1277 mkdir $(DISTDIR)/utils/ogl/src
1278 cp $(UTILSDIR)/ogl/Makefile.in $(DISTDIR)/utils/ogl
1279 cp $(UTILSDIR)/ogl/src/Makefile.in $(DISTDIR)/utils/ogl/src
1280 cp $(UTILSDIR)/ogl/src/*.h $(DISTDIR)/utils/ogl/src
1281 cp $(UTILSDIR)/ogl/src/*.cpp $(DISTDIR)/utils/ogl/src
1284 mkdir $(DISTDIR)/misc
1285 mkdir $(DISTDIR)/misc/afm
1286 cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm
1287 mkdir $(DISTDIR)/misc/gs_afm
1288 cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm
1290 dist: ALL_DIST @GUIDIST@ SAMPLES_DIST UTILS_DIST MISC_DIST
1291 cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
1292 mv _dist_dir/wx$(TOOLKIT)/samples _dist_dir/wx$(TOOLKIT)/wxSamples
1293 cd _dist_dir/wx$(TOOLKIT); tar ch wxSamples | gzip -f9 > $(WXSAMPLES); mv $(WXSAMPLES) ../..