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 and %wxGTK hashes.
12 IncludeTemplate("filelist.t");
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\./;
24 $file =~ s/cp?p?$/\o/;
25 $file2 =~ s/cp?p?$/\d/;
26 $project{"WXMSW_GENERICOBJS"} .= $file . " ";
27 $project{"WXMSW_GENERICDEPS"} .= $file2 . " "
30 foreach $file (sort keys %wxGeneric) {
31 #! skip generic files not required for the wxGTK port
32 next if $wxGeneric{$file} =~ /\bR\b/;
35 $file =~ s/cp?p?$/\o/;
36 $file2 =~ s/cp?p?$/\d/;
37 $project{"WXGTK_GENERICOBJS"} .= $file . " ";
38 $project{"WXGTK_GENERICDEPS"} .= $file2 . " "
41 foreach $file (sort keys %wxGeneric) {
42 next if $wxGeneric{$file} =~ /\bX\b/;
45 $file =~ s/cp?p?$/\o/;
46 $file2 =~ s/cp?p?$/\d/;
47 $project{"WXMOTIF_GENERICOBJS"} .= $file . " ";
48 $project{"WXMOTIF_GENERICDEPS"} .= $file2 . " "
53 foreach $file (sort keys %wxBase) {
54 ($fileobj = $file) =~ s/cp?p?$/\o/;
55 ($filedep = $file) =~ s/cp?p?$/\d/;
57 $project{"BASE_OBJS"} .= $fileobj . " ";
58 $project{"BASE_DEPS"} .= $filedep . " ";
63 foreach $file (sort keys %wxCommon) {
64 ($fileobj = $file) =~ s/cp?p?$/\o/;
65 ($filedep = $file) =~ s/cp?p?$/\d/;
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 . " ";
73 if ( $wxCommon{$file} !~ /\bR\b/ ) { #! unless not for GTK
74 $project{"WXGTK_COMMONOBJS"} .= $fileobj . " ";
75 $project{"WXGTK_COMMONDEPS"} .= $filedep . " "
77 if ( $wxCommon{$file} !~ /\bX\b/ ) { #! unless not for Motif
78 $project{"WXMOTIF_COMMONOBJS"} .= $fileobj . " ";
79 $project{"WXMOTIF_COMMONDEPS"} .= $filedep . " "
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 . " "
91 foreach $file (sort keys %wxMSW) {
92 #! Mingw32 doesn't have the OLE headers and has some troubles with
94 next if $wxMSW{$file} =~ /\b(O|16)\b/;
96 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
97 next if $file =~ /^dirdlg\./;
100 $file =~ s/cp?p?$/\o/;
101 $file2 =~ s/cp?p?$/\d/;
102 $project{"WXMSW_GUIOBJS"} .= $file . " ";
103 $project{"WXMSW_GUIDEPS"} .= $file2 . " "
106 foreach $file (sort keys %wxGTK) {
108 $file =~ s/cp?p?$/\o/;
109 $file2 =~ s/cp?p?$/\d/;
110 $project{"WXGTK_GUIOBJS"} .= $file . " ";
111 $project{"WXGTK_GUIDEPS"} .= $file2 . " "
114 foreach $file (sort keys %wxMOTIF) {
116 $file =~ s/cp?p?$/\o/;
117 $file2 =~ s/cp?p?$/\d/;
118 $project{"WXMOTIF_GUIOBJS"} .= $file . " ";
119 $project{"WXMOTIF_GUIDEPS"} .= $file2 . " "
124 foreach $file (sort keys %wxHTML) {
126 $file =~ s/cp?p?$/\o/;
127 $file2 =~ s/cp?p?$/\d/;
128 $project{"WXHTMLOBJS"} .= $file . " ";
129 $project{"WXHTMLDEPS"} .= $file2 . " "
132 foreach $file (sort keys %wxUNIX) {
133 ($fileobj = $file) =~ s/cp?p?$/\o/;
134 ($filedep = $file) =~ s/cp?p?$/\d/;
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 . " "
142 $project{"WXUNIX_OBJS"} .= $fileobj . " ";
143 $project{"WXUNIX_DEPS"} .= $filedep . " "
148 foreach $file (sort keys %wxWXINCLUDE) {
149 $project{"WX_HEADERS"} .= $file . " ";
150 $project{"BASE_HEADERS"} .= $file . " " if $wxWXINCLUDE{$file} =~ /\bB\b/;
153 foreach $file (sort keys %wxGENERICINCLUDE) {
154 $project{"WXGENERIC_HEADERS"} .= "generic/" . $file . " "
157 foreach $file (sort keys %wxMOTIFINCLUDE) {
158 $project{"WXMOTIF_HEADERS"} .= "motif/" . $file . " "
161 foreach $file (sort keys %wxGTKINCLUDE) {
162 $project{"WXGTK_HEADERS"} .= "gtk/" . $file . " "
165 foreach $file (sort keys %wxMSWINCLUDE) {
166 $project{"WXMSW_HEADERS"} .= "msw/" . $file . " "
169 foreach $file (sort keys %wxHTMLINCLUDE) {
170 $project{"WXHTML_HEADERS"} .= "html/" . $file . " "
173 foreach $file (sort keys %wxUNIXINCLUDE) {
174 $project{"WXUNIX_HEADERS"} .= "unix/" . $file . " "
177 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
178 $project{"WXPROTOCOL_HEADERS"} .= "protocol/" . $file . " "
182 # This file was automatically generated by tmake at #$ Now()
183 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
187 # Author: Julian Smart, Robert Roebling, Vadim Zeitlin
190 # Copyright:(c) 1993, AIAI, University of Edinburgh,
191 # Copyright:(c) 1999, Vadim Zeitlin
192 # Copyright:(c) 1999, Robert Roebling
194 # Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a
196 ###################################################################
198 include ./src/make.env
200 ############## override make.env for PIC ##########################
202 # Clears all default suffixes
203 .SUFFIXES: .o .cpp .c .cxx
206 $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
209 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
212 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
214 ########################### Paths #################################
218 VP1 = @top_srcdir@/src/common
219 VP2 = @top_srcdir@/src/@TOOLKIT_DIR@
220 VP3 = @top_srcdir@/src/motif/xmcombo
221 VP4 = @top_srcdir@/src/generic
222 VP5 = @top_srcdir@/src/unix
223 VP6 = @top_srcdir@/src/html
224 VP7 = @top_srcdir@/src/png
225 VP8 = @top_srcdir@/src/jpeg
226 VP9 = @top_srcdir@/src/zlib
227 VP10 = @top_srcdir@/src/iodbc
229 VPATH = $(VP1):$(VP2):$(VP3):$(VP4):$(VP5):$(VP6):$(VP7):$(VP8):$(VP9):$(VP10)
231 top_srcdir = @top_srcdir@
233 exec_prefix = @exec_prefix@
237 libexecdir = @libexecdir@
239 sysconfdir = @sysconfdir@
240 sharedstatedir = @sharedstatedir@
241 localstatedir = @localstatedir@
245 includedir = @includedir@
246 oldincludedir = /usr/include
250 pkgdatadir = $(datadir)/@PACKAGE@
251 pkglibdir = $(libdir)/@PACKAGE@
252 pkgincludedir = $(includedir)/@PACKAGE@
257 INSTALL_PROGRAM = @INSTALL_PROGRAM@
258 INSTALL_DATA = @INSTALL_DATA@
259 # my autoconf doesn't set this
260 #INSTALL_SCRIPT = @INSTALL_SCRIPT@
261 # maybe do an additional chmod if needed?
262 INSTALL_SCRIPT = @INSTALL@
263 transform = @program_transform_name@
271 build_alias = @build_alias@
272 build_triplet = @build@
273 host_alias = @host_alias@
274 host_triplet = @host@
275 target_alias = @target_alias@
276 target_triplet = @target@
278 ############################# Dirs #################################
280 WXDIR = $(top_srcdir)
282 # Subordinate library possibilities
284 SRCDIR = $(WXDIR)/src
285 GENDIR = $(WXDIR)/src/generic
286 COMMDIR = $(WXDIR)/src/common
287 HTMLDIR = $(WXDIR)/src/html
288 UNIXDIR = $(WXDIR)/src/unix
289 PNGDIR = $(WXDIR)/src/png
290 JPEGDIR = $(WXDIR)/src/jpeg
291 ZLIBDIR = $(WXDIR)/src/zlib
292 GTKDIR = $(WXDIR)/src/gtk
293 MOTIFDIR = $(WXDIR)/src/motif
294 MSWDIR = $(WXDIR)/src/msw
295 ODBCDIR = $(WXDIR)/src/iodbc
296 INCDIR = $(WXDIR)/include
297 SAMPDIR = $(WXDIR)/samples
298 UTILSDIR = $(WXDIR)/utils
299 MISCDIR = $(WXDIR)/misc
301 DOCDIR = $(WXDIR)/docs
303 ########################## Archive name ###############################
305 WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
306 WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
307 DISTDIR = ./_dist_dir/wx$(TOOLKIT)
309 ############################## Files ##################################
312 #$ ExpandList("BASE_HEADERS");
315 #$ ExpandList("WX_HEADERS");
318 #$ ExpandList("WXGTK_HEADERS");
321 #$ ExpandList("WXMOTIF_HEADERS");
324 #$ ExpandList("WXMSW_HEADERS");
327 #$ ExpandList("WXUNIX_HEADERS");
330 #$ ExpandList("WXGENERIC_HEADERS");
333 #$ ExpandList("WXPROTOCOL_HEADERS");
336 #$ ExpandList("WXHTML_HEADERS");
339 #$ ExpandList("WXGTK_GENERICOBJS");
342 #$ ExpandList("WXGTK_GENERICDEPS");
346 #$ ExpandList("WXGTK_COMMONOBJS");
350 #$ ExpandList("WXGTK_COMMONDEPS");
353 #$ ExpandList("WXGTK_GUIOBJS");
356 #$ ExpandList("WXGTK_GUIDEPS");
358 MOTIF_GENERICOBJS = \
359 #$ ExpandList("WXMOTIF_GENERICOBJS");
361 MOTIF_GENERICDEPS = \
362 #$ ExpandList("WXMOTIF_GENERICDEPS");
366 #$ ExpandList("WXMOTIF_COMMONOBJS");
370 #$ ExpandList("WXMOTIF_COMMONDEPS");
374 #$ ExpandList("WXMOTIF_GUIOBJS");
378 #$ ExpandList("WXMOTIF_GUIDEPS");
381 #$ ExpandList("WXMSW_GENERICOBJS");
384 #$ ExpandList("WXMSW_GENERICDEPS");
388 #$ ExpandList("WXMSW_COMMONOBJS");
392 #$ ExpandList("WXMSW_COMMONDEPS");
395 #$ ExpandList("WXMSW_GUIOBJS");
398 #$ ExpandList("WXMSW_GUIDEPS");
401 #$ ExpandList("BASE_OBJS");
404 #$ ExpandList("BASE_DEPS");
407 #$ ExpandList("WXHTMLOBJS");
410 #$ ExpandList("WXHTMLDEPS");
413 #$ ExpandList("WXUNIX_OBJS");
416 #$ ExpandList("WXUNIX_DEPS");
519 GUIHEADERS = @GUIHEADERS@
520 COMMONOBJS = @COMMONOBJS@
521 COMMONDEPS = @COMMONDEPS@
522 GENERICOBJS = @GENERICOBJS@
523 GENERICDEPS = @GENERICDEPS@
524 UNIXOBJS = @UNIXOBJS@
525 UNIXDEPS = @UNIXDEPS@
526 IODBCOBJS = @IODBCOBJS@
528 OBJECTS = @ALL_OBJECTS@
530 DEPFILES = @ALL_DEPFILES@
532 HEADERS = @ALL_HEADERS@
536 @WX_LIBRARY_NAME_STATIC@: $(OBJECTS)
538 $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS)
541 @WX_LIBRARY_NAME_SHARED@: $(OBJECTS)
543 $(SHARED_LD) ./lib/$@ $(OBJECTS) $(EXTRALIBS)
545 CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@
546 @$(RM) ./lib/@WX_LIBRARY_LINK1@
547 @$(RM) ./lib/@WX_LIBRARY_LINK2@
548 @$(RM) ./lib/@WX_LIBRARY_LINK3@
549 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
550 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
551 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
553 CREATE_INSTALLED_LINKS: $(libdir)/@WX_LIBRARY_NAME_SHARED@
554 $(RM) $(libdir)/@WX_LIBRARY_LINK1@
555 $(RM) $(libdir)/@WX_LIBRARY_LINK2@
556 $(RM) $(libdir)/@WX_LIBRARY_LINK3@
557 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK1@
558 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK2@
559 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK3@
561 $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h
563 parser.o: parser.c lexer.c
564 $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c
566 parser.c: $(COMMDIR)/parser.y lexer.c
567 $(YACC) $(COMMDIR)/parser.y
568 @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \
569 sed -e "s/BUFSIZ/5000/g" | \
570 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
571 sed -e "s/yy/PROIO_yy/g" | \
572 sed -e "s/input/PROIO_input/g" | \
573 sed -e "s/unput/PROIO_unput/g" > parser.c
576 lexer.c: $(COMMDIR)/lexer.l
577 $(LEX) $(COMMDIR)/lexer.l
578 @sed -e "s;$(COMMDIR)/lex.yy.c;lexer.l;g" < lex.yy.c | \
579 sed -e "s/yy/PROIO_yy/g" | \
580 sed -e "s/input/PROIO_input/g" | \
581 sed -e "s/unput/PROIO_unput/g" > lexer.c
586 preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx-config
588 @echo " Installing wxWindows..."
591 $(INSTALL) -d $(prefix)
592 $(INSTALL) -d $(bindir)
593 $(INSTALL) -d $(libdir)
594 $(INSTALL) -d $(datadir)
596 $(INSTALL_SCRIPT) $(top_builddir)/wx-config $(bindir)/wx-config
597 $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@
599 $(INSTALL) -d $(libdir)/wx
600 $(INSTALL) -d $(libdir)/wx/include
601 $(INSTALL) -d $(libdir)/wx/include/wx
602 $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@
603 $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
605 $(INSTALL) -d $(datadir)/wx
606 $(INSTALL) -d $(datadir)/wx/afm
607 $(INSTALL) -d $(datadir)/wx/gs_afm
608 $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm
609 $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm
611 $(INSTALL) -d $(includedir)/wx
612 $(INSTALL) -d $(includedir)/wx/msw
613 $(INSTALL) -d $(includedir)/wx/gtk
614 $(INSTALL) -d $(includedir)/wx/motif
615 $(INSTALL) -d $(includedir)/wx/html
616 $(INSTALL) -d $(includedir)/wx/protocol
617 $(INSTALL) -d $(includedir)/wx/unix
618 $(INSTALL) -d $(includedir)/wx/generic
619 @list='$(HEADERS)'; for p in $$list; do \
620 $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \
621 echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \
626 @echo " The installation of wxWindows is finished. On certain"
627 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
628 @echo " if you installed a shared library."
630 @echo " wxWindows comes with no guarantees and doesn't claim"
631 @echo " to be suitable for any purpose."
633 @echo " Read the wxWindows Licence on licencing conditions."
636 install: preinstall @WX_ALL_INSTALLED@ write_message
640 @echo " Uninstalling wxWindows..."
642 @echo " Removing library..."
643 @$(RM) $(libdir)/@WX_TARGET_LIBRARY@
644 @$(RM) $(libdir)/@WX_LIBRARY_LINK1@
645 @$(RM) $(libdir)/@WX_LIBRARY_LINK2@
646 @$(RM) $(libdir)/@WX_LIBRARY_LINK3@
647 @echo " Removing helper files..."
648 @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
649 @$(RM) $(bindir)/wx-config
650 @$(RM) $(datadir)/wx/afm/*
651 @$(RM) $(datadir)/wx/gs_afm/*
652 @rmdir $(datadir)/wx/gs_afm
653 @rmdir $(datadir)/wx/afm
655 @echo " Removing headers..."
656 @list='$(HEADERS)'; for p in $$list; do \
657 $(RM) $(includedir)/wx/$$p; \
659 @echo " Removing directories..."
660 @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi
661 @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi
662 @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi
663 @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi
664 @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi
665 @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi
666 @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi
667 @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi
668 @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi
669 @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi
670 @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
671 @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
676 cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
677 cp $(WXDIR)/configure.in $(DISTDIR)
678 cp $(WXDIR)/configure $(DISTDIR)
679 cp $(WXDIR)/config.sub $(DISTDIR)
680 cp $(WXDIR)/config.guess $(DISTDIR)
681 cp $(WXDIR)/install-sh $(DISTDIR)
682 cp $(WXDIR)/mkinstalldirs $(DISTDIR)
683 cp $(WXDIR)/wx-config.in $(DISTDIR)
684 cp $(WXDIR)/setup.h.in $(DISTDIR)
685 cp $(WXDIR)/Makefile.in $(DISTDIR)
686 cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
687 cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
688 cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
689 cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
690 cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
691 cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
692 cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
693 mkdir $(DISTDIR)/include
694 mkdir $(DISTDIR)/include/wx
695 mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
696 mkdir $(DISTDIR)/include/wx/generic
697 mkdir $(DISTDIR)/include/wx/html
698 mkdir $(DISTDIR)/include/wx/unix
699 mkdir $(DISTDIR)/include/wx/protocol
700 cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
701 cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
702 cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
703 cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
704 cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
705 cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
706 cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
708 mkdir $(DISTDIR)/src/common
709 mkdir $(DISTDIR)/src/generic
710 mkdir $(DISTDIR)/src/html
711 mkdir $(DISTDIR)/src/html/bitmaps
712 mkdir $(DISTDIR)/src/$(TOOLKITDIR)
713 mkdir $(DISTDIR)/src/unix
714 mkdir $(DISTDIR)/src/png
715 mkdir $(DISTDIR)/src/jpeg
716 mkdir $(DISTDIR)/src/zlib
717 mkdir $(DISTDIR)/src/iodbc
718 cp $(SRCDIR)/*.in $(DISTDIR)/src
719 cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common
720 cp $(COMMDIR)/*.c $(DISTDIR)/src/common
721 cp $(COMMDIR)/*.inc $(DISTDIR)/src/common
722 cp $(COMMDIR)/*.l $(DISTDIR)/src/common
723 cp $(COMMDIR)/*.h $(DISTDIR)/src/common
724 cp $(COMMDIR)/*.y $(DISTDIR)/src/common
725 cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic
726 cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html
727 cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps
728 cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix
729 cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix
730 cp $(PNGDIR)/*.h $(DISTDIR)/src/png
731 cp $(PNGDIR)/*.c $(DISTDIR)/src/png
732 cp $(PNGDIR)/README $(DISTDIR)/src/png
733 cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
734 cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
735 cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
736 cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
737 cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
738 cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
739 cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc
740 cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc
741 cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc
742 cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc
743 cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc
744 cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc
745 cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc
748 cp $(WXDIR)/wxGTK.spec $(DISTDIR)
749 cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
750 cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk
751 cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk
752 cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk
753 cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk
756 cp $(WXDIR)/wxMOTIF.spec $(DISTDIR)
757 cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
758 cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif
759 cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif
760 mkdir $(DISTDIR)/src/motif/xmcombo
761 cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo
762 cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo
763 cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo
766 cp $(WXDIR)/wxWINE.spec $(DISTDIR)
767 cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
768 cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
769 cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
770 cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
771 cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
772 cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw
773 cp $(MSWDIR)/*.c $(DISTDIR)/src/msw
774 cp $(MSWDIR)/*.def $(DISTDIR)/src/msw
775 mkdir $(DISTDIR)/src/msw/ole
776 cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole
779 mkdir $(DISTDIR)/samples
780 cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples
781 mkdir $(DISTDIR)/samples/bombs
782 cp $(SAMPDIR)/bombs/Makefile.in $(DISTDIR)/samples/bombs
783 cp $(SAMPDIR)/bombs/makefile.unx $(DISTDIR)/samples/bombs
784 cp $(SAMPDIR)/bombs/*.cpp $(DISTDIR)/samples/bombs
785 cp $(SAMPDIR)/bombs/*.h $(DISTDIR)/samples/bombs
786 cp $(SAMPDIR)/bombs/*.xpm $(DISTDIR)/samples/bombs
787 cp $(SAMPDIR)/bombs/readme.txt $(DISTDIR)/samples/bombs
788 mkdir $(DISTDIR)/samples/caret
789 cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret
790 cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret
791 cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret
792 cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret
793 mkdir $(DISTDIR)/samples/config
794 cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config
795 cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config
796 cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config
797 mkdir $(DISTDIR)/samples/controls
798 mkdir $(DISTDIR)/samples/controls/icons
799 cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls
800 cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls
801 cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls
802 cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls
803 cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons
804 mkdir $(DISTDIR)/samples/checklst
805 cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst
806 cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst
807 cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst
808 cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst
809 mkdir $(DISTDIR)/samples/printing
810 cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing
811 cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing
812 cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing
813 cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing
814 cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing
815 cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing
816 mkdir $(DISTDIR)/samples/db
817 cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db
818 cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db
819 cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db
820 cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db
821 cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db
822 mkdir $(DISTDIR)/samples/dialogs
823 cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs
824 cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs
825 cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs
826 cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs
827 cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs
828 mkdir $(DISTDIR)/samples/dnd
829 cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd
830 cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd
831 cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd
832 cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd
833 cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd
834 cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd
835 cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd
836 mkdir $(DISTDIR)/samples/docview
837 cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview
838 cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview
839 cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview
840 cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview
841 mkdir $(DISTDIR)/samples/docvwmdi
842 cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi
843 cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi
844 cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi
845 mkdir $(DISTDIR)/samples/drawing
846 cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing
847 cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing
848 cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing
849 mkdir $(DISTDIR)/samples/dynamic
850 cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic
851 cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic
852 cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic
853 mkdir $(DISTDIR)/samples/forty
854 cp $(SAMPDIR)/forty/Makefile.in $(DISTDIR)/samples/forty
855 cp $(SAMPDIR)/forty/*.cpp $(DISTDIR)/samples/forty
856 cp $(SAMPDIR)/forty/*.xpm $(DISTDIR)/samples/forty
857 cp $(SAMPDIR)/forty/*.xbm $(DISTDIR)/samples/forty
858 mkdir $(DISTDIR)/samples/fractal
859 cp $(SAMPDIR)/fractal/Makefile.in $(DISTDIR)/samples/fractal
860 cp $(SAMPDIR)/fractal/*.cpp $(DISTDIR)/samples/fractal
861 mkdir $(DISTDIR)/samples/html
862 cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html
863 mkdir $(DISTDIR)/samples/html/about
864 cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about
865 cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about
866 mkdir $(DISTDIR)/samples/html/about/data
867 cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data
868 cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data
869 mkdir $(DISTDIR)/samples/html/help
870 cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help
871 cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help
872 mkdir $(DISTDIR)/samples/html/help/helpfiles
873 cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles
874 mkdir $(DISTDIR)/samples/html/helpview
875 cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview
876 cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview
877 cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview
878 mkdir $(DISTDIR)/samples/html/printing
879 cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing
880 cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing
881 cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing
882 mkdir $(DISTDIR)/samples/html/test
883 cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test
884 cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test
885 cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test
886 cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test
887 cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test
888 cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test
889 mkdir $(DISTDIR)/samples/html/virtual
890 cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual
891 cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual
892 cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual
893 mkdir $(DISTDIR)/samples/html/widget
894 cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget
895 cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget
896 cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget
897 mkdir $(DISTDIR)/samples/html/zip
898 cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip
899 cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip
900 cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip
901 cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip
902 mkdir $(DISTDIR)/samples/image
903 cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image
904 cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image
905 cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image
906 mkdir $(DISTDIR)/samples/internat
907 mkdir $(DISTDIR)/samples/internat/de
908 mkdir $(DISTDIR)/samples/internat/fr
909 cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat
910 cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat
911 cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat
912 cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat
913 cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat
914 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
915 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
916 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
917 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
918 mkdir $(DISTDIR)/samples/layout
919 cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout
920 cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout
921 cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout
922 mkdir $(DISTDIR)/samples/listctrl
923 cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl
924 cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl
925 cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl
926 cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl
927 mkdir $(DISTDIR)/samples/listctrl/bitmaps
928 cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps
929 mkdir $(DISTDIR)/samples/mdi
930 cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi
931 cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi
932 cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi
933 cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi
934 mkdir $(DISTDIR)/samples/mdi/bitmaps
935 cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps
936 mkdir $(DISTDIR)/samples/minifram
937 cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram
938 cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram
939 cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram
940 cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram
941 mkdir $(DISTDIR)/samples/minifram/bitmaps
942 cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps
943 mkdir $(DISTDIR)/samples/minimal
944 cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal
945 cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal
946 cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal
947 mkdir $(DISTDIR)/samples/nettest
948 cp $(SAMPDIR)/nettest/Makefile.in $(DISTDIR)/samples/nettest
949 cp $(SAMPDIR)/nettest/*.cpp $(DISTDIR)/samples/nettest
950 mkdir $(DISTDIR)/samples/newgrid
951 cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid
952 cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid
953 cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid
954 mkdir $(DISTDIR)/samples/notebook
955 cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook
956 cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook
957 cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook
958 mkdir $(DISTDIR)/samples/png
959 cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png
960 cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
961 cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
962 cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
963 mkdir $(DISTDIR)/samples/resource
964 cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
965 cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
966 cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
967 cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
968 mkdir $(DISTDIR)/samples/richedit
969 cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
970 cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
971 cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
972 cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
973 cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
974 cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
975 mkdir $(DISTDIR)/samples/proplist
976 cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
977 cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
978 cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist
979 mkdir $(DISTDIR)/samples/propsize
980 cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize
981 cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize
982 cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize
983 mkdir $(DISTDIR)/samples/sashtest
984 cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest
985 cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest
986 cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest
987 mkdir $(DISTDIR)/samples/scroll
988 cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll
989 cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll
990 mkdir $(DISTDIR)/samples/scrollsub
991 cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub
992 cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub
993 mkdir $(DISTDIR)/samples/splitter
994 cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter
995 cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter
996 mkdir $(DISTDIR)/samples/text
997 cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text
998 cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text
999 cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text
1000 mkdir $(DISTDIR)/samples/thread
1001 cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread
1002 cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread
1003 mkdir $(DISTDIR)/samples/toolbar
1004 cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar
1005 cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar
1006 cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar
1007 mkdir $(DISTDIR)/samples/toolbar/bitmaps
1008 cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps
1009 mkdir $(DISTDIR)/samples/treectrl
1010 cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl
1011 cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl
1012 cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl
1013 cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl
1014 mkdir $(DISTDIR)/samples/typetest
1015 cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest
1016 cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest
1017 cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest
1018 cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest
1019 mkdir $(DISTDIR)/samples/validate
1020 cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate
1021 cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate
1022 cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate
1023 cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate
1024 mkdir $(DISTDIR)/samples/wizard
1025 cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard
1026 cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard
1027 cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard
1028 mkdir $(DISTDIR)/samples/wxpoem
1029 cp $(SAMPDIR)/wxpoem/Makefile.in $(DISTDIR)/samples/wxpoem
1030 cp $(SAMPDIR)/wxpoem/*.cpp $(DISTDIR)/samples/wxpoem
1031 cp $(SAMPDIR)/wxpoem/*.xpm $(DISTDIR)/samples/wxpoem
1032 cp $(SAMPDIR)/wxpoem/*.dat $(DISTDIR)/samples/wxpoem
1033 cp $(SAMPDIR)/wxpoem/*.txt $(DISTDIR)/samples/wxpoem
1034 mkdir $(DISTDIR)/samples/wxsocket
1035 cp $(SAMPDIR)/wxsocket/Makefile.in $(DISTDIR)/samples/wxsocket
1036 cp $(SAMPDIR)/wxsocket/*.cpp $(DISTDIR)/samples/wxsocket
1037 cp $(SAMPDIR)/wxsocket/*.xpm $(DISTDIR)/samples/wxsocket
1040 mkdir $(DISTDIR)/utils
1041 cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils
1043 mkdir $(DISTDIR)/utils/wxMMedia2
1044 mkdir $(DISTDIR)/utils/wxMMedia2/lib
1045 mkdir $(DISTDIR)/utils/wxMMedia2/sample
1046 cp $(UTILSDIR)/wxMMedia2/Makefile.in $(DISTDIR)/utils/wxMMedia2
1047 cp $(UTILSDIR)/wxMMedia2/lib/Makefile.in $(DISTDIR)/utils/wxMMedia2/lib
1048 cp $(UTILSDIR)/wxMMedia2/lib/*.h $(DISTDIR)/utils/wxMMedia2/lib
1049 cp $(UTILSDIR)/wxMMedia2/lib/*.cpp $(DISTDIR)/utils/wxMMedia2/lib
1050 cp $(UTILSDIR)/wxMMedia2/lib/*.def $(DISTDIR)/utils/wxMMedia2/lib
1051 cp $(UTILSDIR)/wxMMedia2/sample/Makefile.in $(DISTDIR)/utils/wxMMedia2/sample
1052 cp $(UTILSDIR)/wxMMedia2/sample/*.cpp $(DISTDIR)/utils/wxMMedia2/sample
1054 mkdir $(DISTDIR)/utils/glcanvas
1055 mkdir $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1056 cp $(UTILSDIR)/glcanvas/Makefile.in $(DISTDIR)/utils/glcanvas
1057 cp $(UTILSDIR)/glcanvas/docs/notes.txt $(DISTDIR)/utils/glcanvas/NOTES.txt
1058 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/Makefile.in $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1059 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.h $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1060 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.cpp $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1062 mkdir $(DISTDIR)/utils/ogl
1063 mkdir $(DISTDIR)/utils/ogl/src
1064 cp $(UTILSDIR)/ogl/Makefile.in $(DISTDIR)/utils/ogl
1065 cp $(UTILSDIR)/ogl/src/Makefile.in $(DISTDIR)/utils/ogl/src
1066 cp $(UTILSDIR)/ogl/src/*.h $(DISTDIR)/utils/ogl/src
1067 cp $(UTILSDIR)/ogl/src/*.cpp $(DISTDIR)/utils/ogl/src
1070 mkdir $(DISTDIR)/misc
1071 mkdir $(DISTDIR)/misc/afm
1072 cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm
1073 mkdir $(DISTDIR)/misc/gs_afm
1074 cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm
1076 dist: ALL_DIST @GUIDIST@ SAMPLES_DIST UTILS_DIST MISC_DIST
1077 cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
1078 mv _dist_dir/wx$(TOOLKIT)/samples _dist_dir/wx$(TOOLKIT)/wxSamples
1079 cd _dist_dir/wx$(TOOLKIT); tar ch wxSamples | gzip -f9 > $(WXSAMPLES); mv $(WXSAMPLES) ../..