Removing obsolete ditrib files.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9165 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b15a4a4a26
commit
2201e9b300
@ -1,376 +0,0 @@
|
||||
wxPython README
|
||||
---------------
|
||||
|
||||
Welcome to the wonderful world of wxPython!
|
||||
|
||||
Once you have installed the wxPython extension module, you can try it
|
||||
out by going to the [install dir]\wxPython\demo directory and typing:
|
||||
|
||||
python demo.py
|
||||
|
||||
There are also some other sample files there for you to play with and
|
||||
learn from.
|
||||
|
||||
If you selected to install the documentation then point your browser
|
||||
to [install dir]\wxPython\docs\index.htm and you will then be looking
|
||||
at the docs for wxWindows. For the most part you can use the C++ docs
|
||||
as most classes and methods are used identically. Where there are
|
||||
differences they are documented with a "wxPython Note."
|
||||
|
||||
On Win32 systems the binary self-installer creates a program group on
|
||||
the Start Menu that contains a link to running the demo and a link to
|
||||
the help file. To help you save disk space I'm now using Microsoft's
|
||||
HTML Help format. If your system doesn't know what to do with the help
|
||||
file, you can install the HTML Help Viewer as part of IE 4+, NT
|
||||
Service Pack 4+, or the HTML Workshop at
|
||||
|
||||
http://msdn.microsoft.com/workshop/author/htmlhelp/download.asp.
|
||||
|
||||
|
||||
|
||||
Getting Help
|
||||
------------
|
||||
|
||||
Since wxPython is a blending of multiple technologies, help comes from
|
||||
multiple sources. See the http://alldunn.com/wxPython for details on
|
||||
various sources of help, but probably the best source is the
|
||||
wxPython-users mail list. You can view the archive or subscribe by
|
||||
going to
|
||||
|
||||
http://starship.python.net/mailman/listinfo/wxpython-users
|
||||
|
||||
Or you can send mail directly to the list using this address:
|
||||
|
||||
wxpython-users@starship.python.net
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
What's new in 2.1b2
|
||||
--------------------
|
||||
|
||||
Added the missing wxWindow.GetUpdateRegion() method.
|
||||
|
||||
Made a new change in SWIG (update your patches everybody) that
|
||||
provides a fix for global shadow objects that get an exception in
|
||||
their __del__ when their extension module has already been deleted.
|
||||
It was only a 1 line change in .../SWIG/Modules/pycpp.cxx at about
|
||||
line 496 if you want to do it by hand.
|
||||
|
||||
It is now possible to run through MainLoop more than once in any one
|
||||
process. The cleanup that used to happen as MainLoop completed (and
|
||||
prevented it from running again) has been delayed until the wxc module
|
||||
is being unloaded by Python.
|
||||
|
||||
I fixed a bunch of stuff in the C++ version of wxGrid so it wouldn't
|
||||
make wxPython look bad.
|
||||
|
||||
wxWindow.PopupMenu() now takes a wxPoint instead of x,y. Added
|
||||
wxWindow.PopupMenuXY to be consistent with some other methods.
|
||||
|
||||
Added wxGrid.SetEditInPlace and wxGrid.GetEditInPlace.
|
||||
|
||||
You can now provide your own app.MainLoop method. See
|
||||
wxPython/demo/demoMainLoop.py for an example and some explaination.
|
||||
|
||||
Got the in-place-edit for the wxTreeCtrl fixed and added some demo
|
||||
code to show how to use it.
|
||||
|
||||
Put the wxIcon constructor back in for GTK as it now has one that
|
||||
matches MSW's.
|
||||
|
||||
Added wxGrid.GetCells
|
||||
|
||||
Added wxSystemSettings static methods as functions with names like
|
||||
wxSystemSettings_GetSystemColour.
|
||||
|
||||
Removed wxPyMenu since using menu callbacks have been depreciated in
|
||||
wxWindows. Use wxMenu and events instead.
|
||||
|
||||
Added alternate wxBitmap constructor (for MSW only) as
|
||||
wxBitmapFromData(data, type, width, height, depth = 1)
|
||||
|
||||
Added a helper function named wxPyTypeCast that can convert shadow
|
||||
objects of one type into shadow objects of another type. (Like doing
|
||||
a down-cast.) See the implementation in wx.py for some docs.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
What's new in 2.1b1
|
||||
--------------------
|
||||
Fixed wxComboBox.SetSelection so that it actually sets the selected
|
||||
item. (Actually just removed it from wxPython and let it default to
|
||||
wxChoice.SetSelection which was already doing the right thing.)
|
||||
|
||||
Added the Printing Framework.
|
||||
|
||||
Switched back to using the wxWindows DLL for the pre-built Win32
|
||||
version. The problem was needing to reinitialize static class info
|
||||
data after loading each extension module.
|
||||
|
||||
Lots of little tweaks and additions to reflect changes to various
|
||||
wxWindows classes.
|
||||
|
||||
Fixed a bug with attaching objects to tree items. Actually was a
|
||||
symptom of a larger problem with not obtaining the interpreter lock
|
||||
when doing any Py_DECREFs.
|
||||
|
||||
wxSizer and friends. Sizers are layout tools that manage a colection
|
||||
of windows and sizers. Different types of sizers apply different
|
||||
types of layout algorithms. You saw it here first! These classes are
|
||||
not even in the wxWindows C++ library yet!
|
||||
|
||||
|
||||
|
||||
What's new in 2.0b9
|
||||
-------------------
|
||||
Bug fix for ListCtrl in test4.py (Was a missing file... DSM!)
|
||||
|
||||
Bug fix for occassional GPF on Win32 systems upon termination of a
|
||||
wxPython application.
|
||||
|
||||
Added wxListBox.GetSelections returning selections as a Tuple.
|
||||
|
||||
Added a wxTreeItemData that is able to hold any Python object and be
|
||||
associated with items in a wxTreeCtrl. Added test pytree.py to show
|
||||
this feature off.
|
||||
|
||||
Added wxSafeYield function.
|
||||
|
||||
OpenGL Canvas can be optionally compiled in to wxPython.
|
||||
|
||||
Awesome new Demo Framework for showing off wxPython and for learning
|
||||
how it all works.
|
||||
|
||||
The pre-built Win32 version is no longer distributing the wxWindows
|
||||
DLL. It is statically linked with the wxWindows library instead.
|
||||
|
||||
Added a couple missing items from the docs.
|
||||
|
||||
Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
|
||||
wxGIFHandler and wxBMPHandler.
|
||||
|
||||
Added new methods to wxTextCtrl.
|
||||
|
||||
Fixed some problems with how SWIG was wrapping some wxTreeCtrl
|
||||
methods.
|
||||
|
||||
|
||||
|
||||
What's new in 2.0b8
|
||||
-------------------
|
||||
Support for using Python threads in wxPython apps.
|
||||
|
||||
Several missing methods from various classes.
|
||||
|
||||
Various bug fixes.
|
||||
|
||||
|
||||
|
||||
What's new in 2.0b7
|
||||
-------------------
|
||||
Added DLG_PNT and DLG_SZE convienience methods to wxWindow class.
|
||||
|
||||
Added missing constructor and other methods for wxMenuItem.
|
||||
|
||||
|
||||
|
||||
What's new in 2.0b6
|
||||
-------------------
|
||||
Just a quickie update to fix the self-installer to be compatible with
|
||||
Python 1.5.2b2's Registry settings.
|
||||
|
||||
|
||||
What's new in 2.0b5
|
||||
-------------------
|
||||
Well obviously the numbering scheme has changed. I did this to
|
||||
reflect the fact that this truly is the second major revision of
|
||||
wxPython, (well the third actually if you count the one I did for
|
||||
wxWindows 1.68 and then threw away...) and also that it is associated
|
||||
with the 2.0 version of wxWindows.
|
||||
|
||||
I have finally started documenting wxPython. There are several pages
|
||||
in the wxWindows documentation tree specifically about wxPython, and I
|
||||
have added notes within the class references about where and how wxPython
|
||||
diverges from wxWindows.
|
||||
|
||||
Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a
|
||||
window handle. If you can get the window handle into the python code,
|
||||
it should just work... More news on this later.
|
||||
|
||||
Added wxImageList, wxToolTip.
|
||||
|
||||
Re-enabled wxConfig.DeleteAll() since it is reportedly fixed for the
|
||||
wxRegConfig class.
|
||||
|
||||
As usual, some bug fixes, tweaks, etc.
|
||||
|
||||
|
||||
|
||||
What's new in 0.5.3
|
||||
-------------------
|
||||
Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
|
||||
|
||||
Various cleanup, tweaks, minor additions, etc. to maintain
|
||||
compatibility with the current wxWindows.
|
||||
|
||||
|
||||
|
||||
What's new in 0.5.0
|
||||
-------------------
|
||||
Changed the import semantics from "from wxPython import *" to "from
|
||||
wxPython.wx import *" This is for people who are worried about
|
||||
namespace pollution, they can use "from wxPython import wx" and then
|
||||
prefix all the wxPython identifiers with "wx."
|
||||
|
||||
Added wxTaskbarIcon for wxMSW.
|
||||
|
||||
Made the events work for wxGrid.
|
||||
|
||||
Added wxConfig.
|
||||
|
||||
Added wxMiniFrame for wxGTK.
|
||||
|
||||
Changed many of the args and return values that were pointers to gdi
|
||||
objects to references to reflect changes in the wxWindows API.
|
||||
|
||||
Other assorted fixes and additions.
|
||||
|
||||
|
||||
|
||||
|
||||
What's new in 0.4.2
|
||||
-------------------
|
||||
|
||||
wxPython on wxGTK works!!! Both dynamic and static on Linux and
|
||||
static on Solaris have been tested. Many thanks go to Harm
|
||||
<H.v.d.Heijden@phys.tue.nl> for his astute detective work on tracking
|
||||
down a nasty DECREF bug. Okay so I have to confess that it was just a
|
||||
DSM (Dumb Stupid Mistake) on my part but it was nasty none the less
|
||||
because the behavior was so different on different platforms.
|
||||
|
||||
The dynamicly loaded module on Solaris is still segfaulting, so it
|
||||
must have been a different issue all along...
|
||||
|
||||
|
||||
|
||||
What's New in 0.4
|
||||
-----------------
|
||||
|
||||
1. Worked on wxGTK compatibility. It is partially working. On a
|
||||
Solaris/Sparc box wxPython is working but only when it is statically
|
||||
linked with the Python interpreter. When built as a dyamically loaded
|
||||
extension module, things start acting weirdly and it soon seg-faults.
|
||||
And on Linux both the statically linked and the dynamically linked
|
||||
version segfault shortly after starting up.
|
||||
|
||||
2. Added Toolbar, StatusBar and SplitterWindow classes.
|
||||
|
||||
3. Varioius bug fixes, enhancements, etc.
|
||||
|
||||
----------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
Build Instructions
|
||||
------------------
|
||||
I used SWIG (http://www.swig.org) to create the source code for the
|
||||
extension module. This enabled me to only have to deal with a small
|
||||
amount of code and only have to bother with the exceptional issues.
|
||||
SWIG takes care of the rest and generates all the repetative code for
|
||||
me. You don't need SWIG to build the extension module as all the
|
||||
generated C++ code is included under the src directory.
|
||||
|
||||
I added a few minor features to SWIG to control some of the code
|
||||
generation. If you want to playaround with this the patches are in
|
||||
wxPython/SWIG.patches and they should be applied to the 1.1p5 version
|
||||
of SWIG. These new patches are documented at
|
||||
http://starship.skyport.net/crew/robind/#swig, and they should also
|
||||
end up in the 1.2 version of SWIG.
|
||||
|
||||
wxPython is organized as a Python package. This means that the
|
||||
directory containing the results of the build process should be a
|
||||
subdirectory of a directory on the PYTHONPATH. (And preferably should
|
||||
be named wxPython.) You can control where the build process will dump
|
||||
wxPython by setting the TARGETDIR makefile variable. The default is
|
||||
$(WXWIN)/utils/wxPython, where this README.txt is located. If you
|
||||
leave it here then you should add $(WXWIN)/utils to your PYTHONPATH.
|
||||
However, you may prefer to use something that is already on your
|
||||
PYTHONPATH, such as the site-packages directory on Unix systems.
|
||||
|
||||
|
||||
Win32
|
||||
-----
|
||||
|
||||
1. Build wxWindows with wxUSE_RESOURCE_LOADING_IN_MSW set to 1 in
|
||||
include/wx/msw/setup.h so icons can be loaded dynamically. While
|
||||
there, make sure wxUSE_OWNER_DRAWN is also set to 1.
|
||||
|
||||
2. Change into the $(WXWIN)/utils/wxPython/src directory.
|
||||
|
||||
3. Edit makefile.vc and specify where your python installation is at.
|
||||
You may also want to fiddle with the TARGETDIR variable as described
|
||||
above.
|
||||
|
||||
4. Run nmake -f makefile.vc
|
||||
|
||||
5. If it builds successfully, congratulations! Move on to the next
|
||||
step. If not then you can try mailing me for help. Also, I will
|
||||
always have a pre-built win32 version of this extension module at
|
||||
http://alldunn.com/wxPython/.
|
||||
|
||||
6. Change to the $(WXWIN)/utils/wxPython/demo directory.
|
||||
|
||||
7. Try executing the demo program. For example:
|
||||
|
||||
python demo.py
|
||||
|
||||
To run it without requiring a console, you can use the pythonw.exe
|
||||
version of Python either from the command line or from a shortcut.
|
||||
|
||||
|
||||
|
||||
Unix
|
||||
----
|
||||
0. I configure wxWindows like this, YMMV:
|
||||
|
||||
./configure --with-gtk --disable-shared --enable-threads --disable-unicode
|
||||
|
||||
1. Change into the $(WXWIN)/utils/wxPython/src directory.
|
||||
|
||||
2. Edit Setup.in and ensure that the flags, directories, and toolkit
|
||||
options are correct. See the above commentary about TARGETDIR. There
|
||||
are a few sample Setup.in.[platform] files provided.
|
||||
|
||||
[I've written a Setup which should work in almost all Unix systems,
|
||||
so that the steps 1 and 2 don't have to be done. Robert Roebling. ]
|
||||
|
||||
3. Run this command to generate a makefile:
|
||||
|
||||
make -f Makefile.pre.in boot
|
||||
|
||||
4. Run these commands to build and then install the wxPython extension
|
||||
module:
|
||||
|
||||
make
|
||||
|
||||
4b. Log in as root. [Robert Roebling]
|
||||
|
||||
make install
|
||||
|
||||
4c. Log out from root. [Robert Roebling]
|
||||
|
||||
|
||||
5. Change to the $(WXWIN)/utils/wxPython/tests directory.
|
||||
|
||||
6. Try executing the demo program. For example:
|
||||
|
||||
python demo.py
|
||||
|
||||
----------------
|
||||
Robin Dunn
|
||||
robin@alldunn.com
|
||||
|
||||
|
||||
|
@ -1,47 +0,0 @@
|
||||
# This file gives the details of what is needed to build this extension
|
||||
# module so the Makefile can be created.
|
||||
|
||||
###
|
||||
### This file should be created by configure. Currently it is tweaked by hand.
|
||||
###
|
||||
|
||||
*shared*
|
||||
|
||||
CCC=g++
|
||||
WXWIN=~/wxWindows
|
||||
GENCODEDIR=gtk
|
||||
srcdir=$(GENCODEDIR)
|
||||
WX_CONFIG_CFLAGS=`wx-config --cflags` `gtk-config --cflags`
|
||||
WX_CONFIG_LIBS=`wx-config --libs`
|
||||
|
||||
# Depending on how your Python was built, you may have to set this
|
||||
# value to use the C++ driver to link with instead of the default
|
||||
# C driver. For example:
|
||||
MY_LDSHARED=$(CCC) -shared $(WX_CONFIG_LIBS)
|
||||
|
||||
# Same as above, but for statically linking Python and wxPython together,
|
||||
# in other words, if you comment out the *shared* above. If this is the
|
||||
# case then you should ensure that the main() function is Python's, not
|
||||
# wxWindows'. You can rebuild $(WXWIN)/src/gtk/app.cpp with NOMAIN defined
|
||||
# to force this...
|
||||
MY_LINKCC=$(CCC)
|
||||
|
||||
|
||||
## Pick one of these, or set your own. This is where the
|
||||
## wxPython module should be installed. It should be a
|
||||
## subdirectory named wxPython.
|
||||
#TARGETDIR=..
|
||||
#TARGETDIR=$(BINLIBDEST)/site-packages/wxPython
|
||||
TARGETDIR=$(BINLIBDEST)/wxPython
|
||||
|
||||
wxc wx.cpp helpers.cpp windows.cpp events.cpp misc.cpp gdi.cpp \
|
||||
mdi.cpp controls.cpp controls2.cpp windows2.cpp cmndlgs.cpp \
|
||||
frames.cpp stattool.cpp windows3.cpp image.cpp misc2.cpp \
|
||||
utils.cpp printfw.cpp libpy.c libptr.c \
|
||||
## comment out the next line to disable wxGLCanvas
|
||||
##_glcanvas.cpp glcanvas.cpp -DWITH_GLCANVAS -lGL -lGLU \
|
||||
-I. $(WX_CONFIG_CFLAGS) -I/usr/local/lib/glib/include \
|
||||
-DSWIG_GLOBAL -DWXP_WITH_THREAD $(SEPARATE) -Xlinker $(WX_CONFIG_LIBS)
|
||||
|
||||
|
||||
|
@ -1,804 +0,0 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# This script is creates a dir tree in ~/wxgtk_dist which
|
||||
# can then be packed into an archive
|
||||
|
||||
echo --------
|
||||
echo This script will copy the wxGTK release files into ~/wxgtk_dist
|
||||
echo --------
|
||||
echo
|
||||
|
||||
mkdir ~/wxgtk_dist
|
||||
mkdir ~/wxgtk_dist/wxGTK
|
||||
|
||||
echo Base dir..
|
||||
|
||||
cd ../..
|
||||
cp wxGTK.spec ~/wxgtk_dist/wxGTK
|
||||
cp configure ~/wxgtk_dist/wxGTK
|
||||
cp config.sub ~/wxgtk_dist/wxGTK
|
||||
cp config.guess ~/wxgtk_dist/wxGTK
|
||||
cp install-sh ~/wxgtk_dist/wxGTK
|
||||
cp mkinstalldirs ~/wxgtk_dist/wxGTK
|
||||
cp wx-config.in ~/wxgtk_dist/wxGTK
|
||||
cp setup.h.in ~/wxgtk_dist/wxGTK
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK
|
||||
|
||||
echo Docs..
|
||||
|
||||
cd docs/gtk
|
||||
cp COPYING.LIB ~/wxgtk_dist/wxGTK
|
||||
cp install.txt ~/wxgtk_dist/wxGTK/INSTALL.txt
|
||||
cp changes.txt ~/wxgtk_dist/wxGTK/CHANGES.txt
|
||||
cp licence.txt ~/wxgtk_dist/wxGTK/LICENCE.txt
|
||||
cp readme.txt ~/wxgtk_dist/wxGTK/README.txt
|
||||
cp todo.txt ~/wxgtk_dist/wxGTK/TODO.txt
|
||||
cd ..
|
||||
cp symbols.txt ~/wxgtk_dist/wxGTK/SYMBOLS.txt
|
||||
cd ..
|
||||
|
||||
echo Include dir..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include
|
||||
cd include
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx
|
||||
cd wx
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/include/wx
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/generic
|
||||
cd generic
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx/generic
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/include/wx/generic
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/generic
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/generic
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cd html
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/unix
|
||||
cd unix
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx/unix
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/unix
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/unix
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/gtk
|
||||
cd gtk
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx/gtk
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/include/wx/gtk
|
||||
rm ~/wxgtk_dist/wxGTK/include/wx/gtk/setup.h
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/gtk
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/gtk
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/motif
|
||||
cd motif
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/motif
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/motif
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/msw
|
||||
cd msw
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/msw
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/msw
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/protocol
|
||||
cd protocol
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx/protocol
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/protocol
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/protocol
|
||||
cd ..
|
||||
|
||||
cd ../..
|
||||
|
||||
echo Misc dir..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/misc
|
||||
cd misc
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/misc
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/misc
|
||||
mkdir ~/wxgtk_dist/wxGTK/misc/afm
|
||||
cd afm
|
||||
cp *.afm ~/wxgtk_dist/wxGTK/misc/afm
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/misc/afm
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/misc/afm
|
||||
cd ..
|
||||
mkdir ~/wxgtk_dist/wxGTK/misc/gs_afm
|
||||
cd gs_afm
|
||||
cp *.afm ~/wxgtk_dist/wxGTK/misc/gs_afm
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/misc/gs_afm
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/misc/gs_afm
|
||||
cd ../..
|
||||
|
||||
echo Src dir..
|
||||
|
||||
cd src
|
||||
mkdir ~/wxgtk_dist/wxGTK/src
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/src
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/src
|
||||
|
||||
cd gtk
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/gtk
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/src/gtk
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/src/gtk
|
||||
cp *.xbm ~/wxgtk_dist/wxGTK/src/gtk
|
||||
cp *.c ~/wxgtk_dist/wxGTK/src/gtk
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/src/gtk
|
||||
cd ..
|
||||
|
||||
cd msw
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/msw
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/src/msw
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/src/msw
|
||||
cd ..
|
||||
|
||||
cd motif
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/motif
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/src/motif
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/src/motif
|
||||
cd ..
|
||||
|
||||
cd common
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/common
|
||||
cp glob.inc ~/wxgtk_dist/wxGTK/src/common
|
||||
cp lexer.l ~/wxgtk_dist/wxGTK/src/common
|
||||
cp parser.y ~/wxgtk_dist/wxGTK/src/common
|
||||
cp extended.c ~/wxgtk_dist/wxGTK/src/common
|
||||
cp unzip.* ~/wxgtk_dist/wxGTK/src/common
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/src/common
|
||||
cd ..
|
||||
|
||||
cd unix
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/unix
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/src/unix
|
||||
cp *.h ~/wxgtk_dist/wxGTK/src/unix
|
||||
cp *.c ~/wxgtk_dist/wxGTK/src/unix
|
||||
cd ..
|
||||
|
||||
cd html
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/html
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/src/html
|
||||
cp *.h ~/wxgtk_dist/wxGTK/src/html
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/html/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/src/html/bitmaps
|
||||
cd ../..
|
||||
|
||||
cd generic
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/generic
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/src/generic
|
||||
cd ..
|
||||
|
||||
cd iodbc
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/iodbc
|
||||
cp * ~/wxgtk_dist/wxGTK/src/iodbc
|
||||
cd ..
|
||||
|
||||
cd zlib
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/zlib
|
||||
cp * ~/wxgtk_dist/wxGTK/src/zlib
|
||||
cd ..
|
||||
|
||||
cd png
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/png
|
||||
cp * ~/wxgtk_dist/wxGTK/src/png
|
||||
cd ..
|
||||
|
||||
cd jpeg
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/jpeg
|
||||
cp * ~/wxgtk_dist/wxGTK/src/jpeg
|
||||
cd ../..
|
||||
|
||||
echo Utils dir..
|
||||
|
||||
cd utils
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/utils
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/utils
|
||||
|
||||
echo wxGLCanvas..
|
||||
|
||||
cd glcanvas
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas
|
||||
cp ./docs/notes.txt ~/wxgtk_dist/wxGTK/utils/glcanvas/NOTES.txt
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk
|
||||
cp ./gtk/glcanvas.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk
|
||||
cp ./gtk/glcanvas.h ~/wxgtk_dist/wxGTK/utils/glcanvas/gtk
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
|
||||
cd samples/cube
|
||||
cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube
|
||||
cp cube.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube
|
||||
cp cube.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/cube
|
||||
cd ..
|
||||
|
||||
cd isosurf
|
||||
cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf
|
||||
cp isosurf.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf
|
||||
cp isosurf.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf
|
||||
cp isosurf.dat.gz ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/isosurf
|
||||
cd ..
|
||||
|
||||
cd penguin
|
||||
cp Makefile ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp penguin.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp penguin.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp trackball.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp trackball.c ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp lw.h ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp lw.cpp ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cp penguin.lwo ~/wxgtk_dist/wxGTK/utils/glcanvas/samples/penguin
|
||||
cd ../../..
|
||||
|
||||
echo DialogEd..
|
||||
|
||||
cd dialoged/src
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp Makefile ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp dialoged.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp dlghndlr.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp edlist.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp edtree.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp reseditr.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp reswrite.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp symbtabl.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp winprop.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp winstyle.cpp ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp dialoged.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp dlghndlr.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp edlist.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp edtree.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp reseditr.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp symbtabl.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp winprop.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
cp winstyle.h ~/wxgtk_dist/wxGTK/utils/dialoged
|
||||
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/dialoged/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/utils/dialoged/bitmaps
|
||||
cd ../../..
|
||||
|
||||
echo wxPython..
|
||||
|
||||
cd wxPython
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython
|
||||
cp README.txt ~/wxgtk_dist/wxGTK/utils/wxPython
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/src
|
||||
cp ./src/* ~/wxgtk_dist/wxGTK/utils/wxPython/src
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/src/gtk
|
||||
cp ./src/gtk/* ~/wxgtk_dist/wxGTK/utils/wxPython/src/gtk
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/lib
|
||||
cp ./lib/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/lib
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/lib/sizers
|
||||
cp ./lib/sizers/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/lib/sizers
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/demo
|
||||
cp ./demo/README.txt ~/wxgtk_dist/wxGTK/utils/wxPython/demo
|
||||
cp ./demo/*.py ~/wxgtk_dist/wxGTK/utils/wxPython/demo
|
||||
cp ./demo/*.pyc ~/wxgtk_dist/wxGTK/utils/wxPython/demo
|
||||
mkdir ~/wxgtk_dist/wxGTK/utils/wxPython/demo/bitmaps
|
||||
cp ./demo/bitmaps/* ~/wxgtk_dist/wxGTK/utils/wxPython/demo/bitmaps
|
||||
|
||||
cd ../..
|
||||
|
||||
echo Samples dir..
|
||||
|
||||
cd samples
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples
|
||||
|
||||
echo Minimal sample..
|
||||
|
||||
cd minimal
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/minimal
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/minimal
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/minimal
|
||||
cp minimal.cpp ~/wxgtk_dist/wxGTK/samples/minimal
|
||||
cp mondrian.xpm ~/wxgtk_dist/wxGTK/samples/minimal
|
||||
cd ..
|
||||
|
||||
echo Bombs sample..
|
||||
|
||||
cd bombs
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/bombs
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/bombs
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/bombs
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/bombs
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/bombs
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/bombs
|
||||
cd ..
|
||||
|
||||
echo Caret sample..
|
||||
|
||||
cd caret
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/caret
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/caret
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/caret
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/caret
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/caret
|
||||
cd ..
|
||||
|
||||
echo Checklst sample..
|
||||
|
||||
cd checklst
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/checklst
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/checklst
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/checklst
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/checklst
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/checklst
|
||||
cd ..
|
||||
|
||||
echo Config sample..
|
||||
|
||||
cd config
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/config
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/config
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/config
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/config
|
||||
cd ..
|
||||
|
||||
echo Controls sample..
|
||||
|
||||
cd controls
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/controls
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/controls
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/controls
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/controls
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/controls
|
||||
cd icons
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/controls/icons
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/controls/icons
|
||||
cd ../..
|
||||
|
||||
echo Db sample..
|
||||
|
||||
cd db
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/db
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/db
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/db
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/db
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/db
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/db
|
||||
cd ..
|
||||
|
||||
#echo DDE sample..
|
||||
#
|
||||
#cd dde
|
||||
#mkdir ~/wxgtk_dist/wxGTK/samples/dde
|
||||
#cp Makefile.am ~/wxgtk_dist/wxGTK/samples/dde
|
||||
#cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dde
|
||||
#cp *.cpp ~/wxgtk_dist/wxGTK/samples/dde
|
||||
#cp *.h ~/wxgtk_dist/wxGTK/samples/dde
|
||||
#cp *.xpm ~/wxgtk_dist/wxGTK/samples/dde
|
||||
#cd ..
|
||||
#
|
||||
|
||||
echo Dialogs sample..
|
||||
|
||||
cd dialogs
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/dialogs
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/dialogs
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dialogs
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/dialogs
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/dialogs
|
||||
cd ..
|
||||
|
||||
echo DnD sample..
|
||||
|
||||
cd dnd
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/dnd
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/dnd
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dnd
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/dnd
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/dnd
|
||||
cd ..
|
||||
|
||||
echo Docview sample..
|
||||
|
||||
cd docview
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/docview
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/docview
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/docview
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/docview
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/docview
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/docview
|
||||
cd ..
|
||||
|
||||
echo DocvwMDI sample..
|
||||
|
||||
cd docvwmdi
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/docvwmdi
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/docvwmdi
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/docvwmdi
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/docvwmdi
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/docvwmdi
|
||||
cd ..
|
||||
|
||||
echo Dynamic sample..
|
||||
|
||||
cd dynamic
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/dynamic
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/dynamic
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/dynamic
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/dynamic
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/dynamic
|
||||
cd ..
|
||||
|
||||
echo Drawing sample..
|
||||
|
||||
cd drawing
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/drawing
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/drawing
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/drawing
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/drawing
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/drawing
|
||||
cd ..
|
||||
|
||||
echo Forty sample..
|
||||
|
||||
cd forty
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cp *.xbm ~/wxgtk_dist/wxGTK/samples/forty
|
||||
cd ..
|
||||
|
||||
echo Fractal sample..
|
||||
|
||||
cd fractal
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/fractal
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/fractal
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/fractal
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/fractal
|
||||
cd ..
|
||||
|
||||
echo Grid sample..
|
||||
|
||||
cd grid
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/grid
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/grid
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/grid
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/grid
|
||||
cd ..
|
||||
|
||||
echo Help sample..
|
||||
|
||||
cd help
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/help
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/help
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/help
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/help
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/help
|
||||
cd doc
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/help/doc
|
||||
cp * ~/wxgtk_dist/wxGTK/samples/help/doc
|
||||
cd ../..
|
||||
|
||||
echo HTML samples..
|
||||
|
||||
cd html
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html
|
||||
cp Makefile.* ~/wxgtk_dist/wxGTK/samples/html
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/about
|
||||
cp about/Makefile.* ~/wxgtk_dist/wxGTK/samples/html/about
|
||||
cp about/about.* ~/wxgtk_dist/wxGTK/samples/html/about
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/about/data
|
||||
cp about/data/*.* ~/wxgtk_dist/wxGTK/samples/html/about/data
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/help
|
||||
cp help/Makefile.* ~/wxgtk_dist/wxGTK/samples/html/help
|
||||
cp help/help.* ~/wxgtk_dist/wxGTK/samples/html/help
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/help/helpfiles
|
||||
cp help/helpfiles/*.* ~/wxgtk_dist/wxGTK/samples/html/help/helpfiles
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/printing
|
||||
cp printing/*.* ~/wxgtk_dist/wxGTK/samples/html/printing
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/test
|
||||
cp test/*.* ~/wxgtk_dist/wxGTK/samples/html/test
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/virtual
|
||||
cp virtual/*.* ~/wxgtk_dist/wxGTK/samples/html/virtual
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/widget
|
||||
cp widget/*.* ~/wxgtk_dist/wxGTK/samples/html/widget
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/html/zip
|
||||
cp zip/*.* ~/wxgtk_dist/wxGTK/samples/html/zip
|
||||
cd ..
|
||||
|
||||
echo Image sample..
|
||||
|
||||
cd image
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/image
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/image
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/image
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/image
|
||||
cp horse.png ~/wxgtk_dist/wxGTK/samples/image
|
||||
cp horse.gif ~/wxgtk_dist/wxGTK/samples/image
|
||||
cp horse.jpg ~/wxgtk_dist/wxGTK/samples/image
|
||||
cd ..
|
||||
|
||||
echo Internat sample..
|
||||
|
||||
cd internat
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cp readme.txt ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cp wxstd.po ~/wxgtk_dist/wxGTK/samples/internat
|
||||
cd fr
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/internat/fr
|
||||
cp *.?o ~/wxgtk_dist/wxGTK/samples/internat/fr
|
||||
cd ../..
|
||||
|
||||
echo Layout sample..
|
||||
|
||||
cd layout
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/layout
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/layout
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/layout
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/layout
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/layout
|
||||
cd ..
|
||||
|
||||
echo Listctrl sample..
|
||||
|
||||
cd listctrl
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/listctrl
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/listctrl
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/listctrl
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/listctrl
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/listctrl
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/listctrl
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/listctrl/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/listctrl/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo MDI sample..
|
||||
|
||||
cd mdi
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/mdi
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/mdi
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/mdi
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/mdi
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/mdi
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/mdi
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/mdi/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/mdi/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo Memcheck sample..
|
||||
|
||||
cd memcheck
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/memcheck
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/memcheck
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/memcheck
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/memcheck
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/memcheck
|
||||
cd ..
|
||||
|
||||
echo Minifram sample..
|
||||
|
||||
cd minifram
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/minifram
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/minifram
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/minifram
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/minifram
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/minifram
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/minifram
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/minifram/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/minifram/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo Notebook sample..
|
||||
|
||||
cd notebook
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/notebook
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/notebook
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/notebook
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/notebook
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/notebook
|
||||
cd ..
|
||||
|
||||
echo PNG sample..
|
||||
|
||||
cd png
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/png
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/png
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/png
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/png
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/png
|
||||
cp *.png ~/wxgtk_dist/wxGTK/samples/png
|
||||
cd ..
|
||||
|
||||
echo Printing sample..
|
||||
|
||||
cd printing
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/printing
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/printing
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/printing
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/printing
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/printing
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/printing
|
||||
cd ..
|
||||
|
||||
echo Proplist sample..
|
||||
|
||||
cd proplist
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/proplist
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/proplist
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/proplist
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/proplist
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/proplist
|
||||
cd ..
|
||||
|
||||
echo Resource sample..
|
||||
|
||||
cd resource
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/resource
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/resource
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/resource
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/resource
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/resource
|
||||
cp *.wxr ~/wxgtk_dist/wxGTK/samples/resource
|
||||
cd ..
|
||||
|
||||
echo Sashtest sample..
|
||||
|
||||
cd sashtest
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/sashtest
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/sashtest
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/sashtest
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/sashtest
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/sashtest
|
||||
cd ..
|
||||
|
||||
echo Scroll sample..
|
||||
|
||||
cd sashtest
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/scroll
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/scroll
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/scroll
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/scroll
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/scroll
|
||||
cd ..
|
||||
|
||||
echo Splitter sample..
|
||||
|
||||
cd splitter
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/splitter
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/splitter
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/splitter
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/splitter
|
||||
cd ..
|
||||
|
||||
echo Text sample..
|
||||
|
||||
cd text
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/text
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/text
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/text
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/text
|
||||
cd ..
|
||||
|
||||
echo Thread sample..
|
||||
|
||||
cd thread
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/thread
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/thread
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/thread
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/thread
|
||||
cd ..
|
||||
|
||||
echo Toolbar sample..
|
||||
|
||||
cd toolbar
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/toolbar
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/toolbar
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/toolbar
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/toolbar
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/toolbar
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/toolbar
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/toolbar/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/toolbar/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo TreeCtrl sample..
|
||||
|
||||
cd treectrl
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/treectrl
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/treectrl
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/treectrl
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/treectrl
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/treectrl
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/treectrl
|
||||
cd ..
|
||||
|
||||
echo typetest sample..
|
||||
|
||||
cd typetest
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/typetest
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/typetest
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/typetest
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/typetest
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/typetest
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/typetest
|
||||
cd ..
|
||||
|
||||
echo Validate sample..
|
||||
|
||||
cd validate
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/validate
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/validate
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/validate
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/validate
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/validate
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/validate
|
||||
cd ..
|
||||
|
||||
echo wxPoem sample..
|
||||
|
||||
cd wxpoem
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp *.h ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp wxpoem.dat ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp wxpoem.txt ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cp wxpoem.idx ~/wxgtk_dist/wxGTK/samples/wxpoem
|
||||
cd ..
|
||||
|
||||
echo wxSocket sample..
|
||||
|
||||
cd wxsocket
|
||||
mkdir ~/wxgtk_dist/wxGTK/samples/wxsocket
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/samples/wxsocket
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/samples/wxsocket
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/samples/wxsocket
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/samples/wxsocket
|
||||
cd ../..
|
||||
|
||||
echo LOCAL CORRECTCIONS
|
||||
|
||||
cd distrib/gtk
|
||||
cp README.txt ~/wxgtk_dist/wxGTK/utils/wxPython
|
||||
cp Setup ~/wxgtk_dist/wxGTK/utils/wxPython/src
|
||||
|
||||
cd ~/wxgtk_dist
|
||||
tar ch wxGTK | gzip -f9 > wxGTK-2.1.0-b8.tgz
|
@ -1,690 +0,0 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# This script is creates a dir tree in ~/wxmotif_dist which
|
||||
# can then be packed into an archive
|
||||
|
||||
echo --------
|
||||
echo This script will copy the wxMotif release files into ~/wxmotif_dist
|
||||
echo --------
|
||||
echo
|
||||
|
||||
mkdir ~/wxmotif_dist
|
||||
mkdir ~/wxmotif_dist/wxMotif
|
||||
|
||||
echo Base dir..
|
||||
|
||||
cd ../..
|
||||
cp wxMotif.spec ~/wxmotif_dist/wxMotif
|
||||
cp configure ~/wxmotif_dist/wxMotif
|
||||
cp config.sub ~/wxmotif_dist/wxMotif
|
||||
cp config.guess ~/wxmotif_dist/wxMotif
|
||||
cp install-sh ~/wxmotif_dist/wxMotif
|
||||
cp mkinstalldirs ~/wxmotif_dist/wxMotif
|
||||
cp wx-config.in ~/wxmotif_dist/wxMotif
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif
|
||||
|
||||
echo Docs..
|
||||
|
||||
cd docs/motif2
|
||||
cp COPYING.LIB ~/wxmotif_dist/wxMotif
|
||||
cp install.txt ~/wxmotif_dist/wxMotif/INSTALL.txt
|
||||
cp changes.txt ~/wxmotif_dist/wxMotif/CHANGES.txt
|
||||
cp licence.txt ~/wxmotif_dist/wxMotif/LICENCE.txt
|
||||
cp readme.txt ~/wxmotif_dist/wxMotif/README.txt
|
||||
cp todo.txt ~/wxmotif_dist/wxMotif/TODO.txt
|
||||
cd ..
|
||||
cp symbols.txt ~/wxmotif_dist/wxMotif/SYMBOLS.txt
|
||||
cd ..
|
||||
|
||||
echo Include dir..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include
|
||||
cd include
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx
|
||||
cd wx
|
||||
cp *.h ~/wxmotif_dist/wxMotif/include/wx
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/include/wx
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/generic
|
||||
cd generic
|
||||
cp *.h ~/wxmotif_dist/wxMotif/include/wx/generic
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/include/wx/generic
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/generic
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/generic
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/html
|
||||
cd html
|
||||
cp *.h ~/wxmotif_dist/wxMotif/include/wx/html
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/html
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/html
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/unix
|
||||
cd unix
|
||||
cp *.h ~/wxmotif_dist/wxMotif/include/wx/unix
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/unix
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/unix
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/msw
|
||||
cd msw
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/msw
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/msw
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/motif
|
||||
cd motif
|
||||
cp *.h ~/wxmotif_dist/wxMotif/include/wx/motif
|
||||
rm ~/wxmotif_dist/wxMotif/include/wx/motif/setup.h
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/motif
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/motif
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/gtk
|
||||
cd gtk
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/gtk
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/gtk
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/include/wx/protocol
|
||||
cd protocol
|
||||
cp *.h ~/wxmotif_dist/wxMotif/include/wx/protocol
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/include/wx/protocol
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/include/wx/protocol
|
||||
cd ..
|
||||
|
||||
cd ../..
|
||||
|
||||
echo Misc dir..
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/misc
|
||||
cd misc
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/misc
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/misc
|
||||
mkdir ~/wxmotif_dist/wxMotif/misc/afm
|
||||
cd afm
|
||||
cp *.afm ~/wxmotif_dist/wxMotif/misc/afm
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/misc/afm
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/misc/afm
|
||||
cd ..
|
||||
mkdir ~/wxmotif_dist/wxMotif/misc/gs_afm
|
||||
cd gs_afm
|
||||
cp *.afm ~/wxmotif_dist/wxMotif/misc/gs_afm
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/misc/gs_afm
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/misc/gs_afm
|
||||
cd ../..
|
||||
|
||||
echo Src dir..
|
||||
|
||||
cd src
|
||||
mkdir ~/wxmotif_dist/wxMotif/src
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/src
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/src
|
||||
|
||||
cd motif
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/motif
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/src/motif
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/src/motif
|
||||
cp *.xbm ~/wxmotif_dist/wxMotif/src/motif
|
||||
cp *.c ~/wxmotif_dist/wxMotif/src/motif
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/src/motif
|
||||
cd ..
|
||||
|
||||
cd common
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/common
|
||||
cp glob.inc ~/wxmotif_dist/wxMotif/src/common
|
||||
cp lexer.l ~/wxmotif_dist/wxMotif/src/common
|
||||
cp parser.y ~/wxmotif_dist/wxMotif/src/common
|
||||
cp extended.c ~/wxmotif_dist/wxMotif/src/common
|
||||
cp unzip.* ~/wxmotif_dist/wxMotif/src/common
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/src/common
|
||||
cd ..
|
||||
|
||||
cd html
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/html
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/src/html
|
||||
cp *.h ~/wxmotif_dist/wxMotif/src/html
|
||||
cd bitmaps
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/html/bitmaps
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/src/html/bitmaps
|
||||
cd ../..
|
||||
|
||||
cd unix
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/unix
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/src/unix
|
||||
cp *.h ~/wxmotif_dist/wxMotif/src/unix
|
||||
cp *.c ~/wxmotif_dist/wxMotif/src/unix
|
||||
cd ..
|
||||
|
||||
cd generic
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/generic
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/src/generic
|
||||
cd ..
|
||||
|
||||
cd iodbc
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/iodbc
|
||||
cp * ~/wxmotif_dist/wxMotif/src/iodbc
|
||||
cd ..
|
||||
|
||||
cd zlib
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/zlib
|
||||
cp * ~/wxmotif_dist/wxMotif/src/zlib
|
||||
cd ..
|
||||
|
||||
cd png
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/png
|
||||
cp * ~/wxmotif_dist/wxMotif/src/png
|
||||
cd ..
|
||||
|
||||
cd jpeg
|
||||
mkdir ~/wxmotif_dist/wxMotif/src/jpeg
|
||||
cp * ~/wxmotif_dist/wxMotif/src/jpeg
|
||||
cd ..
|
||||
|
||||
cd ..
|
||||
|
||||
echo Utils dir..
|
||||
|
||||
cd utils
|
||||
mkdir ~/wxmotif_dist/wxMotif/utils
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/utils
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/utils
|
||||
cd ..
|
||||
|
||||
echo Samples dir..
|
||||
|
||||
cd samples
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples
|
||||
|
||||
echo Minimal sample..
|
||||
|
||||
cd minimal
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/minimal
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/minimal
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/minimal
|
||||
cp minimal.cpp ~/wxmotif_dist/wxMotif/samples/minimal
|
||||
cp mondrian.xpm ~/wxmotif_dist/wxMotif/samples/minimal
|
||||
cd ..
|
||||
|
||||
echo Bombs sample..
|
||||
|
||||
cd bombs
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/bombs
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/bombs
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/bombs
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/bombs
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/bombs
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/bombs
|
||||
cd ..
|
||||
|
||||
echo Caret sample..
|
||||
|
||||
cd caret
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/caret
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/caret
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/caret
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/caret
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/caret
|
||||
cd ..
|
||||
|
||||
echo Checklst sample..
|
||||
|
||||
cd checklst
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/checklst
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/checklst
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/checklst
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/checklst
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/checklst
|
||||
cd ..
|
||||
|
||||
echo Config sample..
|
||||
|
||||
cd config
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/config
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/config
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/config
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/config
|
||||
cd ..
|
||||
|
||||
echo Controls sample..
|
||||
|
||||
cd controls
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/controls
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/controls
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/controls
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/controls
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/controls
|
||||
cd icons
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/controls/icons
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/controls/icons
|
||||
cd ../..
|
||||
|
||||
echo Db sample..
|
||||
|
||||
cd db
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/db
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/db
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/db
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/db
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/db
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/db
|
||||
cd ..
|
||||
|
||||
echo Dialogs sample..
|
||||
|
||||
cd dialogs
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/dialogs
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/dialogs
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/dialogs
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/dialogs
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/dialogs
|
||||
cd ..
|
||||
|
||||
echo DnD sample..
|
||||
|
||||
cd dnd
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/dnd
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/dnd
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/dnd
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/dnd
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/dnd
|
||||
cd ..
|
||||
|
||||
echo Docview sample..
|
||||
|
||||
cd docview
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/docview
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/docview
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/docview
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/docview
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/docview
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/docview
|
||||
cd ..
|
||||
|
||||
echo DocvwMDI sample..
|
||||
|
||||
cd docvwmdi
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/docvwmdi
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/docvwmdi
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/docvwmdi
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/docvwmdi
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/docvwmdi
|
||||
cd ..
|
||||
|
||||
echo Dynamic sample..
|
||||
|
||||
cd dynamic
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/dynamic
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/dynamic
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/dynamic
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/dynamic
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/dynamic
|
||||
cd ..
|
||||
|
||||
echo Drawing sample..
|
||||
|
||||
cd drawing
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/drawing
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/drawing
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/drawing
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/drawing
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/drawing
|
||||
cd ..
|
||||
|
||||
echo Forty sample..
|
||||
|
||||
cd forty
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cp *.xbm ~/wxmotif_dist/wxMotif/samples/forty
|
||||
cd ..
|
||||
|
||||
echo Fractal sample..
|
||||
|
||||
cd fractal
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/fractal
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/fractal
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/fractal
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/fractal
|
||||
cd ..
|
||||
|
||||
echo Grid sample..
|
||||
|
||||
cd grid
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/grid
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/grid
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/grid
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/grid
|
||||
cd ..
|
||||
|
||||
echo Help sample..
|
||||
|
||||
cd help
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/help
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/help
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/help
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/help
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/help
|
||||
cd doc
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/help/doc
|
||||
cp * ~/wxmotif_dist/wxMotif/samples/help/doc
|
||||
cd ../..
|
||||
|
||||
echo HTML samples..
|
||||
|
||||
cd html
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html
|
||||
cp Makefile.* ~/wxmotif_dist/wxMotif/samples/html
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/about
|
||||
cp about/Makefile.* ~/wxmotif_dist/wxMotif/samples/html/about
|
||||
cp about/about.* ~/wxmotif_dist/wxMotif/samples/html/about
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/about/data
|
||||
cp about/data/*.* ~/wxmotif_dist/wxMotif/samples/html/about/data
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/help
|
||||
cp help/Makefile.* ~/wxmotif_dist/wxMotif/samples/html/help
|
||||
cp help/help.* ~/wxmotif_dist/wxMotif/samples/html/help
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/help/helpfiles
|
||||
cp help/helpfiles/*.* ~/wxmotif_dist/wxMotif/samples/html/help/helpfiles
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/printing
|
||||
cp printing/*.* ~/wxmotif_dist/wxMotif/samples/html/printing
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/test
|
||||
cp test/*.* ~/wxmotif_dist/wxMotif/samples/html/test
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/virtual
|
||||
cp virtual/*.* ~/wxgtk_dist/wxGTK/samples/html/virtual
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/widget
|
||||
cp widget/*.* ~/wxmotif_dist/wxMotif/samples/html/widget
|
||||
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/html/zip
|
||||
cp zip/*.* ~/wxmotif_dist/wxMotif/samples/html/zip
|
||||
cd ..
|
||||
|
||||
echo Image sample..
|
||||
|
||||
cd image
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/image
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/image
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/image
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/image
|
||||
cp horse.png ~/wxmotif_dist/wxMotif/samples/image
|
||||
cp horse.gif ~/wxmotif_dist/wxMotif/samples/image
|
||||
cp horse.jpg ~/wxmotif_dist/wxMotif/samples/image
|
||||
cd ..
|
||||
|
||||
echo Internat sample..
|
||||
|
||||
cd internat
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cp readme.txt ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cp wxstd.po ~/wxmotif_dist/wxMotif/samples/internat
|
||||
cd fr
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/internat/fr
|
||||
cp *.?o ~/wxmotif_dist/wxMotif/samples/internat/fr
|
||||
cd ../..
|
||||
|
||||
echo Layout sample..
|
||||
|
||||
cd layout
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/layout
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/layout
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/layout
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/layout
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/layout
|
||||
cd ..
|
||||
|
||||
echo Listctrl sample..
|
||||
|
||||
cd listctrl
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/listctrl
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/listctrl
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/listctrl
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/listctrl
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/listctrl
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/listctrl
|
||||
cd bitmaps
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/listctrl/bitmaps
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/listctrl/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo MDI sample..
|
||||
|
||||
cd mdi
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/mdi
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/mdi
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/mdi
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/mdi
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/mdi
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/mdi
|
||||
cd bitmaps
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/mdi/bitmaps
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/mdi/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo Memcheck sample..
|
||||
|
||||
cd memcheck
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/memcheck
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/memcheck
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/memcheck
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/memcheck
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/memcheck
|
||||
cd ..
|
||||
|
||||
echo Minifram sample..
|
||||
|
||||
cd minifram
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/minifram
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/minifram
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/minifram
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/minifram
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/minifram
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/minifram
|
||||
cd bitmaps
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/minifram/bitmaps
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/minifram/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo Notebook sample..
|
||||
|
||||
cd notebook
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/notebook
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/notebook
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/notebook
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/notebook
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/notebook
|
||||
cd ..
|
||||
|
||||
echo PNG sample..
|
||||
|
||||
cd png
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/png
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/png
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/png
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/png
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/png
|
||||
cp *.png ~/wxmotif_dist/wxMotif/samples/png
|
||||
cd ..
|
||||
|
||||
echo Printing sample..
|
||||
|
||||
cd printing
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/printing
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/printing
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/printing
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/printing
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/printing
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/printing
|
||||
cd ..
|
||||
|
||||
echo Proplist sample..
|
||||
|
||||
cd proplist
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/proplist
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/proplist
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/proplist
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/proplist
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/proplist
|
||||
cd ..
|
||||
|
||||
echo Resource sample..
|
||||
|
||||
cd resource
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/resource
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/resource
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/resource
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/resource
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/resource
|
||||
cp *.wxr ~/wxmotif_dist/wxMotif/samples/resource
|
||||
cd ..
|
||||
|
||||
echo Sashtest sample..
|
||||
|
||||
cd sashtest
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/sashtest
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/sashtest
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/sashtest
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/sashtest
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/sashtest
|
||||
cd ..
|
||||
|
||||
echo Scroll sample..
|
||||
|
||||
cd sashtest
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/scroll
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/scroll
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/scroll
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/scroll
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/scroll
|
||||
cd ..
|
||||
|
||||
echo Splitter sample..
|
||||
|
||||
cd splitter
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/splitter
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/splitter
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/splitter
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/splitter
|
||||
cd ..
|
||||
|
||||
cd tab
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/tab
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/tab
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/tab
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/tab
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/tab
|
||||
cd ..
|
||||
|
||||
echo Text sample..
|
||||
|
||||
cd text
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/text
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/text
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/text
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/text
|
||||
cd ..
|
||||
|
||||
echo Thread sample..
|
||||
|
||||
cd thread
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/thread
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/thread
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/thread
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/thread
|
||||
cd ..
|
||||
|
||||
echo Toolbar sample..
|
||||
|
||||
cd toolbar
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/toolbar
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/toolbar
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/toolbar
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/toolbar
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/toolbar
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/toolbar
|
||||
cd bitmaps
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/toolbar/bitmaps
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/toolbar/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo TreeCtrl sample..
|
||||
|
||||
cd treectrl
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/treectrl
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/treectrl
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/treectrl
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/treectrl
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/treectrl
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/treectrl
|
||||
cd ..
|
||||
|
||||
echo typetest sample..
|
||||
|
||||
cd typetest
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/typetest
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/typetest
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/typetest
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/typetest
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/typetest
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/typetest
|
||||
cd ..
|
||||
|
||||
echo Validate sample..
|
||||
|
||||
cd validate
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/validate
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/validate
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/validate
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/validate
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/validate
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/validate
|
||||
cd ..
|
||||
|
||||
echo wxPoem sample..
|
||||
|
||||
cd wxpoem
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp *.h ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp wxpoem.dat ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp wxpoem.txt ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cp wxpoem.idx ~/wxmotif_dist/wxMotif/samples/wxpoem
|
||||
cd ..
|
||||
|
||||
echo wxSocket sample..
|
||||
|
||||
cd wxsocket
|
||||
mkdir ~/wxmotif_dist/wxMotif/samples/wxsocket
|
||||
cp Makefile.am ~/wxmotif_dist/wxMotif/samples/wxsocket
|
||||
cp Makefile.in ~/wxmotif_dist/wxMotif/samples/wxsocket
|
||||
cp *.cpp ~/wxmotif_dist/wxMotif/samples/wxsocket
|
||||
cp *.xpm ~/wxmotif_dist/wxMotif/samples/wxsocket
|
||||
cd ../..
|
||||
|
||||
cd ~/wxmotif_dist
|
||||
tar ch wxMotif | gzip -f9 > wxMotif-2.1.0-b8.tgz
|
@ -1,675 +0,0 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
# This script is creates a dir tree in ~/wxwine_dist which
|
||||
# can then be packed into an archive
|
||||
|
||||
echo --------
|
||||
echo This script will copy the wxWINE release files into ~/wxwine_dist
|
||||
echo --------
|
||||
echo
|
||||
|
||||
mkdir ~/wxwine_dist
|
||||
mkdir ~/wxwine_dist/wxWINE
|
||||
|
||||
echo Base dir..
|
||||
|
||||
cd ../..
|
||||
cp wxWINE.spec ~/wxwine_dist/wxWINE
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE
|
||||
cp acconfig.h ~/wxwine_dist/wxWINE
|
||||
cp acinclude.m4 ~/wxwine_dist/wxWINE
|
||||
cp aclocal.m4 ~/wxwine_dist/wxWINE
|
||||
cp configure.in ~/wxwine_dist/wxWINE
|
||||
cp configure ~/wxwine_dist/wxWINE
|
||||
cp config.sub ~/wxwine_dist/wxWINE
|
||||
cp config.guess ~/wxwine_dist/wxWINE
|
||||
cp install-sh ~/wxwine_dist/wxWINE
|
||||
cp ltconfig ~/wxwine_dist/wxWINE
|
||||
cp ltmain.sh ~/wxwine_dist/wxWINE
|
||||
cp missing ~/wxwine_dist/wxWINE
|
||||
cp mkinstalldirs ~/wxwine_dist/wxWINE
|
||||
cp wx-config.in ~/wxwine_dist/wxWINE
|
||||
cp setup.h.in ~/wxwine_dist/wxWINE
|
||||
cp stamp-h.in ~/wxwine_dist/wxWINE
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE
|
||||
|
||||
echo Docs..
|
||||
|
||||
cd docs/wine
|
||||
cp COPYING.LIB ~/wxwine_dist/wxWINE
|
||||
cp install.txt ~/wxwine_dist/wxWINE/INSTALL.txt
|
||||
cp changes.txt ~/wxwine_dist/wxWINE/CHANGES.txt
|
||||
cp licence.txt ~/wxwine_dist/wxWINE/LICENCE.txt
|
||||
cp readme.txt ~/wxwine_dist/wxWINE/README.txt
|
||||
cp todo.txt ~/wxwine_dist/wxWINE/TODO.txt
|
||||
cd ..
|
||||
cp symbols.txt ~/wxwine_dist/wxWINE/SYMBOLS.txt
|
||||
cd ..
|
||||
|
||||
echo Include dir..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include
|
||||
cd include
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx
|
||||
cd wx
|
||||
cp *.h ~/wxwine_dist/wxWINE/include/wx
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/include/wx
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx/generic
|
||||
cd generic
|
||||
cp *.h ~/wxwine_dist/wxWINE/include/wx/generic
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/include/wx/generic
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx/generic
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx/generic
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cd html
|
||||
cp *.h ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cp Makefile.am ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cp Makefile.in ~/wxgtk_dist/wxGTK/include/wx/html
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx/unix
|
||||
cd unix
|
||||
cp *.h ~/wxwine_dist/wxWINE/include/wx/unix
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx/unix
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx/unix
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx/msw
|
||||
cd msw
|
||||
cp *.h ~/wxwine_dist/wxWINE/include/wx/msw
|
||||
rm ~/wxwine_dist/wxWINE/include/wx/msw/setup.h
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx/msw
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx/msw
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx/motif
|
||||
cd motif
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx/motif
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx/motif
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx/gtk
|
||||
cd gtk
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx/gtk
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx/gtk
|
||||
cd ..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/include/wx/protocol
|
||||
cd protocol
|
||||
cp *.h ~/wxwine_dist/wxWINE/include/wx/protocol
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/include/wx/protocol
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/include/wx/protocol
|
||||
cd ..
|
||||
|
||||
cd ../..
|
||||
|
||||
echo Misc dir..
|
||||
|
||||
mkdir ~/wxwine_dist/wxWINE/misc
|
||||
cd misc
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/misc
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/misc
|
||||
mkdir ~/wxwine_dist/wxWINE/misc/afm
|
||||
cd afm
|
||||
cp *.afm ~/wxwine_dist/wxWINE/misc/afm
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/misc/afm
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/misc/afm
|
||||
cd ..
|
||||
mkdir ~/wxwine_dist/wxWINE/misc/gs_afm
|
||||
cd gs_afm
|
||||
cp *.afm ~/wxwine_dist/wxWINE/misc/gs_afm
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/misc/gs_afm
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/misc/gs_afm
|
||||
cd ../..
|
||||
|
||||
echo Src dir..
|
||||
|
||||
cd src
|
||||
mkdir ~/wxwine_dist/wxWINE/src
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/src
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/src
|
||||
|
||||
cd msw
|
||||
mkdir ~/wxwine_dist/wxWINE/src/msw
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/src/msw
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/src/msw
|
||||
cp *.xbm ~/wxwine_dist/wxWINE/src/msw
|
||||
cp *.c ~/wxwine_dist/wxWINE/src/msw
|
||||
cp *.inc ~/wxwine_dist/wxWINE/src/msw
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/src/msw
|
||||
cd ..
|
||||
|
||||
cd common
|
||||
mkdir ~/wxwine_dist/wxWINE/src/common
|
||||
cp glob.inc ~/wxwine_dist/wxWINE/src/common
|
||||
cp lexer.l ~/wxwine_dist/wxWINE/src/common
|
||||
cp parser.y ~/wxwine_dist/wxWINE/src/common
|
||||
cp extended.c ~/wxwine_dist/wxWINE/src/common
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/src/common
|
||||
cd ..
|
||||
|
||||
cd html
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/html
|
||||
cp *.cpp ~/wxgtk_dist/wxGTK/src/html
|
||||
cp *.h ~/wxgtk_dist/wxGTK/src/html
|
||||
cd bitmaps
|
||||
mkdir ~/wxgtk_dist/wxGTK/src/html/bitmaps
|
||||
cp *.xpm ~/wxgtk_dist/wxGTK/src/html/bitmaps
|
||||
cd ../..
|
||||
|
||||
cd unix
|
||||
mkdir ~/wxwine_dist/wxWINE/src/unix
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/src/unix
|
||||
cd ..
|
||||
|
||||
cd generic
|
||||
mkdir ~/wxwine_dist/wxWINE/src/generic
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/src/generic
|
||||
cd ..
|
||||
|
||||
cd iodbc
|
||||
mkdir ~/wxwine_dist/wxWINE/src/iodbc
|
||||
cp * ~/wxwine_dist/wxWINE/src/iodbc
|
||||
cd ..
|
||||
|
||||
cd zlib
|
||||
mkdir ~/wxwine_dist/wxWINE/src/zlib
|
||||
cp * ~/wxwine_dist/wxWINE/src/zlib
|
||||
cd ..
|
||||
|
||||
cd png
|
||||
mkdir ~/wxwine_dist/wxWINE/src/png
|
||||
cp * ~/wxwine_dist/wxWINE/src/png
|
||||
cd ..
|
||||
|
||||
cd jpeg
|
||||
mkdir ~/wxwine_dist/wxWINE/src/jpeg
|
||||
cp * ~/wxwine_dist/wxWINE/src/jpeg
|
||||
cd ..
|
||||
|
||||
cd ..
|
||||
|
||||
echo Utils dir..
|
||||
|
||||
cd utils
|
||||
mkdir ~/wxwine_dist/wxWINE/utils
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/utils
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/utils
|
||||
cd ..
|
||||
|
||||
echo Samples dir..
|
||||
|
||||
cd samples
|
||||
mkdir ~/wxwine_dist/wxWINE/samples
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples
|
||||
|
||||
echo Minimal sample..
|
||||
|
||||
cd minimal
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/minimal
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/minimal
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/minimal
|
||||
cp minimal.cpp ~/wxwine_dist/wxWINE/samples/minimal
|
||||
cp mondrian.xpm ~/wxwine_dist/wxWINE/samples/minimal
|
||||
cd ..
|
||||
|
||||
echo Bombs sample..
|
||||
|
||||
cd bombs
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/bombs
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/bombs
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/bombs
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/bombs
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/bombs
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/bombs
|
||||
cd ..
|
||||
|
||||
echo Caret sample..
|
||||
|
||||
cd caret
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/caret
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/caret
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/caret
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/caret
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/caret
|
||||
cd ..
|
||||
|
||||
echo Checklst sample..
|
||||
|
||||
cd checklst
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/checklst
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/checklst
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/checklst
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/checklst
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/checklst
|
||||
cd ..
|
||||
|
||||
echo Config sample..
|
||||
|
||||
cd config
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/config
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/config
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/config
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/config
|
||||
cd ..
|
||||
|
||||
echo Controls sample..
|
||||
|
||||
cd controls
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/controls
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/controls
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/controls
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/controls
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/controls
|
||||
cd icons
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/controls/icons
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/controls/icons
|
||||
cd ../..
|
||||
|
||||
echo Db sample..
|
||||
|
||||
cd db
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/db
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/db
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/db
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/db
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/db
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/db
|
||||
cd ..
|
||||
|
||||
echo DDE sample..
|
||||
|
||||
cd dde
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/dde
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/dde
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/dde
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/dde
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/dde
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/dde
|
||||
cd ..
|
||||
|
||||
echo Dialogs sample..
|
||||
|
||||
cd dialogs
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/dialogs
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/dialogs
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/dialogs
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/dialogs
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/dialogs
|
||||
cd ..
|
||||
|
||||
echo DnD sample..
|
||||
|
||||
cd dnd
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/dnd
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/dnd
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/dnd
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/dnd
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/dnd
|
||||
cd ..
|
||||
|
||||
echo Docview sample..
|
||||
|
||||
cd docview
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/docview
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/docview
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/docview
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/docview
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/docview
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/docview
|
||||
cd ..
|
||||
|
||||
echo DocvwMDI sample..
|
||||
|
||||
cd docvwmdi
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/docvwmdi
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/docvwmdi
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/docvwmdi
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/docvwmdi
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/docvwmdi
|
||||
cd ..
|
||||
|
||||
echo Dynamic sample..
|
||||
|
||||
cd dynamic
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/dynamic
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/dynamic
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/dynamic
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/dynamic
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/dynamic
|
||||
cd ..
|
||||
|
||||
echo Drawing sample..
|
||||
|
||||
cd drawing
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/drawing
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/drawing
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/drawing
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/drawing
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/drawing
|
||||
cd ..
|
||||
|
||||
echo Forty sample..
|
||||
|
||||
cd forty
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/forty
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/forty
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/forty
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/forty
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/forty
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/forty
|
||||
cp *.xbm ~/wxwine_dist/wxWINE/samples/forty
|
||||
cd ..
|
||||
|
||||
echo Fractal sample..
|
||||
|
||||
cd fractal
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/fractal
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/fractal
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/fractal
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/fractal
|
||||
cd ..
|
||||
|
||||
echo Grid sample..
|
||||
|
||||
cd grid
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/grid
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/grid
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/grid
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/grid
|
||||
cd ..
|
||||
|
||||
echo Help sample..
|
||||
|
||||
cd help
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/help
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/help
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/help
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/help
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/help
|
||||
cd doc
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/help/doc
|
||||
cp * ~/wxwine_dist/wxWINE/samples/help/doc
|
||||
cd ../..
|
||||
|
||||
echo Image sample..
|
||||
|
||||
cd image
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/image
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/image
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/image
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/image
|
||||
cp horse.png ~/wxwine_dist/wxWINE/samples/image
|
||||
cp horse.gif ~/wxwine_dist/wxWINE/samples/image
|
||||
cp horse.jpg ~/wxwine_dist/wxWINE/samples/image
|
||||
cd ..
|
||||
|
||||
echo Internat sample..
|
||||
|
||||
cd internat
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/internat
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/internat
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/internat
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/internat
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/internat
|
||||
cp readme.txt ~/wxwine_dist/wxWINE/samples/internat
|
||||
cp wxstd.po ~/wxwine_dist/wxWINE/samples/internat
|
||||
cd fr
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/internat/fr
|
||||
cp *.?o ~/wxwine_dist/wxWINE/samples/internat/fr
|
||||
cd ../..
|
||||
|
||||
echo Layout sample..
|
||||
|
||||
cd layout
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/layout
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/layout
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/layout
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/layout
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/layout
|
||||
cd ..
|
||||
|
||||
echo Listctrl sample..
|
||||
|
||||
cd listctrl
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/listctrl
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/listctrl
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/listctrl
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/listctrl
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/listctrl
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/listctrl
|
||||
cd bitmaps
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/listctrl/bitmaps
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/listctrl/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo MDI sample..
|
||||
|
||||
cd mdi
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/mdi
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/mdi
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/mdi
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/mdi
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/mdi
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/mdi
|
||||
cd bitmaps
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/mdi/bitmaps
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/mdi/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo Memcheck sample..
|
||||
|
||||
cd memcheck
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/memcheck
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/memcheck
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/memcheck
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/memcheck
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/memcheck
|
||||
cd ..
|
||||
|
||||
echo Minifram sample..
|
||||
|
||||
cd minifram
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/minifram
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/minifram
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/minifram
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/minifram
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/minifram
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/minifram
|
||||
cd bitmaps
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/minifram/bitmaps
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/minifram/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo Notebook sample..
|
||||
|
||||
cd notebook
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/notebook
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/notebook
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/notebook
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/notebook
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/notebook
|
||||
cd ..
|
||||
|
||||
echo PNG sample..
|
||||
|
||||
cd png
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/png
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/png
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/png
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/png
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/png
|
||||
cp *.png ~/wxwine_dist/wxWINE/samples/png
|
||||
cd ..
|
||||
|
||||
echo Printing sample..
|
||||
|
||||
cd printing
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/printing
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/printing
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/printing
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/printing
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/printing
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/printing
|
||||
cd ..
|
||||
|
||||
echo Proplist sample..
|
||||
|
||||
cd proplist
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/proplist
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/proplist
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/proplist
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/proplist
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/proplist
|
||||
cd ..
|
||||
|
||||
echo Resource sample..
|
||||
|
||||
cd resource
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/resource
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/resource
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/resource
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/resource
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/resource
|
||||
cp *.wxr ~/wxwine_dist/wxWINE/samples/resource
|
||||
cd ..
|
||||
|
||||
echo Sashtest sample..
|
||||
|
||||
cd sashtest
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/sashtest
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/sashtest
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/sashtest
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/sashtest
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/sashtest
|
||||
cd ..
|
||||
|
||||
echo Scroll sample..
|
||||
|
||||
cd sashtest
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/scroll
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/scroll
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/scroll
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/scroll
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/scroll
|
||||
cd ..
|
||||
|
||||
echo Splitter sample..
|
||||
|
||||
cd splitter
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/splitter
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/splitter
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/splitter
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/splitter
|
||||
cd ..
|
||||
|
||||
echo Tab sample..
|
||||
|
||||
cd tab
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/tab
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/tab
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/tab
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/tab
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/tab
|
||||
cd ..
|
||||
|
||||
echo Text sample..
|
||||
|
||||
cd text
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/text
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/text
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/text
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/text
|
||||
cd ..
|
||||
|
||||
echo Thread sample..
|
||||
|
||||
cd thread
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/thread
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/thread
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/thread
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/thread
|
||||
cd ..
|
||||
|
||||
echo Toolbar sample..
|
||||
|
||||
cd toolbar
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/toolbar
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/toolbar
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/toolbar
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/toolbar
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/toolbar
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/toolbar
|
||||
cd bitmaps
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/toolbar/bitmaps
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/toolbar/bitmaps
|
||||
cd ../..
|
||||
|
||||
echo TreeCtrl sample..
|
||||
|
||||
cd treectrl
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/treectrl
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/treectrl
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/treectrl
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/treectrl
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/treectrl
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/treectrl
|
||||
cd ..
|
||||
|
||||
echo typetest sample..
|
||||
|
||||
cd typetest
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/typetest
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/typetest
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/typetest
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/typetest
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/typetest
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/typetest
|
||||
cd ..
|
||||
|
||||
echo Validate sample..
|
||||
|
||||
cd validate
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/validate
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/validate
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/validate
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/validate
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/validate
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/validate
|
||||
cd ..
|
||||
|
||||
echo wxPoem sample..
|
||||
|
||||
cd wxpoem
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp *.h ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp wxpoem.dat ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp wxpoem.txt ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cp wxpoem.idx ~/wxwine_dist/wxWINE/samples/wxpoem
|
||||
cd ..
|
||||
|
||||
echo wxSocket sample..
|
||||
|
||||
cd wxsocket
|
||||
mkdir ~/wxwine_dist/wxWINE/samples/wxsocket
|
||||
cp Makefile.am ~/wxwine_dist/wxWINE/samples/wxsocket
|
||||
cp Makefile.in ~/wxwine_dist/wxWINE/samples/wxsocket
|
||||
cp *.cpp ~/wxwine_dist/wxWINE/samples/wxsocket
|
||||
cp *.xpm ~/wxwine_dist/wxWINE/samples/wxsocket
|
||||
cd ../..
|
||||
|
||||
cd ~/wxwine_dist
|
||||
tar ch wxWINE | gzip -f9 > wxWINE-2.1.0-b7.tgz
|
Loading…
Reference in New Issue
Block a user