Started "make dist"
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3367 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e4b4d60e56
commit
a4aad9613a
7 changed files with 341 additions and 5 deletions
148
Makefile.in
148
Makefile.in
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
#
|
||||
# This file was automatically generated by tmake at 09:43, 1999/08/13
|
||||
# This file was automatically generated by tmake at 11:22, 1999/08/13
|
||||
# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
|
||||
|
||||
#
|
||||
|
|
@ -102,6 +102,11 @@ INCDIR = $(WXDIR)/include
|
|||
|
||||
DOCDIR = $(WXDIR)/docs
|
||||
|
||||
########################## Archive name ###############################
|
||||
|
||||
WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
|
||||
DISTDIR = ./_dist_dir/wx$(TOOLKIT)
|
||||
|
||||
############################## Files ##################################
|
||||
|
||||
WX_HEADERS = \
|
||||
|
|
@ -401,6 +406,96 @@ MOTIF_HEADERS = \
|
|||
motif/toolbar.h \
|
||||
motif/window.h
|
||||
|
||||
MSW_HEADERS = \
|
||||
msw/accel.h \
|
||||
msw/app.h \
|
||||
msw/bitmap.h \
|
||||
msw/bmpbuttn.h \
|
||||
msw/brush.h \
|
||||
msw/button.h \
|
||||
msw/caret.h \
|
||||
msw/checkbox.h \
|
||||
msw/checklst.h \
|
||||
msw/choice.h \
|
||||
msw/clipbrd.h \
|
||||
msw/colordlg.h \
|
||||
msw/colour.h \
|
||||
msw/combobox.h \
|
||||
msw/control.h \
|
||||
msw/curico.h \
|
||||
msw/curicop.h \
|
||||
msw/cursor.h \
|
||||
msw/dc.h \
|
||||
msw/dcclient.h \
|
||||
msw/dcmemory.h \
|
||||
msw/dcprint.h \
|
||||
msw/dcscreen.h \
|
||||
msw/dde.h \
|
||||
msw/dialog.h \
|
||||
msw/dib.h \
|
||||
msw/dibutils.h \
|
||||
msw/dirdlg.h \
|
||||
msw/dragimag.h \
|
||||
msw/filedlg.h \
|
||||
msw/font.h \
|
||||
msw/fontdlg.h \
|
||||
msw/frame.h \
|
||||
msw/gauge.h \
|
||||
msw/gauge95.h \
|
||||
msw/gaugemsw.h \
|
||||
msw/gdiobj.h \
|
||||
msw/helpwin.h \
|
||||
msw/icon.h \
|
||||
msw/imaglist.h \
|
||||
msw/iniconf.h \
|
||||
msw/joystick.h \
|
||||
msw/listbox.h \
|
||||
msw/listctrl.h \
|
||||
msw/mdi.h \
|
||||
msw/menu.h \
|
||||
msw/menuitem.h \
|
||||
msw/metafile.h \
|
||||
msw/minifram.h \
|
||||
msw/msgdlg.h \
|
||||
msw/msvcrt.h \
|
||||
msw/notebook.h \
|
||||
msw/palette.h \
|
||||
msw/pen.h \
|
||||
msw/pnghand.h \
|
||||
msw/pngread.h \
|
||||
msw/printdlg.h \
|
||||
msw/printwin.h \
|
||||
msw/private.h \
|
||||
msw/radiobox.h \
|
||||
msw/radiobut.h \
|
||||
msw/regconf.h \
|
||||
msw/region.h \
|
||||
msw/registry.h \
|
||||
msw/scrolbar.h \
|
||||
msw/settings.h \
|
||||
msw/setup0.h \
|
||||
msw/slider.h \
|
||||
msw/slider95.h \
|
||||
msw/slidrmsw.h \
|
||||
msw/spinbutt.h \
|
||||
msw/statbmp.h \
|
||||
msw/statbox.h \
|
||||
msw/statbr95.h \
|
||||
msw/statline.h \
|
||||
msw/stattext.h \
|
||||
msw/tabctrl.h \
|
||||
msw/taskbar.h \
|
||||
msw/tbar95.h \
|
||||
msw/tbarmsw.h \
|
||||
msw/textctrl.h \
|
||||
msw/timer.h \
|
||||
msw/tooltip.h \
|
||||
msw/treectrl.h \
|
||||
msw/wave.h \
|
||||
msw/window.h \
|
||||
msw/winundef.h \
|
||||
msw/xpmhand.h
|
||||
|
||||
UNIX_HEADERS = \
|
||||
unix/execute.h
|
||||
|
||||
|
|
@ -1227,6 +1322,57 @@ uninstall:
|
|||
@if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
|
||||
@if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
|
||||
|
||||
predist:
|
||||
mkdir _dist_dir
|
||||
mkdir $(DISTDIR)
|
||||
cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
|
||||
cp $(WXDIR)/configure $(DISTDIR)
|
||||
cp $(WXDIR)/config.sub $(DISTDIR)
|
||||
cp $(WXDIR)/config.guess $(DISTDIR)
|
||||
cp $(WXDIR)/install-sh $(DISTDIR)
|
||||
cp $(WXDIR)/mkinstalldirs $(DISTDIR)
|
||||
cp $(WXDIR)/wx-config.in $(DISTDIR)
|
||||
cp $(WXDIR)/setup.h.in $(DISTDIR)
|
||||
cp $(WXDIR)/Makefile.in $(DISTDIR)
|
||||
cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
|
||||
cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
|
||||
cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
|
||||
cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
|
||||
cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
|
||||
cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
|
||||
cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
|
||||
mkdir $(DISTDIR)/include
|
||||
mkdir $(DISTDIR)/include/wx
|
||||
mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
|
||||
mkdir $(DISTDIR)/include/wx/generic
|
||||
mkdir $(DISTDIR)/include/wx/html
|
||||
mkdir $(DISTDIR)/include/wx/unix
|
||||
mkdir $(DISTDIR)/include/wx/protocol
|
||||
cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
|
||||
cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
|
||||
cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
|
||||
cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
|
||||
cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
|
||||
cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
|
||||
cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
|
||||
|
||||
GTK_DIST:
|
||||
cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
|
||||
|
||||
MOTIF_DIST:
|
||||
cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
|
||||
|
||||
MSW_DIST:
|
||||
cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
|
||||
cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
|
||||
cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
|
||||
cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
|
||||
cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
|
||||
|
||||
dist: predist @GUIDIST@
|
||||
cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
|
||||
rm -f -r _dist_dir
|
||||
|
||||
clean:
|
||||
rm -f ./src/msw/*.o
|
||||
rm -f ./src/gtk/*.o
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue