1999-08-12 19:24:39 +00:00
#
# File: makefile.unx
# Author: Julian Smart, Robert Roebling, Vadim Zeitlin
# Created: 1993
# Updated: 1999
# Copyright:(c) 1993, AIAI, University of Edinburgh,
# Copyright:(c) 1999, Vadim Zeitlin
# Copyright:(c) 1999, Robert Roebling
#
# Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a
###################################################################
i n c l u d e . / s r c / m a k e . e n v
############## override make.env for PIC ##########################
# Clears all default suffixes
.SUFFIXES : .o .cpp .c .cxx
.c.o :
1999-08-20 19:40:03 +00:00
$( CCC) -c @DEP_INFO_FLAGS@ $( CFLAGS) $( PICFLAGS) -o $@ $<
1999-08-12 19:24:39 +00:00
.cpp.o :
1999-08-20 19:40:03 +00:00
$( CC) -c @DEP_INFO_FLAGS@ $( CPPFLAGS) $( PICFLAGS) -o $@ $<
1999-08-12 19:24:39 +00:00
.cxx.o :
1999-08-20 19:40:03 +00:00
$( CC) -c @DEP_INFO_FLAGS@ $( CPPFLAGS) $( PICFLAGS) -o $@ $<
1999-08-12 19:24:39 +00:00
########################### Paths #################################
srcdir = @srcdir@
1999-08-20 19:40:03 +00:00
VP1 = @top_srcdir@/src/common
VP2 = @top_srcdir@/src/@TOOLKIT_DIR@
VP3 = @top_srcdir@/src/motif/xmcombo
VP4 = @top_srcdir@/src/generic
VP5 = @top_srcdir@/src/unix
VP6 = @top_srcdir@/src/html
VP7 = @top_srcdir@/src/png
VP8 = @top_srcdir@/src/jpeg
1999-11-28 17:11:24 +00:00
VP9 = @top_srcdir@/src/tiff
VP10 = @top_srcdir@/src/zlib
VP11 = @top_srcdir@/src/iodbc
1999-08-20 19:40:03 +00:00
2000-01-14 00:34:55 +00:00
# the comment at the end of the next line is needed because otherwise autoconf
# would remove this line completely - it contains a built-in hack to remove
# any VPATH assignment not containing ':'
VPATH = $( VP1) @PATH_IFS@$( VP2) @PATH_IFS@$( VP3) @PATH_IFS@$( VP4) @PATH_IFS@$( VP5) @PATH_IFS@$( VP6) @PATH_IFS@$( VP7) @PATH_IFS@$( VP8) @PATH_IFS@$( VP9) @PATH_IFS@$( VP10) @PATH_IFS@$( VP11) # ':' for autoconf
1999-08-12 19:24:39 +00:00
top_srcdir = @top_srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $( datadir) /@PACKAGE@
pkglibdir = $( libdir) /@PACKAGE@
pkgincludedir = $( includedir) /@PACKAGE@
top_builddir = .
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
1999-08-17 15:55:25 +00:00
# my autoconf doesn't set this
#INSTALL_SCRIPT = @INSTALL_SCRIPT@
# maybe do an additional chmod if needed?
2000-01-31 18:26:16 +00:00
INSTALL_SCRIPT = @INSTALL@
1999-08-12 19:24:39 +00:00
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_alias = @build_alias@
build_triplet = @build@
host_alias = @host_alias@
host_triplet = @host@
target_alias = @target_alias@
target_triplet = @target@
2000-01-10 17:12:43 +00:00
USE_GUI = @USE_GUI@
1999-08-12 19:24:39 +00:00
############################# Dirs #################################
WXDIR = $( top_srcdir)
# Subordinate library possibilities
1999-08-13 14:21:06 +00:00
SRCDIR = $( WXDIR) /src
GENDIR = $( WXDIR) /src/generic
COMMDIR = $( WXDIR) /src/common
HTMLDIR = $( WXDIR) /src/html
UNIXDIR = $( WXDIR) /src/unix
PNGDIR = $( WXDIR) /src/png
JPEGDIR = $( WXDIR) /src/jpeg
1999-12-04 16:40:27 +00:00
TIFFDIR = $( WXDIR) /src/tiff
1999-08-13 14:21:06 +00:00
ZLIBDIR = $( WXDIR) /src/zlib
GTKDIR = $( WXDIR) /src/gtk
1999-08-12 19:24:39 +00:00
MOTIFDIR = $( WXDIR) /src/motif
1999-08-13 14:21:06 +00:00
MSWDIR = $( WXDIR) /src/msw
2000-01-12 16:13:29 +00:00
PMDIR = $( WXDIR) /src/os2
1999-10-12 14:36:37 +00:00
ODBCDIR = $( WXDIR) /src/iodbc
1999-08-13 14:21:06 +00:00
INCDIR = $( WXDIR) /include
SAMPDIR = $( WXDIR) /samples
2000-01-14 17:08:42 +00:00
DEMODIR = $( WXDIR) /demos
1999-08-25 16:39:29 +00:00
UTILSDIR = $( WXDIR) /utils
1999-08-26 16:15:38 +00:00
MISCDIR = $( WXDIR) /misc
1999-08-12 19:24:39 +00:00
DOCDIR = $( WXDIR) /docs
1999-08-13 10:33:08 +00:00
########################## Archive name ###############################
2000-01-31 18:26:16 +00:00
WXARCHIVE = @DISTDIR@-$( WX_MAJOR_VERSION_NUMBER) .$( WX_MINOR_VERSION_NUMBER) .$( WX_RELEASE_NUMBER) .tgz
1999-11-14 19:25:07 +00:00
WXSAMPLES = wx$( TOOLKIT) -samples-$( WX_MAJOR_VERSION_NUMBER) .$( WX_MINOR_VERSION_NUMBER) .$( WX_RELEASE_NUMBER) .tgz
2000-01-14 17:08:42 +00:00
WXDEMOS = wx$( TOOLKIT) -demos-$( WX_MAJOR_VERSION_NUMBER) .$( WX_MINOR_VERSION_NUMBER) .$( WX_RELEASE_NUMBER) .tgz
2000-01-31 18:26:16 +00:00
DISTDIR = ./_dist_dir/@DISTDIR@
1999-08-13 10:33:08 +00:00
1999-08-12 19:24:39 +00:00
############################## Files ##################################
2000-01-31 18:26:16 +00:00
# this line will include a file which defines ALL_SOURCES, ALL_OBJECTS,
# ALL_DEPFILES and ALL_HEADERS variables with the complete list of .cpp, .o,
# .d and .h/.inl files for the current toolkit
i n c l u d e $( top_srcdir ) / @ P O R T _ F I L E S @
SOURCES = $( ALL_SOURCES)
HEADERS = $( ALL_HEADERS)
# for the objects and depfiles, we might be bulding only part of them
# depending on configure arguments, so select a subset of ALL
OBJECTS = @ALL_OBJECTS@
DEPFILES = @ALL_DEPFILES@
1999-08-12 19:24:39 +00:00
2000-01-31 18:26:16 +00:00
# the object files of sublibraries (we assume that they don't change [often],
# so we don't generate these lists with tmake but embed them here)
1999-08-12 19:24:39 +00:00
ZLIBOBJS = \
1999-08-20 19:40:03 +00:00
adler32.o \
compress.o \
crc32.o \
gzio.o \
uncompr.o \
deflate.o \
trees.o \
zutil.o \
inflate.o \
infblock.o \
inftrees.o \
infcodes.o \
infutil.o \
inffast.o
1999-08-12 19:24:39 +00:00
PNGOBJS = \
1999-08-20 19:40:03 +00:00
png.o \
pngread.o \
pngrtran.o \
pngrutil.o \
pngpread.o \
pngtrans.o \
pngwrite.o \
pngwtran.o \
pngwutil.o \
pngerror.o \
pngmem.o \
pngwio.o \
pngrio.o \
pngget.o \
pngset.o
1999-08-12 19:24:39 +00:00
JPEGOBJS = \
1999-08-20 19:40:03 +00:00
jcomapi.o \
jutils.o \
jerror.o \
jmemmgr.o \
jmemnobs.o \
jcapimin.o \
jcapistd.o \
jctrans.o \
jcparam.o \
jdatadst.o \
jcinit.o \
jcmaster.o \
jcmarker.o \
jcmainct.o \
jcprepct.o \
jccoefct.o \
jccolor.o \
jcsample.o \
jchuff.o \
jcphuff.o \
jcdctmgr.o \
jfdctfst.o \
jfdctflt.o \
jfdctint.o \
jdapimin.o \
jdapistd.o \
jdtrans.o \
jdatasrc.o \
jdmaster.o \
jdinput.o \
jdmarker.o \
jdhuff.o \
jdphuff.o \
jdmainct.o \
jdcoefct.o \
jdpostct.o \
jddctmgr.o \
jidctfst.o \
jidctflt.o \
jidctint.o \
jidctred.o \
jdsample.o \
jdcolor.o \
jquant1.o \
jquant2.o \
jdmerge.o
1999-08-12 19:24:39 +00:00
1999-11-28 17:11:24 +00:00
TIFFOBJS = \
tif_aux.o \
tif_close.o \
tif_codec.o \
tif_compress.o \
tif_dir.o \
tif_dirinfo.o \
tif_dirread.o \
tif_dirwrite.o \
tif_dumpmode.o \
tif_error.o \
tif_fax3.o \
tif_fax3sm.o \
tif_getimage.o \
tif_jpeg.o \
tif_flush.o \
tif_lzw.o \
1999-11-30 18:42:35 +00:00
tif_luv.o \
1999-11-28 17:11:24 +00:00
tif_next.o \
tif_open.o \
tif_packbits.o \
tif_pixarlog.o \
tif_predict.o \
tif_print.o \
tif_read.o \
tif_swab.o \
tif_strip.o \
tif_thunder.o \
tif_tile.o \
tif_unix.o \
tif_version.o \
tif_warning.o \
tif_write.o \
tif_zip.o
2000-02-01 16:37:28 +00:00
IODBCOBJS = \
1999-10-09 13:32:40 +00:00
catalog.o \
connect.o \
dlf.o \
dlproc.o \
execute.o \
fetch.o \
hdbc.o \
henv.o \
herr.o \
hstmt.o \
info.o \
itrace.o \
misc.o \
prepare.o \
result.o
2000-02-01 16:37:28 +00:00
2000-01-31 18:26:16 +00:00
############################## Rules ##################################
1999-10-06 05:13:20 +00:00
1999-12-04 16:40:27 +00:00
BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@
1999-10-09 11:20:06 +00:00
all : @WX_ALL @
1999-08-12 19:24:39 +00:00
@WX_LIBRARY_NAME_STATIC@ : $( OBJECTS )
1999-08-21 13:54:32 +00:00
@$( INSTALL) -d ./lib
1999-08-12 19:24:39 +00:00
$( AR) $( AROPTIONS) ./lib/$@ $( OBJECTS)
$( RANLIB) ./lib/$@
@WX_LIBRARY_NAME_SHARED@ : $( OBJECTS )
1999-08-21 13:54:32 +00:00
@$( INSTALL) -d ./lib
1999-12-04 16:40:27 +00:00
$( SHARED_LD) ./lib/$@ $( BURNT_LIBRARY_NAME) $( OBJECTS) $( EXTRALIBS)
1999-10-14 05:41:22 +00:00
1999-10-09 11:20:06 +00:00
CREATE_LINKS : @WX_LIBRARY_NAME_SHARED @
1999-08-21 13:54:32 +00:00
@$( RM) ./lib/@WX_LIBRARY_LINK1@
@$( RM) ./lib/@WX_LIBRARY_LINK2@
@$( RM) ./lib/@WX_LIBRARY_LINK3@
1999-08-12 19:24:39 +00:00
$( LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
$( LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
$( LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
1999-10-14 05:41:22 +00:00
2000-01-31 18:26:16 +00:00
CREATE_INSTALLED_LINKS : preinstall
1999-08-20 19:40:03 +00:00
$( RM) $( libdir) /@WX_LIBRARY_LINK1@
$( RM) $( libdir) /@WX_LIBRARY_LINK2@
$( RM) $( libdir) /@WX_LIBRARY_LINK3@
1999-10-09 11:20:06 +00:00
$( LN_S) @WX_LIBRARY_NAME_SHARED@ $( libdir) /@WX_LIBRARY_LINK1@
$( LN_S) @WX_LIBRARY_NAME_SHARED@ $( libdir) /@WX_LIBRARY_LINK2@
$( LN_S) @WX_LIBRARY_NAME_SHARED@ $( libdir) /@WX_LIBRARY_LINK3@
1999-10-14 05:41:22 +00:00
1999-10-25 18:56:26 +00:00
$(OBJECTS) : $( WXDIR ) /include /wx /defs .h $( WXDIR ) /include /wx /object .h
1999-08-12 19:24:39 +00:00
parser.o : parser .c lexer .c
1999-08-24 20:26:06 +00:00
$( CCLEX) -c $( CFLAGS) $( PICFLAGS) -o $@ parser.c
1999-08-12 19:24:39 +00:00
parser.c : $( COMMDIR ) /parser .y lexer .c
$( YACC) $( COMMDIR) /parser.y
@sed -e " s; $( COMMDIR) /y.tab.c;parser.y;g " < y.tab.c | \
sed -e "s/BUFSIZ/5000/g" | \
sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
sed -e "s/yy/PROIO_yy/g" | \
sed -e "s/input/PROIO_input/g" | \
sed -e "s/unput/PROIO_unput/g" > parser.c
@$( RM) y.tab.c
lexer.c : $( COMMDIR ) /lexer .l
$( LEX) $( COMMDIR) /lexer.l
2000-01-12 16:13:29 +00:00
@sed -e " s; $( COMMDIR) /@LEX_STEM@.c;lexer.l;g " < @LEX_STEM@.c | \
1999-08-12 19:24:39 +00:00
sed -e "s/yy/PROIO_yy/g" | \
sed -e "s/input/PROIO_input/g" | \
sed -e "s/unput/PROIO_unput/g" > lexer.c
2000-01-12 16:13:29 +00:00
@$( RM) @LEX_STEM@.c
1999-08-12 19:24:39 +00:00
1999-08-20 19:40:03 +00:00
- i n c l u d e $( DEPFILES )
2000-01-31 18:26:16 +00:00
afminstall : preinstall
2000-01-10 17:12:43 +00:00
$( INSTALL) -d $( datadir)
$( INSTALL) -d $( datadir) /wx
$( INSTALL) -d $( datadir) /wx/afm
$( INSTALL) -d $( datadir) /wx/gs_afm
$( INSTALL_DATA) $( top_srcdir) /misc/afm/*.afm $( datadir) /wx/afm
$( INSTALL_DATA) $( top_srcdir) /misc/gs_afm/*.afm $( datadir) /wx/gs_afm
2000-01-31 18:26:16 +00:00
# this is the real install target: copies the library, wx-config and the
# headers to the installation directory
1999-10-25 18:56:26 +00:00
preinstall : $( top_builddir ) /lib /@WX_TARGET_LIBRARY @ $( top_builddir ) /wx -config
1999-08-12 19:24:39 +00:00
@echo " "
@echo " Installing wxWindows..."
@echo " "
1999-08-17 15:55:25 +00:00
$( INSTALL) -d $( prefix)
$( INSTALL) -d $( bindir)
$( INSTALL) -d $( libdir)
1999-08-12 19:24:39 +00:00
$( INSTALL_SCRIPT) $( top_builddir) /wx-config $( bindir) /wx-config
$( INSTALL_PROGRAM) $( top_builddir) /lib/@WX_TARGET_LIBRARY@ $( libdir) /@WX_TARGET_LIBRARY@
1999-08-17 15:55:25 +00:00
$( INSTALL) -d $( libdir) /wx
$( INSTALL) -d $( libdir) /wx/include
$( INSTALL) -d $( libdir) /wx/include/wx
$( INSTALL) -d $( libdir) /wx/include/wx/@TOOLKIT_DIR@
1999-10-25 18:56:26 +00:00
$( INSTALL_DATA) $( top_builddir) /include/wx/@TOOLKIT_DIR@/setup.h $( libdir) /wx/include/wx/@TOOLKIT_DIR@/setup.h
1999-10-14 05:41:22 +00:00
1999-08-17 15:55:25 +00:00
$( INSTALL) -d $( includedir) /wx
2000-01-12 16:13:29 +00:00
@if test " $( USE_GUI) " = 1; then $( INSTALL) -d $( includedir) /wx/@TOOLKIT_DIR@; fi
@if test " $( USE_GUI) " = 1; then $( INSTALL) -d $( includedir) /wx/html; fi
@if test " $( USE_GUI) " = 1; then $( INSTALL) -d $( includedir) /wx/generic; fi
2000-01-31 18:26:16 +00:00
$( INSTALL) -d $( includedir) /wx/protocol
$( INSTALL) -d $( includedir) /wx/unix
1999-08-12 19:24:39 +00:00
@list= '$(HEADERS)' ; for p in $$ list; do \
$( INSTALL_DATA) $( top_srcdir) /include/wx/$$ p $( includedir) /wx/$$ p; \
echo " $( INSTALL_DATA) $( top_srcdir) /include/wx/ $$ p $( includedir) /wx/ $$ p " ; \
done
2000-01-12 16:13:29 +00:00
2000-01-31 18:26:16 +00:00
install : @AFMINSTALL @ @WX_ALL_INSTALLED @
1999-08-14 09:41:49 +00:00
@echo " "
1999-08-12 19:24:39 +00:00
@echo " The installation of wxWindows is finished. On certain"
1999-10-12 14:36:37 +00:00
@echo " platforms (e.g. Linux) you'll now have to run ldconfig"
2000-01-31 18:26:16 +00:00
@echo " if you installed a shared library and also modify"
@echo " LD_LIBRARY_PATH (or equivalent) environment variable."
1999-08-12 19:24:39 +00:00
@echo " "
2000-01-31 18:26:16 +00:00
@echo " wxWindows comes with no guarantees and doesn't claim"
1999-08-12 19:24:39 +00:00
@echo " to be suitable for any purpose."
@echo " "
@echo " Read the wxWindows Licence on licencing conditions."
@echo " "
uninstall :
@echo " "
@echo " Uninstalling wxWindows..."
@echo " "
@echo " Removing library..."
1999-08-17 15:55:25 +00:00
@$( RM) $( libdir) /@WX_TARGET_LIBRARY@
@$( RM) $( libdir) /@WX_LIBRARY_LINK1@
@$( RM) $( libdir) /@WX_LIBRARY_LINK2@
@$( RM) $( libdir) /@WX_LIBRARY_LINK3@
1999-08-12 19:24:39 +00:00
@echo " Removing helper files..."
1999-08-17 15:55:25 +00:00
@$( RM) $( libdir) /wx/include/wx/@TOOLKIT_DIR@/setup.h
@$( RM) $( bindir) /wx-config
1999-08-26 16:15:38 +00:00
@$( RM) $( datadir) /wx/afm/*
@$( RM) $( datadir) /wx/gs_afm/*
@rmdir $( datadir) /wx/gs_afm
@rmdir $( datadir) /wx/afm
@rmdir $( datadir) /wx
1999-08-12 19:24:39 +00:00
@echo " Removing headers..."
@list= '$(HEADERS)' ; for p in $$ list; do \
1999-08-17 15:55:25 +00:00
$( RM) $( includedir) /wx/$$ p; \
1999-08-12 19:24:39 +00:00
done
@echo " Removing directories..."
@if test -d $( libdir) /wx/include/wx/@TOOLKIT_DIR@; then rmdir $( libdir) /wx/include/wx/@TOOLKIT_DIR@; fi
@if test -d $( libdir) /wx/include/wx; then rmdir $( libdir) /wx/include/wx; fi
@if test -d $( libdir) /wx/include; then rmdir $( libdir) /wx/include; fi
@if test -d $( libdir) /wx; then rmdir $( libdir) /wx; fi
@if test -d $( includedir) /wx/gtk; then rmdir $( includedir) /wx/gtk; fi
@if test -d $( includedir) /wx/motif; then rmdir $( includedir) /wx/motif; fi
1999-08-26 16:15:38 +00:00
@if test -d $( includedir) /wx/msw; then rmdir $( includedir) /wx/msw; fi
1999-08-12 19:24:39 +00:00
@if test -d $( includedir) /wx/html; then rmdir $( includedir) /wx/html; fi
@if test -d $( includedir) /wx/unix; then rmdir $( includedir) /wx/unix; fi
@if test -d $( includedir) /wx/generic; then rmdir $( includedir) /wx/generic; fi
@if test -d $( includedir) /wx/protocol; then rmdir $( includedir) /wx/protocol; fi
@if test -d $( includedir) /wx; then rmdir $( includedir) /wx; fi
2000-01-31 18:26:16 +00:00
# this target should copy only the files common to really all ports (including
# wxBase) to the dist dir
ALL_DIST : distclean
1999-08-13 10:33:08 +00:00
mkdir _dist_dir
mkdir $( DISTDIR)
1999-10-25 18:56:26 +00:00
cp $( WXDIR) /configure.in $( DISTDIR)
1999-08-13 10:33:08 +00:00
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
2000-01-31 18:26:16 +00:00
# this target is the common part of distribution script for all GUI toolkits,
# but is not used when building wxBase distribution
ALL_GUI_DIST : ALL_DIST
cp $( WXDIR) /wx$( TOOLKIT) .spec $( DISTDIR)
1999-08-13 10:33:08 +00:00
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/protocol
2000-01-31 18:26:16 +00:00
mkdir $( DISTDIR) /include/wx/unix
cp $( INCDIR) /wx/*.h $( DISTDIR) /include/wx
cp $( INCDIR) /wx/*.inl $( DISTDIR) /include/wx
1999-08-13 10:33:08 +00:00
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
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /src
mkdir $( DISTDIR) /src/common
mkdir $( DISTDIR) /src/generic
mkdir $( DISTDIR) /src/html
mkdir $( DISTDIR) /src/html/bitmaps
mkdir $( DISTDIR) /src/$( TOOLKITDIR)
mkdir $( DISTDIR) /src/png
mkdir $( DISTDIR) /src/jpeg
1999-12-04 16:40:27 +00:00
mkdir $( DISTDIR) /src/tiff
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /src/zlib
1999-10-12 14:36:37 +00:00
mkdir $( DISTDIR) /src/iodbc
2000-01-31 18:26:16 +00:00
mkdir $( DISTDIR) /src/unix
cp $( WXDIR) /@PORT_FILES@ $( DISTDIR) /@PORT_FILES@
1999-08-13 14:21:06 +00:00
cp $( SRCDIR) /*.in $( DISTDIR) /src
cp $( COMMDIR) /*.cpp $( DISTDIR) /src/common
cp $( COMMDIR) /*.c $( DISTDIR) /src/common
2000-01-31 18:26:16 +00:00
cp $( UNIXDIR) /*.c $( DISTDIR) /src/unix
cp $( UNIXDIR) /*.cpp $( DISTDIR) /src/unix
1999-08-13 14:21:06 +00:00
cp $( COMMDIR) /*.inc $( DISTDIR) /src/common
cp $( COMMDIR) /*.l $( DISTDIR) /src/common
cp $( COMMDIR) /*.h $( DISTDIR) /src/common
cp $( COMMDIR) /*.y $( DISTDIR) /src/common
cp $( GENDIR) /*.cpp $( DISTDIR) /src/generic
cp $( HTMLDIR) /*.cpp $( DISTDIR) /src/html
cp $( HTMLDIR) /bitmaps/*.xpm $( DISTDIR) /src/html/bitmaps
cp $( PNGDIR) /*.h $( DISTDIR) /src/png
cp $( PNGDIR) /*.c $( DISTDIR) /src/png
cp $( PNGDIR) /README $( DISTDIR) /src/png
cp $( ZLIBDIR) /*.h $( DISTDIR) /src/zlib
cp $( ZLIBDIR) /*.c $( DISTDIR) /src/zlib
cp $( ZLIBDIR) /README $( DISTDIR) /src/zlib
cp $( JPEGDIR) /*.h $( DISTDIR) /src/jpeg
cp $( JPEGDIR) /*.c $( DISTDIR) /src/jpeg
cp $( JPEGDIR) /README $( DISTDIR) /src/jpeg
1999-12-04 16:40:27 +00:00
cp $( TIFFDIR) /*.h $( DISTDIR) /src/tiff
cp $( TIFFDIR) /*.c $( DISTDIR) /src/tiff
cp $( TIFFDIR) /README $( DISTDIR) /src/tiff
1999-10-12 14:36:37 +00:00
cp $( ODBCDIR) /*.h $( DISTDIR) /src/iodbc
cp $( ODBCDIR) /*.c $( DISTDIR) /src/iodbc
cp $( ODBCDIR) /*.ci $( DISTDIR) /src/iodbc
cp $( ODBCDIR) /*.exp $( DISTDIR) /src/iodbc
cp $( ODBCDIR) /README $( DISTDIR) /src/iodbc
cp $( ODBCDIR) /NEWS $( DISTDIR) /src/iodbc
cp $( ODBCDIR) /Changes.log $( DISTDIR) /src/iodbc
1999-08-13 10:33:08 +00:00
2000-01-31 18:26:16 +00:00
BASE_DIST : ALL_DIST
mkdir $( DISTDIR) /include
mkdir $( DISTDIR) /include/wx
mkdir $( DISTDIR) /include/wx/protocol
mkdir $( DISTDIR) /include/wx/unix
mkdir $( DISTDIR) /src
mkdir $( DISTDIR) /src/common
mkdir $( DISTDIR) /src/unix
cp $( WXDIR) /@PORT_FILES@ $( DISTDIR) /@PORT_FILES@
cp $( WXDIR) /@RPM_FILES@ $( DISTDIR) /@RPM_FILES@
cp $( WXDIR) /@RPM_SPEC@ $( DISTDIR) /@RPM_SPEC@
2000-01-31 18:42:49 +00:00
cp $( WXDIR) /wxBase.dsp $( DISTDIR)
2000-01-31 18:26:16 +00:00
cp $( DOCDIR) /install.txt $( DISTDIR) /INSTALL.txt
cp $( DOCDIR) /changes.txt $( DISTDIR) /CHANGES.txt
cp $( DOCDIR) /readme.txt $( DISTDIR) /README.txt
cp $( DOCDIR) /todo.txt $( DISTDIR) /TODO.txt
cp $( SRCDIR) /*.in $( DISTDIR) /src
list = '$(HEADERS)' ; for p in $$ list; do \
cp $( WXDIR) /include/wx/$$ p $( DISTDIR) /include/wx/$$ p; \
done
list = '$(SOURCES)' ; for p in $$ list; do \
cp $( WXDIR) /src/$$ p $( DISTDIR) /src/$$ p; \
done
GTK_DIST : ALL_GUI_DIST
1999-08-13 14:21:06 +00:00
cp $( WXDIR) /wxGTK.spec $( DISTDIR)
1999-08-13 10:33:08 +00:00
cp $( INCDIR) /wx/gtk/*.h $( DISTDIR) /include/wx/gtk
1999-08-13 14:21:06 +00:00
cp $( INCDIR) /wx/gtk/*.xpm $( DISTDIR) /include/wx/gtk
cp $( GTKDIR) /*.cpp $( DISTDIR) /src/gtk
cp $( GTKDIR) /*.c $( DISTDIR) /src/gtk
cp $( GTKDIR) /*.xbm $( DISTDIR) /src/gtk
1999-08-13 10:33:08 +00:00
2000-01-31 18:26:16 +00:00
MOTIF_DIST : ALL_GUI_DIST
1999-08-13 14:21:06 +00:00
cp $( WXDIR) /wxMOTIF.spec $( DISTDIR)
1999-08-13 10:33:08 +00:00
cp $( INCDIR) /wx/motif/*.h $( DISTDIR) /include/wx/motif
1999-08-13 14:21:06 +00:00
cp $( MOTIFDIR) /*.cpp $( DISTDIR) /src/motif
cp $( MOTIFDIR) /*.xbm $( DISTDIR) /src/motif
mkdir $( DISTDIR) /src/motif/xmcombo
cp $( MOTIFDIR) /xmcombo/*.c $( DISTDIR) /src/motif/xmcombo
cp $( MOTIFDIR) /xmcombo/*.h $( DISTDIR) /src/motif/xmcombo
cp $( MOTIFDIR) /xmcombo/copying.txt $( DISTDIR) /src/motif/xmcombo
1999-08-13 10:33:08 +00:00
2000-01-31 18:26:16 +00:00
MSW_DIST : ALL_GUI_DIST
1999-08-13 14:21:06 +00:00
cp $( WXDIR) /wxWINE.spec $( DISTDIR)
1999-08-13 10:33:08 +00:00
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
1999-08-13 14:21:06 +00:00
cp $( MSWDIR) /*.cpp $( DISTDIR) /src/msw
cp $( MSWDIR) /*.c $( DISTDIR) /src/msw
cp $( MSWDIR) /*.def $( DISTDIR) /src/msw
mkdir $( DISTDIR) /src/msw/ole
cp $( MSWDIR) /ole/*.cpp $( DISTDIR) /src/msw/ole
2000-01-31 18:26:16 +00:00
DEMOS_DIST : ALL_GUI_DIST
2000-01-14 17:08:42 +00:00
mkdir $( DISTDIR) /demos
cp $( DEMODIR) /Makefile.in $( DISTDIR) /demos
2000-02-15 12:56:16 +00:00
cp $( DEMODIR) /configure $( DISTDIR) /demos
cp $( DEMODIR) /configure.in $( DISTDIR) /demos
cp -R $( DEMODIR) /dbbrowse $( DISTDIR) /demos/dbbrowse
2000-01-14 17:08:42 +00:00
mkdir $( DISTDIR) /demos/bombs
cp $( DEMODIR) /bombs/Makefile.in $( DISTDIR) /demos/bombs
cp $( DEMODIR) /bombs/makefile.unx $( DISTDIR) /demos/bombs
cp $( DEMODIR) /bombs/*.cpp $( DISTDIR) /demos/bombs
cp $( DEMODIR) /bombs/*.h $( DISTDIR) /demos/bombs
cp $( DEMODIR) /bombs/*.xpm $( DISTDIR) /demos/bombs
cp $( DEMODIR) /bombs/readme.txt $( DISTDIR) /demos/bombs
mkdir $( DISTDIR) /demos/forty
cp $( DEMODIR) /forty/Makefile.in $( DISTDIR) /demos/forty
cp $( DEMODIR) /forty/makefile.unx $( DISTDIR) /demos/forty
cp $( DEMODIR) /forty/*.h $( DISTDIR) /demos/forty
cp $( DEMODIR) /forty/*.cpp $( DISTDIR) /demos/forty
cp $( DEMODIR) /forty/*.xpm $( DISTDIR) /demos/forty
cp $( DEMODIR) /forty/*.xbm $( DISTDIR) /demos/forty
mkdir $( DISTDIR) /demos/life
mkdir $( DISTDIR) /demos/life/bitmaps
cp $( DEMODIR) /life/Makefile.in $( DISTDIR) /demos/life
cp $( DEMODIR) /life/makefile.unx $( DISTDIR) /demos/life
cp $( DEMODIR) /life/*.cpp $( DISTDIR) /demos/life
cp $( DEMODIR) /life/*.h $( DISTDIR) /demos/life
cp $( DEMODIR) /life/*.xpm $( DISTDIR) /demos/life
cp $( DEMODIR) /life/bitmaps/*.xpm $( DISTDIR) /demos/life/bitmaps
mkdir $( DISTDIR) /demos/poem
cp $( DEMODIR) /poem/Makefile.in $( DISTDIR) /demos/poem
2000-01-22 18:02:20 +00:00
cp $( DEMODIR) /poem/makefile.unx $( DISTDIR) /demos/poem
2000-01-14 17:08:42 +00:00
cp $( DEMODIR) /poem/*.cpp $( DISTDIR) /demos/poem
cp $( DEMODIR) /poem/*.xpm $( DISTDIR) /demos/poem
cp $( DEMODIR) /poem/*.dat $( DISTDIR) /demos/poem
cp $( DEMODIR) /poem/*.txt $( DISTDIR) /demos/poem
mkdir $( DISTDIR) /demos/fractal
cp $( DEMODIR) /fractal/Makefile.in $( DISTDIR) /demos/fractal
cp $( DEMODIR) /fractal/makefile.unx $( DISTDIR) /demos/fractal
cp $( DEMODIR) /fractal/*.cpp $( DISTDIR) /demos/fractal
2000-01-31 18:26:16 +00:00
SAMPLES_DIST : ALL_GUI_DIST
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /samples
cp $( SAMPDIR) /Makefile.in $( DISTDIR) /samples
2000-01-31 18:26:16 +00:00
cp $( SAMPDIR) /configure $( DISTDIR) /samples
cp $( SAMPDIR) /configure.in $( DISTDIR) /samples
1999-11-21 19:28:15 +00:00
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /samples/caret
cp $( SAMPDIR) /caret/Makefile.in $( DISTDIR) /samples/caret
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /caret/makefile.unx $( DISTDIR) /samples/caret
1999-08-13 14:21:06 +00:00
cp $( SAMPDIR) /caret/*.cpp $( DISTDIR) /samples/caret
cp $( SAMPDIR) /caret/*.xpm $( DISTDIR) /samples/caret
1999-11-21 19:28:15 +00:00
2000-01-03 17:11:48 +00:00
mkdir $( DISTDIR) /samples/calendar
cp $( SAMPDIR) /calendar/Makefile.in $( DISTDIR) /samples/calendar
cp $( SAMPDIR) /calendar/makefile.unx $( DISTDIR) /samples/calendar
cp $( SAMPDIR) /calendar/*.cpp $( DISTDIR) /samples/calendar
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /samples/config
cp $( SAMPDIR) /config/Makefile.in $( DISTDIR) /samples/config
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /config/makefile.unx $( DISTDIR) /samples/config
1999-08-13 14:21:06 +00:00
cp $( SAMPDIR) /config/*.cpp $( DISTDIR) /samples/config
1999-11-21 19:28:15 +00:00
2000-01-03 17:11:48 +00:00
mkdir $( DISTDIR) /samples/console
cp $( SAMPDIR) /console/Makefile.in $( DISTDIR) /samples/console
cp $( SAMPDIR) /console/makefile.unx $( DISTDIR) /samples/console
cp $( SAMPDIR) /console/*.cpp $( DISTDIR) /samples/console
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /samples/controls
mkdir $( DISTDIR) /samples/controls/icons
cp $( SAMPDIR) /controls/Makefile.in $( DISTDIR) /samples/controls
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /controls/makefile.unx $( DISTDIR) /samples/controls
1999-08-13 14:21:06 +00:00
cp $( SAMPDIR) /controls/*.cpp $( DISTDIR) /samples/controls
cp $( SAMPDIR) /controls/*.xpm $( DISTDIR) /samples/controls
cp $( SAMPDIR) /controls/icons/*.??? $( DISTDIR) /samples/controls/icons
1999-11-21 19:28:15 +00:00
1999-08-13 14:21:06 +00:00
mkdir $( DISTDIR) /samples/checklst
cp $( SAMPDIR) /checklst/Makefile.in $( DISTDIR) /samples/checklst
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /checklst/makefile.unx $( DISTDIR) /samples/checklst
1999-08-13 14:21:06 +00:00
cp $( SAMPDIR) /checklst/*.cpp $( DISTDIR) /samples/checklst
cp $( SAMPDIR) /checklst/*.xpm $( DISTDIR) /samples/checklst
1999-11-21 19:28:15 +00:00
1999-10-12 09:44:18 +00:00
mkdir $( DISTDIR) /samples/db
cp $( SAMPDIR) /db/Makefile.in $( DISTDIR) /samples/db
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /db/makefile.unx $( DISTDIR) /samples/db
1999-10-12 09:44:18 +00:00
cp $( SAMPDIR) /db/*.cpp $( DISTDIR) /samples/db
cp $( SAMPDIR) /db/*.h $( DISTDIR) /samples/db
cp $( SAMPDIR) /db/*.xpm $( DISTDIR) /samples/db
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/dialogs
cp $( SAMPDIR) /dialogs/Makefile.in $( DISTDIR) /samples/dialogs
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /dialogs/makefile.unx $( DISTDIR) /samples/dialogs
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /dialogs/*.cpp $( DISTDIR) /samples/dialogs
cp $( SAMPDIR) /dialogs/*.h $( DISTDIR) /samples/dialogs
cp $( SAMPDIR) /dialogs/*.txt $( DISTDIR) /samples/dialogs
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/dnd
cp $( SAMPDIR) /dnd/Makefile.in $( DISTDIR) /samples/dnd
1999-11-15 17:31:10 +00:00
cp $( SAMPDIR) /dnd/makefile.unx $( DISTDIR) /samples/dnd
1999-11-11 15:41:43 +00:00
cp $( SAMPDIR) /dnd/*.wxr $( DISTDIR) /samples/dnd
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /dnd/*.cpp $( DISTDIR) /samples/dnd
cp $( SAMPDIR) /dnd/*.xpm $( DISTDIR) /samples/dnd
cp $( SAMPDIR) /dnd/*.txt $( DISTDIR) /samples/dnd
cp $( SAMPDIR) /dnd/*.png $( DISTDIR) /samples/dnd
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/docview
cp $( SAMPDIR) /docview/Makefile.in $( DISTDIR) /samples/docview
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /docview/makefile.unx $( DISTDIR) /samples/docview
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /docview/*.cpp $( DISTDIR) /samples/docview
cp $( SAMPDIR) /docview/*.h $( DISTDIR) /samples/docview
cp $( SAMPDIR) /docview/*.xpm $( DISTDIR) /samples/docview
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/docvwmdi
cp $( SAMPDIR) /docvwmdi/Makefile.in $( DISTDIR) /samples/docvwmdi
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /docvwmdi/makefile.unx $( DISTDIR) /samples/docvwmdi
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /docvwmdi/*.cpp $( DISTDIR) /samples/docvwmdi
cp $( SAMPDIR) /docvwmdi/*.h $( DISTDIR) /samples/docvwmdi
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/drawing
cp $( SAMPDIR) /drawing/Makefile.in $( DISTDIR) /samples/drawing
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /drawing/makefile.unx $( DISTDIR) /samples/drawing
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /drawing/*.cpp $( DISTDIR) /samples/drawing
cp $( SAMPDIR) /drawing/*.xpm $( DISTDIR) /samples/drawing
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/dynamic
cp $( SAMPDIR) /dynamic/Makefile.in $( DISTDIR) /samples/dynamic
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /dynamic/makefile.unx $( DISTDIR) /samples/dynamic
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /dynamic/*.cpp $( DISTDIR) /samples/dynamic
cp $( SAMPDIR) /dynamic/*.xpm $( DISTDIR) /samples/dynamic
1999-11-21 19:28:15 +00:00
2000-01-22 18:02:20 +00:00
mkdir $( DISTDIR) /samples/exec
cp $( SAMPDIR) /exec/Makefile.in $( DISTDIR) /samples/exec
cp $( SAMPDIR) /exec/*.cpp $( DISTDIR) /samples/exec
mkdir $( DISTDIR) /samples/ipc
cp $( SAMPDIR) /ipc/Makefile.in $( DISTDIR) /samples/ipc
cp $( SAMPDIR) /ipc/*.xpm $( DISTDIR) /samples/ipc
cp $( SAMPDIR) /ipc/*.h $( DISTDIR) /samples/ipc
cp $( SAMPDIR) /ipc/*.cpp $( DISTDIR) /samples/ipc
2000-01-03 17:11:48 +00:00
mkdir $( DISTDIR) /samples/font
cp $( SAMPDIR) /font/Makefile.in $( DISTDIR) /samples/font
cp $( SAMPDIR) /font/makefile.unx $( DISTDIR) /samples/font
cp $( SAMPDIR) /font/*.cpp $( DISTDIR) /samples/font
mkdir $( DISTDIR) /samples/grid
cp $( SAMPDIR) /grid/Makefile.in $( DISTDIR) /samples/grid
cp $( SAMPDIR) /grid/makefile.unx $( DISTDIR) /samples/grid
cp $( SAMPDIR) /grid/*.cpp $( DISTDIR) /samples/grid
1999-11-21 19:28:15 +00:00
mkdir $( DISTDIR) /samples/help
mkdir $( DISTDIR) /samples/help/doc
cp $( SAMPDIR) /help/Makefile.in $( DISTDIR) /samples/help
cp $( SAMPDIR) /help/makefile.unx $( DISTDIR) /samples/help
cp $( SAMPDIR) /help/*.cpp $( DISTDIR) /samples/help
cp $( SAMPDIR) /help/*.xpm $( DISTDIR) /samples/help
cp $( SAMPDIR) /help/doc/*.* $( DISTDIR) /samples/help/doc
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/html
cp $( SAMPDIR) /html/Makefile.in $( DISTDIR) /samples/html
mkdir $( DISTDIR) /samples/html/about
cp $( SAMPDIR) /html/about/Makefile.in $( DISTDIR) /samples/html/about
cp $( SAMPDIR) /html/about/*.cpp $( DISTDIR) /samples/html/about
mkdir $( DISTDIR) /samples/html/about/data
cp $( SAMPDIR) /html/about/data/*.htm $( DISTDIR) /samples/html/about/data
cp $( SAMPDIR) /html/about/data/*.png $( DISTDIR) /samples/html/about/data
mkdir $( DISTDIR) /samples/html/help
cp $( SAMPDIR) /html/help/Makefile.in $( DISTDIR) /samples/html/help
cp $( SAMPDIR) /html/help/*.cpp $( DISTDIR) /samples/html/help
mkdir $( DISTDIR) /samples/html/help/helpfiles
cp $( SAMPDIR) /html/help/helpfiles/*.??? $( DISTDIR) /samples/html/help/helpfiles
1999-11-01 18:20:39 +00:00
mkdir $( DISTDIR) /samples/html/helpview
cp $( SAMPDIR) /html/helpview/Makefile.in $( DISTDIR) /samples/html/helpview
cp $( SAMPDIR) /html/helpview/*.cpp $( DISTDIR) /samples/html/helpview
cp $( SAMPDIR) /html/helpview/*.zip $( DISTDIR) /samples/html/helpview
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/html/printing
cp $( SAMPDIR) /html/printing/Makefile.in $( DISTDIR) /samples/html/printing
cp $( SAMPDIR) /html/printing/*.cpp $( DISTDIR) /samples/html/printing
cp $( SAMPDIR) /html/printing/*.htm $( DISTDIR) /samples/html/printing
mkdir $( DISTDIR) /samples/html/test
cp $( SAMPDIR) /html/test/Makefile.in $( DISTDIR) /samples/html/test
cp $( SAMPDIR) /html/test/*.cpp $( DISTDIR) /samples/html/test
cp $( SAMPDIR) /html/test/*.bmp $( DISTDIR) /samples/html/test
cp $( SAMPDIR) /html/test/*.png $( DISTDIR) /samples/html/test
cp $( SAMPDIR) /html/test/*.htm $( DISTDIR) /samples/html/test
cp $( SAMPDIR) /html/test/*.html $( DISTDIR) /samples/html/test
mkdir $( DISTDIR) /samples/html/virtual
cp $( SAMPDIR) /html/virtual/Makefile.in $( DISTDIR) /samples/html/virtual
cp $( SAMPDIR) /html/virtual/*.cpp $( DISTDIR) /samples/html/virtual
cp $( SAMPDIR) /html/virtual/*.htm $( DISTDIR) /samples/html/virtual
mkdir $( DISTDIR) /samples/html/widget
cp $( SAMPDIR) /html/widget/Makefile.in $( DISTDIR) /samples/html/widget
cp $( SAMPDIR) /html/widget/*.cpp $( DISTDIR) /samples/html/widget
cp $( SAMPDIR) /html/widget/*.htm $( DISTDIR) /samples/html/widget
mkdir $( DISTDIR) /samples/html/zip
cp $( SAMPDIR) /html/zip/Makefile.in $( DISTDIR) /samples/html/zip
cp $( SAMPDIR) /html/zip/*.cpp $( DISTDIR) /samples/html/zip
cp $( SAMPDIR) /html/zip/*.htm $( DISTDIR) /samples/html/zip
cp $( SAMPDIR) /html/zip/*.zip $( DISTDIR) /samples/html/zip
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/image
cp $( SAMPDIR) /image/Makefile.in $( DISTDIR) /samples/image
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /image/makefile.unx $( DISTDIR) /samples/image
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /image/*.cpp $( DISTDIR) /samples/image
cp $( SAMPDIR) /image/horse.* $( DISTDIR) /samples/image
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /image/smile.xbm $( DISTDIR) /samples/image
2000-01-26 19:26:02 +00:00
cp $( SAMPDIR) /image/smile.xpm $( DISTDIR) /samples/image
2000-01-03 17:11:48 +00:00
1999-10-12 14:36:37 +00:00
mkdir $( DISTDIR) /samples/internat
mkdir $( DISTDIR) /samples/internat/de
mkdir $( DISTDIR) /samples/internat/fr
cp $( SAMPDIR) /internat/Makefile.in $( DISTDIR) /samples/internat
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /internat/makefile.unx $( DISTDIR) /samples/internat
1999-10-12 14:36:37 +00:00
cp $( SAMPDIR) /internat/*.cpp $( DISTDIR) /samples/internat
cp $( SAMPDIR) /internat/*.xpm $( DISTDIR) /samples/internat
cp $( SAMPDIR) /internat/*.txt $( DISTDIR) /samples/internat
cp $( SAMPDIR) /internat/*.po $( DISTDIR) /samples/internat
cp $( SAMPDIR) /internat/fr/*.po $( DISTDIR) /samples/internat/fr
cp $( SAMPDIR) /internat/de/*.mo $( DISTDIR) /samples/internat/de
cp $( SAMPDIR) /internat/fr/*.po $( DISTDIR) /samples/internat/fr
cp $( SAMPDIR) /internat/de/*.mo $( DISTDIR) /samples/internat/de
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/layout
cp $( SAMPDIR) /layout/Makefile.in $( DISTDIR) /samples/layout
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /layout/makefile.unx $( DISTDIR) /samples/layout
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /layout/*.cpp $( DISTDIR) /samples/layout
cp $( SAMPDIR) /layout/*.h $( DISTDIR) /samples/layout
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/listctrl
1999-11-21 19:28:15 +00:00
mkdir $( DISTDIR) /samples/listctrl/bitmaps
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /listctrl/Makefile.in $( DISTDIR) /samples/listctrl
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /listctrl/makefile.unx $( DISTDIR) /samples/listctrl
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /listctrl/*.cpp $( DISTDIR) /samples/listctrl
cp $( SAMPDIR) /listctrl/*.h $( DISTDIR) /samples/listctrl
cp $( SAMPDIR) /listctrl/*.xpm $( DISTDIR) /samples/listctrl
1999-10-17 14:55:39 +00:00
cp $( SAMPDIR) /listctrl/bitmaps/*.xpm $( DISTDIR) /samples/listctrl/bitmaps
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/mdi
1999-11-21 19:28:15 +00:00
mkdir $( DISTDIR) /samples/mdi/bitmaps
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /mdi/Makefile.in $( DISTDIR) /samples/mdi
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /mdi/makefile.unx $( DISTDIR) /samples/mdi
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /mdi/*.cpp $( DISTDIR) /samples/mdi
cp $( SAMPDIR) /mdi/*.h $( DISTDIR) /samples/mdi
cp $( SAMPDIR) /mdi/*.xpm $( DISTDIR) /samples/mdi
1999-10-17 14:55:39 +00:00
cp $( SAMPDIR) /mdi/bitmaps/*.xpm $( DISTDIR) /samples/mdi/bitmaps
1999-11-21 19:28:15 +00:00
mkdir $( DISTDIR) /samples/memcheck
cp $( SAMPDIR) /memcheck/Makefile.in $( DISTDIR) /samples/memcheck
cp $( SAMPDIR) /memcheck/makefile.unx $( DISTDIR) /samples/memcheck
cp $( SAMPDIR) /memcheck/*.cpp $( DISTDIR) /samples/memcheck
cp $( SAMPDIR) /memcheck/*.xpm $( DISTDIR) /samples/memcheck
mkdir $( DISTDIR) /samples/menu
cp $( SAMPDIR) /menu/Makefile.in $( DISTDIR) /samples/menu
cp $( SAMPDIR) /menu/makefile.unx $( DISTDIR) /samples/menu
cp $( SAMPDIR) /menu/*.cpp $( DISTDIR) /samples/menu
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/minifram
1999-11-21 19:28:15 +00:00
mkdir $( DISTDIR) /samples/minifram/bitmaps
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /minifram/Makefile.in $( DISTDIR) /samples/minifram
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /minifram/makefile.unx $( DISTDIR) /samples/minifram
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /minifram/*.cpp $( DISTDIR) /samples/minifram
cp $( SAMPDIR) /minifram/*.h $( DISTDIR) /samples/minifram
cp $( SAMPDIR) /minifram/*.xpm $( DISTDIR) /samples/minifram
1999-10-17 14:55:39 +00:00
cp $( SAMPDIR) /minifram/bitmaps/*.xpm $( DISTDIR) /samples/minifram/bitmaps
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/minimal
cp $( SAMPDIR) /minimal/Makefile.in $( DISTDIR) /samples/minimal
1999-11-21 19:28:15 +00:00
cp $( SAMPDIR) /minimal/makefile.unx $( DISTDIR) /samples/minimal
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /minimal/*.cpp $( DISTDIR) /samples/minimal
cp $( SAMPDIR) /minimal/*.xpm $( DISTDIR) /samples/minimal
1999-11-21 19:28:15 +00:00
2000-01-14 17:08:42 +00:00
mkdir $( DISTDIR) /samples/dialup
cp $( SAMPDIR) /dialup/Makefile.in $( DISTDIR) /samples/dialup
cp $( SAMPDIR) /dialup/makefile.unx $( DISTDIR) /samples/dialup
cp $( SAMPDIR) /dialup/*.cpp $( DISTDIR) /samples/dialup
1999-11-21 19:28:15 +00:00
1999-10-06 05:13:20 +00:00
mkdir $( DISTDIR) /samples/newgrid
cp $( SAMPDIR) /newgrid/Makefile.in $( DISTDIR) /samples/newgrid
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /newgrid/makefile.unx $( DISTDIR) /samples/newgrid
1999-10-06 05:13:20 +00:00
cp $( SAMPDIR) /newgrid/*.cpp $( DISTDIR) /samples/newgrid
cp $( SAMPDIR) /newgrid/*.h $( DISTDIR) /samples/newgrid
1999-11-21 19:28:15 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/notebook
cp $( SAMPDIR) /notebook/Makefile.in $( DISTDIR) /samples/notebook
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /notebook/makefile.unx $( DISTDIR) /samples/notebook
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /notebook/*.cpp $( DISTDIR) /samples/notebook
cp $( SAMPDIR) /notebook/*.h $( DISTDIR) /samples/notebook
1999-11-21 19:28:15 +00:00
1999-10-12 09:44:18 +00:00
mkdir $( DISTDIR) /samples/png
cp $( SAMPDIR) /png/Makefile.in $( DISTDIR) /samples/png
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /png/makefile.unx $( DISTDIR) /samples/png
1999-10-12 09:44:18 +00:00
cp $( SAMPDIR) /png/*.cpp $( DISTDIR) /samples/png
cp $( SAMPDIR) /png/*.h $( DISTDIR) /samples/png
cp $( SAMPDIR) /png/*.png $( DISTDIR) /samples/png
1999-11-21 19:28:15 +00:00
2000-01-03 17:11:48 +00:00
mkdir $( DISTDIR) /samples/printing
cp $( SAMPDIR) /printing/Makefile.in $( DISTDIR) /samples/printing
cp $( SAMPDIR) /printing/makefile.unx $( DISTDIR) /samples/printing
cp $( SAMPDIR) /printing/*.cpp $( DISTDIR) /samples/printing
cp $( SAMPDIR) /printing/*.h $( DISTDIR) /samples/printing
cp $( SAMPDIR) /printing/*.xpm $( DISTDIR) /samples/printing
cp $( SAMPDIR) /printing/*.xbm $( DISTDIR) /samples/printing
1999-10-13 15:35:55 +00:00
mkdir $( DISTDIR) /samples/resource
cp $( SAMPDIR) /resource/Makefile.in $( DISTDIR) /samples/resource
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /resource/makefile.unx $( DISTDIR) /samples/resource
1999-10-13 15:35:55 +00:00
cp $( SAMPDIR) /resource/*.cpp $( DISTDIR) /samples/resource
cp $( SAMPDIR) /resource/*.h $( DISTDIR) /samples/resource
cp $( SAMPDIR) /resource/*.wxr $( DISTDIR) /samples/resource
1999-11-21 19:28:15 +00:00
2000-02-06 17:13:14 +00:00
mkdir $( DISTDIR) /samples/rotate
cp $( SAMPDIR) /rotate/Makefile.in $( DISTDIR) /samples/rotate
cp $( SAMPDIR) /rotate/makefile.unx $( DISTDIR) /samples/rotate
cp $( SAMPDIR) /rotate/*.cpp $( DISTDIR) /samples/rotate
cp $( SAMPDIR) /rotate/*.bmp $( DISTDIR) /samples/rotate
1999-10-13 15:35:55 +00:00
mkdir $( DISTDIR) /samples/richedit
cp $( SAMPDIR) /richedit/Makefile.in $( DISTDIR) /samples/richedit
cp $( SAMPDIR) /richedit/*.cpp $( DISTDIR) /samples/richedit
cp $( SAMPDIR) /richedit/*.h $( DISTDIR) /samples/richedit
cp $( SAMPDIR) /richedit/*.xpm $( DISTDIR) /samples/richedit
cp $( SAMPDIR) /richedit/README $( DISTDIR) /samples/richedit
cp $( SAMPDIR) /richedit/TODO $( DISTDIR) /samples/richedit
2000-01-03 17:11:48 +00:00
2000-02-10 18:43:33 +00:00
mkdir $( DISTDIR) /samples/plot
cp $( SAMPDIR) /plot/Makefile.in $( DISTDIR) /samples/plot
cp $( SAMPDIR) /plot/makefile.unx $( DISTDIR) /samples/plot
cp $( SAMPDIR) /plot/*.cpp $( DISTDIR) /samples/plot
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/proplist
cp $( SAMPDIR) /proplist/Makefile.in $( DISTDIR) /samples/proplist
cp $( SAMPDIR) /proplist/*.cpp $( DISTDIR) /samples/proplist
cp $( SAMPDIR) /proplist/*.h $( DISTDIR) /samples/proplist
2000-01-03 17:11:48 +00:00
1999-11-14 19:25:07 +00:00
mkdir $( DISTDIR) /samples/propsize
cp $( SAMPDIR) /propsize/Makefile.in $( DISTDIR) /samples/propsize
cp $( SAMPDIR) /propsize/*.cpp $( DISTDIR) /samples/propsize
cp $( SAMPDIR) /propsize/*.xpm $( DISTDIR) /samples/propsize
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/sashtest
cp $( SAMPDIR) /sashtest/Makefile.in $( DISTDIR) /samples/sashtest
cp $( SAMPDIR) /sashtest/*.cpp $( DISTDIR) /samples/sashtest
cp $( SAMPDIR) /sashtest/*.h $( DISTDIR) /samples/sashtest
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/scroll
cp $( SAMPDIR) /scroll/Makefile.in $( DISTDIR) /samples/scroll
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /scroll/makefile.unx $( DISTDIR) /samples/scroll
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /scroll/*.cpp $( DISTDIR) /samples/scroll
2000-01-03 17:11:48 +00:00
1999-10-17 14:55:39 +00:00
mkdir $( DISTDIR) /samples/scrollsub
cp $( SAMPDIR) /scrollsub/Makefile.in $( DISTDIR) /samples/scrollsub
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /scrollsub/makefile.unx $( DISTDIR) /samples/scrollsub
1999-10-17 14:55:39 +00:00
cp $( SAMPDIR) /scrollsub/*.cpp $( DISTDIR) /samples/scrollsub
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/splitter
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /splitter/makefile.unx $( DISTDIR) /samples/splitter
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /splitter/Makefile.in $( DISTDIR) /samples/splitter
cp $( SAMPDIR) /splitter/*.cpp $( DISTDIR) /samples/splitter
2000-01-03 17:11:48 +00:00
2000-02-04 20:27:10 +00:00
mkdir $( DISTDIR) /samples/statbar
cp $( SAMPDIR) /statbar/Makefile.in $( DISTDIR) /samples/statbar
cp $( SAMPDIR) /statbar/*.cpp $( DISTDIR) /samples/statbar
cp $( SAMPDIR) /statbar/*.xpm $( DISTDIR) /samples/statbar
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/text
cp $( SAMPDIR) /text/Makefile.in $( DISTDIR) /samples/text
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /text/makefile.unx $( DISTDIR) /samples/text
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /text/*.cpp $( DISTDIR) /samples/text
cp $( SAMPDIR) /text/*.xpm $( DISTDIR) /samples/text
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/thread
cp $( SAMPDIR) /thread/Makefile.in $( DISTDIR) /samples/thread
2000-01-03 17:11:48 +00:00
cp $( SAMPDIR) /thread/makefile.unx $( DISTDIR) /samples/thread
1999-08-25 16:39:29 +00:00
cp $( SAMPDIR) /thread/*.cpp $( DISTDIR) /samples/thread
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/toolbar
cp $( SAMPDIR) /toolbar/Makefile.in $( DISTDIR) /samples/toolbar
cp $( SAMPDIR) /toolbar/*.cpp $( DISTDIR) /samples/toolbar
cp $( SAMPDIR) /toolbar/*.xpm $( DISTDIR) /samples/toolbar
1999-10-17 14:55:39 +00:00
mkdir $( DISTDIR) /samples/toolbar/bitmaps
cp $( SAMPDIR) /toolbar/bitmaps/*.xpm $( DISTDIR) /samples/toolbar/bitmaps
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/treectrl
cp $( SAMPDIR) /treectrl/Makefile.in $( DISTDIR) /samples/treectrl
cp $( SAMPDIR) /treectrl/*.cpp $( DISTDIR) /samples/treectrl
cp $( SAMPDIR) /treectrl/*.h $( DISTDIR) /samples/treectrl
cp $( SAMPDIR) /treectrl/*.xpm $( DISTDIR) /samples/treectrl
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/typetest
cp $( SAMPDIR) /typetest/Makefile.in $( DISTDIR) /samples/typetest
cp $( SAMPDIR) /typetest/*.cpp $( DISTDIR) /samples/typetest
cp $( SAMPDIR) /typetest/*.h $( DISTDIR) /samples/typetest
cp $( SAMPDIR) /typetest/*.xpm $( DISTDIR) /samples/typetest
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/validate
cp $( SAMPDIR) /validate/Makefile.in $( DISTDIR) /samples/validate
cp $( SAMPDIR) /validate/*.cpp $( DISTDIR) /samples/validate
cp $( SAMPDIR) /validate/*.h $( DISTDIR) /samples/validate
cp $( SAMPDIR) /validate/*.xpm $( DISTDIR) /samples/validate
2000-01-03 17:11:48 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /samples/wizard
cp $( SAMPDIR) /wizard/Makefile.in $( DISTDIR) /samples/wizard
cp $( SAMPDIR) /wizard/*.cpp $( DISTDIR) /samples/wizard
cp $( SAMPDIR) /wizard/*.xpm $( DISTDIR) /samples/wizard
2000-01-03 17:11:48 +00:00
2000-01-14 17:08:42 +00:00
mkdir $( DISTDIR) /samples/sockets
cp $( SAMPDIR) /sockets/Makefile.in $( DISTDIR) /samples/sockets
cp $( SAMPDIR) /sockets/*.cpp $( DISTDIR) /samples/sockets
cp $( SAMPDIR) /sockets/*.xpm $( DISTDIR) /samples/sockets
1999-08-25 16:39:29 +00:00
2000-01-31 18:26:16 +00:00
UTILS_DIST : ALL_GUI_DIST
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /utils
cp $( UTILSDIR) /Makefile.in $( DISTDIR) /utils
2000-01-31 18:26:16 +00:00
cp $( UTILSDIR) /configure $( DISTDIR) /samples
cp $( UTILSDIR) /configure.in $( DISTDIR) /samples
1999-10-14 05:41:22 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /utils/wxMMedia2
mkdir $( DISTDIR) /utils/wxMMedia2/lib
1999-10-12 14:36:37 +00:00
mkdir $( DISTDIR) /utils/wxMMedia2/sample
cp $( UTILSDIR) /wxMMedia2/Makefile.in $( DISTDIR) /utils/wxMMedia2
1999-08-25 16:39:29 +00:00
cp $( UTILSDIR) /wxMMedia2/lib/Makefile.in $( DISTDIR) /utils/wxMMedia2/lib
cp $( UTILSDIR) /wxMMedia2/lib/*.h $( DISTDIR) /utils/wxMMedia2/lib
cp $( UTILSDIR) /wxMMedia2/lib/*.cpp $( DISTDIR) /utils/wxMMedia2/lib
cp $( UTILSDIR) /wxMMedia2/lib/*.def $( DISTDIR) /utils/wxMMedia2/lib
cp $( UTILSDIR) /wxMMedia2/sample/Makefile.in $( DISTDIR) /utils/wxMMedia2/sample
cp $( UTILSDIR) /wxMMedia2/sample/*.cpp $( DISTDIR) /utils/wxMMedia2/sample
1999-10-14 05:41:22 +00:00
1999-08-25 16:39:29 +00:00
mkdir $( DISTDIR) /utils/glcanvas
1999-10-12 14:36:37 +00:00
mkdir $( DISTDIR) /utils/glcanvas/$( TOOLKITDIR)
1999-08-25 16:39:29 +00:00
cp $( UTILSDIR) /glcanvas/Makefile.in $( DISTDIR) /utils/glcanvas
cp $( UTILSDIR) /glcanvas/docs/notes.txt $( DISTDIR) /utils/glcanvas/NOTES.txt
cp $( UTILSDIR) /glcanvas/$( TOOLKITDIR) /Makefile.in $( DISTDIR) /utils/glcanvas/$( TOOLKITDIR)
cp $( UTILSDIR) /glcanvas/$( TOOLKITDIR) /*.h $( DISTDIR) /utils/glcanvas/$( TOOLKITDIR)
cp $( UTILSDIR) /glcanvas/$( TOOLKITDIR) /*.cpp $( DISTDIR) /utils/glcanvas/$( TOOLKITDIR)
1999-10-14 05:41:22 +00:00
1999-10-12 14:36:37 +00:00
mkdir $( DISTDIR) /utils/ogl
mkdir $( DISTDIR) /utils/ogl/src
cp $( UTILSDIR) /ogl/Makefile.in $( DISTDIR) /utils/ogl
cp $( UTILSDIR) /ogl/src/Makefile.in $( DISTDIR) /utils/ogl/src
cp $( UTILSDIR) /ogl/src/*.h $( DISTDIR) /utils/ogl/src
cp $( UTILSDIR) /ogl/src/*.cpp $( DISTDIR) /utils/ogl/src
1999-10-14 05:41:22 +00:00
2000-01-31 18:26:16 +00:00
MISC_DIST : ALL_GUI_DIST
1999-08-26 16:15:38 +00:00
mkdir $( DISTDIR) /misc
mkdir $( DISTDIR) /misc/afm
cp $( MISCDIR) /afm/*.afm $( DISTDIR) /misc/afm
mkdir $( DISTDIR) /misc/gs_afm
cp $( MISCDIR) /gs_afm/*.afm $( DISTDIR) /misc/gs_afm
2000-01-31 18:26:16 +00:00
2000-02-16 20:47:08 +00:00
MANUAL_DIST :
mkdir $( DISTDIR) /docs
mkdir $( DISTDIR) /docs/latex
mkdir $( DISTDIR) /docs/latex/wx
cp $( DOCDIR) /latex/wx/*.tex $( DISTDIR) /docs/latex/wx
cp $( DOCDIR) /latex/wx/*.gif $( DISTDIR) /docs/latex/wx
cp $( DOCDIR) /latex/wx/*.ini $( DISTDIR) /docs/latex/wx
cp $( DOCDIR) /latex/wx/*.bib $( DISTDIR) /docs/latex/wx
cp $( DOCDIR) /latex/wx/*.sty $( DISTDIR) /docs/latex/wx
-mkdir $( DISTDIR) /utils
mkdir $( DISTDIR) /utils/tex2rtf
mkdir $( DISTDIR) /utils/tex2rtf/src
cp $( UTILSDIR) /tex2rtf/*.in $( DISTDIR) /utils/tex2rtf
cp $( UTILSDIR) /tex2rtf/src/*.h $( DISTDIR) /utils/tex2rtf/src
cp $( UTILSDIR) /tex2rtf/src/*.in $( DISTDIR) /utils/tex2rtf/src
cp $( UTILSDIR) /tex2rtf/src/*.cpp $( DISTDIR) /utils/tex2rtf/src
cp $( UTILSDIR) /tex2rtf/src/tex2rtf.* $( DISTDIR) /utils/tex2rtf/src
2000-01-31 18:26:16 +00:00
distclean :
1999-08-17 15:55:25 +00:00
$( RM) -r _dist_dir
1999-08-13 10:33:08 +00:00
2000-01-31 18:26:16 +00:00
dist : @GUIDIST @
@echo " *** Creating wxWindows distribution in $( DISTDIR) ... "
cd _dist_dir; tar ch @DISTDIR@ | gzip -f9 > $( WXARCHIVE) ; mv $( WXARCHIVE) ..
@if test " $( USE_GUI) " = 1; then \
cd $( DISTDIR) ; \
mv samples wxSamples; \
tar ch wxSamples | gzip -f9 > ../../$( WXSAMPLES) ; \
mv wxSamples samples; \
mv demos wxDemos; \
tar ch wxDemos | gzip -f9 > ../../$( WXDEMOS) ; \
mv wxDemos demos; \
fi
2000-02-16 20:47:08 +00:00
debian-dist : GTK_DIST DEMOS_DIST UTILS_DIST MISC_DIST MANUAL_DIST
mkdir $( DISTDIR) /debian
cp $( WXDIR) /debian/* $( DISTDIR) /debian
cp $( DOCDIR) /licence.txt $( DISTDIR) /docs
cp $( DOCDIR) /licendoc.txt $( DISTDIR) /docs
cp $( DOCDIR) /preamble.txt $( DISTDIR) /docs
rm -rf $( WXDIR) /../wxwindows-$( WX_MAJOR_VERSION_NUMBER) .$( WX_MINOR_VERSION_NUMBER) .$( WX_RELEASE_NUMBER)
mv $( DISTDIR) $( WXDIR) /../wxwindows-$( WX_MAJOR_VERSION_NUMBER) .$( WX_MINOR_VERSION_NUMBER) .$( WX_RELEASE_NUMBER)
1999-08-12 19:24:39 +00:00
clean :
1999-08-17 15:55:25 +00:00
$( RM) *.o
1999-08-20 19:40:03 +00:00
$( RM) *.d
1999-08-17 15:55:25 +00:00
$( RM) parser.c
$( RM) lexer.c
1999-10-27 23:29:05 +00:00
$( RM) ./lib/*
1999-08-12 19:24:39 +00:00
cleanall : clean