| 1 | ##################################################################### |
| 2 | # File: makefile.unx |
| 3 | # Purpose: Makefile for Unix wxWindows ports (both GUI and wxBase) |
| 4 | # Author: Julian Smart, Robert Roebling, Vadim Zeitlin, Ron Lee |
| 5 | # Created: 1993 |
| 6 | # Version: $Id$ |
| 7 | # Copyright:, |
| 8 | # Copyright:(c) 1999, Vadim Zeitlin |
| 9 | # Copyright:(c) 1999, Robert Roebling |
| 10 | # Copyright:(c) 2001, Ron Lee |
| 11 | ##################################################################### |
| 12 | |
| 13 | include ./src/make.env |
| 14 | |
| 15 | #################### the implicit rules ############################# |
| 16 | |
| 17 | # NB: we use the old style suffix rules (.c.o) and not the GNU make |
| 18 | # implicit rules (%.o: %.c) because they are more portable, in |
| 19 | # particular the BSD make understands the former but not the |
| 20 | # latter |
| 21 | .SUFFIXES: .o .c .cpp .cxx .rsrc .r .mm |
| 22 | |
| 23 | .c.o: |
| 24 | $(CC) -c $(CFLAGS) $(PICFLAGS) -o $@ $< |
| 25 | |
| 26 | .cpp.o: |
| 27 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< |
| 28 | |
| 29 | .cxx.o: |
| 30 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< |
| 31 | |
| 32 | # Objective-C++, right now just use CXXFLAGS |
| 33 | .mm.o: |
| 34 | $(CXX) -c $(CXXFLAGS) $(PICFLAGS) -o $@ $< |
| 35 | |
| 36 | .rsrc.r: |
| 37 | $(DEREZ) $^ Carbon.r -useDF > $@ |
| 38 | |
| 39 | ############################# Paths ################################# |
| 40 | |
| 41 | srcdir = @srcdir@ |
| 42 | top_srcdir = @top_srcdir@ |
| 43 | |
| 44 | VP1 = @TOOLKIT_VPATH@ |
| 45 | VP2 = @top_srcdir@/src/common |
| 46 | VP3 = @top_srcdir@/src/generic |
| 47 | VP4 = @top_srcdir@/src/unix |
| 48 | VP5 = @top_srcdir@/src/html |
| 49 | VP6 = @top_srcdir@/src/png |
| 50 | VP7 = @top_srcdir@/src/jpeg |
| 51 | VP8 = @top_srcdir@/src/tiff |
| 52 | VP9 = @top_srcdir@/src/zlib |
| 53 | VPA = @top_srcdir@/src/regex |
| 54 | VP10 = @top_srcdir@/src/iodbc |
| 55 | VP11 = @top_srcdir@/src/msw/ole |
| 56 | |
| 57 | # the comment at the end of the next line is needed because otherwise autoconf |
| 58 | # would remove this line completely - it contains a built-in hack to remove |
| 59 | # any VPATH assignment not containing ':' |
| 60 | 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@$(VPA)@PATH_IFS@$(VP10)@PATH_IFS@$(VP11) # ':' for autoconf |
| 61 | |
| 62 | prefix = @prefix@ |
| 63 | exec_prefix = @exec_prefix@ |
| 64 | |
| 65 | bindir = @bindir@ |
| 66 | datadir = @datadir@ |
| 67 | libdir = @libdir@ |
| 68 | mandir = @mandir@ |
| 69 | includedir = @includedir@ |
| 70 | |
| 71 | localedir = $(datadir)/locale |
| 72 | |
| 73 | top_builddir = . |
| 74 | build_libdir = $(top_builddir)/lib |
| 75 | |
| 76 | INSTALL = @INSTALL@ |
| 77 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
| 78 | INSTALL_DATA = @INSTALL_DATA@ |
| 79 | INSTALL_SCRIPT = @INSTALL@ |
| 80 | INSTALL_DIR = @INSTALL_DIR@ |
| 81 | |
| 82 | build_alias = @build_alias@ |
| 83 | build_triplet = @build@ |
| 84 | host_alias = @host_alias@ |
| 85 | host_triplet = @host@ |
| 86 | target_alias = @target_alias@ |
| 87 | target_triplet = @target@ |
| 88 | |
| 89 | USE_GUI=@USE_GUI@ |
| 90 | |
| 91 | ############################# Dirs ################################# |
| 92 | |
| 93 | WXDIR = $(top_srcdir) |
| 94 | |
| 95 | # Subordinate library possibilities |
| 96 | |
| 97 | SRCDIR = $(WXDIR)/src |
| 98 | GENDIR = $(WXDIR)/src/generic |
| 99 | COMMDIR = $(WXDIR)/src/common |
| 100 | HTMLDIR = $(WXDIR)/src/html |
| 101 | UNIXDIR = $(WXDIR)/src/unix |
| 102 | PNGDIR = $(WXDIR)/src/png |
| 103 | JPEGDIR = $(WXDIR)/src/jpeg |
| 104 | TIFFDIR = $(WXDIR)/src/tiff |
| 105 | ZLIBDIR = $(WXDIR)/src/zlib |
| 106 | REGEXDIR = $(WXDIR)/src/regex |
| 107 | GTKDIR = $(WXDIR)/src/gtk |
| 108 | X11DIR = $(WXDIR)/src/x11 |
| 109 | X11INC = $(WXDIR)/include/wx/x11 |
| 110 | MGLDIR = $(WXDIR)/src/mgl |
| 111 | MOTIFDIR = $(WXDIR)/src/motif |
| 112 | MSWDIR = $(WXDIR)/src/msw |
| 113 | PMDIR = $(WXDIR)/src/os2 |
| 114 | MACDIR = $(WXDIR)/src/mac |
| 115 | COCOADIR = $(WXDIR)/src/cocoa |
| 116 | ODBCDIR = $(WXDIR)/src/iodbc |
| 117 | FTDIR = $(WXDIR)/src/freetype |
| 118 | INCDIR = $(WXDIR)/include |
| 119 | SAMPDIR = $(WXDIR)/samples |
| 120 | DEMODIR = $(WXDIR)/demos |
| 121 | UTILSDIR = $(WXDIR)/utils |
| 122 | MISCDIR = $(WXDIR)/misc |
| 123 | |
| 124 | DOCDIR = $(WXDIR)/docs |
| 125 | INTLDIR = $(WXDIR)/locale |
| 126 | |
| 127 | ########################## Archive name ############################### |
| 128 | |
| 129 | # append a version suffix x.y.z to all file names |
| 130 | VER_MAJMIN=$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER) |
| 131 | VER_SUFFIX=$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER)$(EXTRA_VER) |
| 132 | WXARCHIVE=@DISTDIR@-$(VER_SUFFIX).tar.gz |
| 133 | WXGLARCHIVE=@DISTDIR@-gl-$(VER_SUFFIX).tar.gz |
| 134 | WXSAMPLES=wx$(TOOLKIT)-samples-$(VER_SUFFIX).tar.gz |
| 135 | WXDEMOS=wx$(TOOLKIT)-demos-$(VER_SUFFIX).tar.gz |
| 136 | WXARCHIVE_ZIP=wxMSW-$(VER_SUFFIX).zip |
| 137 | |
| 138 | WXARCHIVE_BZIP=@DISTDIR@-$(VER_SUFFIX).tar.bz2 |
| 139 | WXGLARCHIVE_BZIP=@DISTDIR@-gl-$(VER_SUFFIX).tar.bz2 |
| 140 | WXSAMPLES_BZIP=wx$(TOOLKIT)-samples-$(VER_SUFFIX).tar.bz2 |
| 141 | WXDEMOS_BZIP=wx$(TOOLKIT)-demos-$(VER_SUFFIX).tar.bz2 |
| 142 | |
| 143 | DISTDIRNAME=@DISTDIR@-$(VER_SUFFIX) |
| 144 | DISTDIR=./_dist_dir/$(DISTDIRNAME) |
| 145 | |
| 146 | |
| 147 | ############################## Files ################################## |
| 148 | |
| 149 | WX_LINGUAS = `cd $(top_srcdir)/locale && ls *.mo 2> /dev/null | sed -n 's/\.mo//p'` |
| 150 | |
| 151 | # this line will include a file which defines ALL_SOURCES, ALL_OBJECTS, |
| 152 | # ALL_DEPFILES and ALL_HEADERS variables with the complete list of .cpp, .o, |
| 153 | # .d and .h/.inl files for the current toolkit |
| 154 | include @PORT_FILES@ |
| 155 | |
| 156 | SOURCES = @ALL_SOURCES@ |
| 157 | HEADERS = @ALL_HEADERS@ |
| 158 | |
| 159 | # for the objects and depfiles, we might be bulding only part of them |
| 160 | # depending on configure arguments, so select a subset of ALL |
| 161 | OBJECTS = @ALL_OBJECTS@ |
| 162 | |
| 163 | # the object files of sublibraries (we assume that they don't change [often], |
| 164 | # so we don't generate these lists with tmake but embed them here) |
| 165 | REGEXOBJS = \ |
| 166 | regcomp.o \ |
| 167 | regexec.o \ |
| 168 | regerror.o \ |
| 169 | regfree.o |
| 170 | |
| 171 | ZLIBOBJS = \ |
| 172 | adler32.o \ |
| 173 | compress.o \ |
| 174 | crc32.o \ |
| 175 | gzio.o \ |
| 176 | uncompr.o \ |
| 177 | deflate.o \ |
| 178 | trees.o \ |
| 179 | zutil.o \ |
| 180 | inflate.o \ |
| 181 | infblock.o \ |
| 182 | inftrees.o \ |
| 183 | infcodes.o \ |
| 184 | infutil.o \ |
| 185 | inffast.o |
| 186 | |
| 187 | PNGOBJS = \ |
| 188 | png.o \ |
| 189 | pngerror.o \ |
| 190 | pnggccrd.o \ |
| 191 | pngget.o \ |
| 192 | pngmem.o \ |
| 193 | pngpread.o \ |
| 194 | pngread.o \ |
| 195 | pngrio.o \ |
| 196 | pngrtran.o \ |
| 197 | pngrutil.o \ |
| 198 | pngset.o \ |
| 199 | pngtrans.o \ |
| 200 | pngvcrd.o \ |
| 201 | pngwio.o \ |
| 202 | pngwrite.o \ |
| 203 | pngwtran.o \ |
| 204 | pngwutil.o |
| 205 | |
| 206 | JPEGOBJS = \ |
| 207 | jcomapi.o \ |
| 208 | jutils.o \ |
| 209 | jerror.o \ |
| 210 | jmemmgr.o \ |
| 211 | jmemnobs.o \ |
| 212 | jcapimin.o \ |
| 213 | jcapistd.o \ |
| 214 | jctrans.o \ |
| 215 | jcparam.o \ |
| 216 | jdatadst.o \ |
| 217 | jcinit.o \ |
| 218 | jcmaster.o \ |
| 219 | jcmarker.o \ |
| 220 | jcmainct.o \ |
| 221 | jcprepct.o \ |
| 222 | jccoefct.o \ |
| 223 | jccolor.o \ |
| 224 | jcsample.o \ |
| 225 | jchuff.o \ |
| 226 | jcphuff.o \ |
| 227 | jcdctmgr.o \ |
| 228 | jfdctfst.o \ |
| 229 | jfdctflt.o \ |
| 230 | jfdctint.o \ |
| 231 | jdapimin.o \ |
| 232 | jdapistd.o \ |
| 233 | jdtrans.o \ |
| 234 | jdatasrc.o \ |
| 235 | jdmaster.o \ |
| 236 | jdinput.o \ |
| 237 | jdmarker.o \ |
| 238 | jdhuff.o \ |
| 239 | jdphuff.o \ |
| 240 | jdmainct.o \ |
| 241 | jdcoefct.o \ |
| 242 | jdpostct.o \ |
| 243 | jddctmgr.o \ |
| 244 | jidctfst.o \ |
| 245 | jidctflt.o \ |
| 246 | jidctint.o \ |
| 247 | jidctred.o \ |
| 248 | jdsample.o \ |
| 249 | jdcolor.o \ |
| 250 | jquant1.o \ |
| 251 | jquant2.o \ |
| 252 | jdmerge.o |
| 253 | |
| 254 | TIFFOBJS = \ |
| 255 | tif_aux.o \ |
| 256 | tif_close.o \ |
| 257 | tif_codec.o \ |
| 258 | tif_compress.o \ |
| 259 | tif_dir.o \ |
| 260 | tif_dirinfo.o \ |
| 261 | tif_dirread.o \ |
| 262 | tif_dirwrite.o \ |
| 263 | tif_dumpmode.o \ |
| 264 | tif_error.o \ |
| 265 | tif_fax3.o \ |
| 266 | tif_fax3sm.o \ |
| 267 | tif_getimage.o \ |
| 268 | tif_jpeg.o \ |
| 269 | tif_flush.o \ |
| 270 | tif_lzw.o \ |
| 271 | tif_luv.o \ |
| 272 | tif_next.o \ |
| 273 | tif_open.o \ |
| 274 | tif_packbits.o \ |
| 275 | tif_pixarlog.o \ |
| 276 | tif_predict.o \ |
| 277 | tif_print.o \ |
| 278 | tif_read.o \ |
| 279 | tif_swab.o \ |
| 280 | tif_strip.o \ |
| 281 | tif_thunder.o \ |
| 282 | tif_tile.o \ |
| 283 | tif_unix.o \ |
| 284 | tif_version.o \ |
| 285 | tif_warning.o \ |
| 286 | tif_write.o \ |
| 287 | tif_zip.o |
| 288 | |
| 289 | IODBCOBJS = \ |
| 290 | catalog.o \ |
| 291 | connect.o \ |
| 292 | dlf.o \ |
| 293 | dlproc.o \ |
| 294 | execute.o \ |
| 295 | fetch.o \ |
| 296 | hdbc.o \ |
| 297 | henv.o \ |
| 298 | herr.o \ |
| 299 | hstmt.o \ |
| 300 | info.o \ |
| 301 | itrace.o \ |
| 302 | misc.o \ |
| 303 | prepare.o \ |
| 304 | result.o |
| 305 | |
| 306 | |
| 307 | ############################## Rules ################################## |
| 308 | |
| 309 | SONAME_FLAGS = @SONAME_FLAGS@ |
| 310 | SONAME_FLAGS_GL = @SONAME_FLAGS_GL@ |
| 311 | |
| 312 | all: @WX_ALL@ |
| 313 | |
| 314 | $(build_libdir)/@WX_LIBRARY_NAME_STATIC@: $(OBJECTS) |
| 315 | @$(INSTALL_DIR) $(build_libdir) |
| 316 | @$(RM) $@ |
| 317 | $(AR) $(AROPTIONS) $@ $(OBJECTS) |
| 318 | $(RANLIB) $@ |
| 319 | |
| 320 | $(build_libdir)/@WX_LIBRARY_NAME_STATIC_GL@: glcanvas.o |
| 321 | @$(INSTALL_DIR) $(build_libdir) |
| 322 | @$(RM) $@ |
| 323 | $(AR) $(AROPTIONS) $@ glcanvas.o |
| 324 | $(RANLIB) $@ |
| 325 | |
| 326 | $(build_libdir)/@WX_LIBRARY_NAME_SHARED@: $(OBJECTS) |
| 327 | @$(INSTALL_DIR) $(build_libdir) |
| 328 | $(SHARED_LD) $@ $(SONAME_FLAGS) $(OBJECTS) $(EXTRALIBS) |
| 329 | |
| 330 | # NB: we used to have "-L$(build_libdir) @WXCONFIG_LIBS@" in the SHARED_LD line |
| 331 | # but this seems to result in problems with libwx_gtk being linked in twice |
| 332 | $(build_libdir)/@WX_LIBRARY_NAME_SHARED_GL@: glcanvas.o $(build_libdir)/@WX_LIBRARY_NAME_SHARED@ |
| 333 | @$(INSTALL_DIR) $(build_libdir) |
| 334 | $(SHARED_LD) $@ $(SONAME_FLAGS_GL) glcanvas.o $(EXTRALIBS) $(LDFLAGS_GL) $(OPENGLLIBS) |
| 335 | |
| 336 | $(build_libdir)/@WX_RESOURCES_MACOSX_DATA@: $(MACRESOURCES) |
| 337 | @$(INSTALL_DIR) $(build_libdir) |
| 338 | $(RESCOMP) -d __UNIX__ -useDF $^ -o $@ |
| 339 | |
| 340 | $(build_libdir)/@WX_LIBRARY_LINK1@: $(build_libdir)/@WX_LIBRARY_NAME_SHARED@ |
| 341 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK1@ |
| 342 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK2@ |
| 343 | cd $(build_libdir) \ |
| 344 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK1@ \ |
| 345 | && $(LN_S) @WX_TARGET_LIBRARY@ @WX_LIBRARY_LINK2@ |
| 346 | |
| 347 | $(build_libdir)/@WX_LIBRARY_LINK1_GL@: $(build_libdir)/@WX_LIBRARY_NAME_SHARED_GL@ |
| 348 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK1_GL@ |
| 349 | @$(RM) $(build_libdir)/@WX_LIBRARY_LINK2_GL@ |
| 350 | cd $(build_libdir) \ |
| 351 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK1_GL@ \ |
| 352 | && $(LN_S) @WX_TARGET_LIBRARY_GL@ @WX_LIBRARY_LINK2_GL@ |
| 353 | |
| 354 | $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h |
| 355 | |
| 356 | parser.o: parser.c lexer.c |
| 357 | $(CCLEX) -c $(CFLAGS) -I. $(PICFLAGS) -o $@ parser.c |
| 358 | |
| 359 | parser.c: $(COMMDIR)/parser.y lexer.c |
| 360 | $(YACC) $(COMMDIR)/parser.y |
| 361 | @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \ |
| 362 | sed -e "s/BUFSIZ/5000/g" | \ |
| 363 | sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \ |
| 364 | sed -e "s/yy/PROIO_yy/g" | \ |
| 365 | sed -e "s/input/PROIO_input/g" | \ |
| 366 | sed -e "s/unput/PROIO_unput/g" > parser.c |
| 367 | @$(RM) y.tab.c |
| 368 | |
| 369 | lexer.c: $(COMMDIR)/lexer.l |
| 370 | $(LEX) $(COMMDIR)/lexer.l |
| 371 | @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \ |
| 372 | sed -e "s/yy/PROIO_yy/g" | \ |
| 373 | sed -e "s/input/PROIO_input/g" | \ |
| 374 | sed -e "s/unput/PROIO_unput/g" > lexer.c |
| 375 | @$(RM) @LEX_STEM@.c |
| 376 | |
| 377 | @IF_GNU_MAKE@-include $(OBJECTS:.o=.d) |
| 378 | |
| 379 | CREATE_INSTALLED_LINKS: preinstall |
| 380 | $(RM) $(libdir)/@WX_LIBRARY_LINK1@ |
| 381 | $(RM) $(libdir)/@WX_LIBRARY_LINK2@ |
| 382 | cd $(libdir) \ |
| 383 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK1@ \ |
| 384 | && $(LN_S) @WX_LIBRARY_NAME_SHARED@ @WX_LIBRARY_LINK2@ |
| 385 | |
| 386 | CREATE_INSTALLED_LINKS_GL: preinstall_gl |
| 387 | $(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ |
| 388 | $(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ |
| 389 | cd $(libdir) \ |
| 390 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK1_GL@ \ |
| 391 | && $(LN_S) @WX_LIBRARY_NAME_SHARED_GL@ @WX_LIBRARY_LINK2_GL@ |
| 392 | |
| 393 | afminstall: preinstall |
| 394 | @if test ! -d $(datadir); then $(INSTALL_DIR) $(datadir); fi |
| 395 | $(INSTALL_DIR) $(datadir)/wx |
| 396 | $(INSTALL_DIR) $(datadir)/wx/$(VER_MAJMIN) |
| 397 | $(INSTALL_DIR) $(datadir)/wx/$(VER_MAJMIN)/afm |
| 398 | $(INSTALL_DIR) $(datadir)/wx/$(VER_MAJMIN)/gs_afm |
| 399 | $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/afm |
| 400 | $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/$(VER_MAJMIN)/gs_afm |
| 401 | |
| 402 | m4datainstall: preinstall |
| 403 | $(INSTALL_DIR) $(datadir)/aclocal |
| 404 | $(INSTALL_DATA) $(top_srcdir)/wxwin.m4 $(datadir)/aclocal |
| 405 | |
| 406 | win32install: preinstall |
| 407 | $(INSTALL_DIR) $(includedir)/wx/msw |
| 408 | $(INSTALL_DIR) $(includedir)/wx/msw/gnuwin32 |
| 409 | $(INSTALL_DIR) $(includedir)/wx/msw/gnuwin32/gl |
| 410 | $(INSTALL_DATA) $(top_srcdir)/include/wx/msw/*.cur \ |
| 411 | $(top_srcdir)/include/wx/msw/*.ico \ |
| 412 | $(top_srcdir)/include/wx/msw/*.bmp \ |
| 413 | $(top_srcdir)/include/wx/msw/wx.rc \ |
| 414 | $(includedir)/wx/msw |
| 415 | $(INSTALL_DATA) $(top_srcdir)/include/wx/msw/gnuwin32/*.h $(includedir)/wx/msw/gnuwin32 |
| 416 | $(INSTALL_DATA) $(top_srcdir)/include/wx/msw/gnuwin32/gl/*.h $(includedir)/wx/msw/gnuwin32/gl |
| 417 | |
| 418 | # this is the real install target: copies the library, wx-config and the |
| 419 | # headers to the installation directory |
| 420 | preinstall: $(build_libdir)/@WX_TARGET_LIBRARY@ $(top_builddir)/wx@TOOLCHAIN_NAME@-config |
| 421 | @echo " " |
| 422 | @echo " Installing wxWindows..." |
| 423 | @echo " " |
| 424 | |
| 425 | @if test ! -d $(prefix); then $(INSTALL_DIR) $(prefix); fi |
| 426 | @if test ! -d $(bindir); then $(INSTALL_DIR) $(bindir); fi |
| 427 | @if test ! -d $(libdir); then $(INSTALL_DIR) $(libdir); fi |
| 428 | |
| 429 | $(INSTALL_SCRIPT) $(top_builddir)/wx@TOOLCHAIN_NAME@-config $(bindir)/wx@TOOLCHAIN_NAME@-config |
| 430 | cd $(bindir) && rm -f wx-config && $(LN_S) wx@TOOLCHAIN_NAME@-config wx-config |
| 431 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@ |
| 432 | @if test "x@WX_LIBRARY_IMPORTLIB@" != "x"; then \ |
| 433 | $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_LIBRARY_IMPORTLIB@ $(libdir)/@WX_LIBRARY_IMPORTLIB@; fi |
| 434 | |
| 435 | $(INSTALL_DIR) $(libdir)/wx |
| 436 | $(INSTALL_DIR) $(libdir)/wx/include |
| 437 | $(INSTALL_DIR) $(libdir)/wx/include/univ |
| 438 | $(INSTALL_DIR) $(libdir)/wx/include/@TOOLCHAIN_NAME@ |
| 439 | $(INSTALL_DIR) $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx |
| 440 | $(INSTALL_DATA) $(build_libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h \ |
| 441 | $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h |
| 442 | |
| 443 | $(INSTALL_DIR) $(includedir)/wx |
| 444 | @# FIXME: This will erroneously install a wx/base dir for wxBase.. |
| 445 | @if test "$(USE_GUI)" = 1; then $(INSTALL_DIR) $(includedir)/wx/@TOOLKIT_DIR@; fi |
| 446 | @if test "$(USE_GUI)" = 1; then $(INSTALL_DIR) $(includedir)/wx/html; fi |
| 447 | @if test "$(USE_GUI)" = 1; then $(INSTALL_DIR) $(includedir)/wx/generic; fi |
| 448 | @if test "$(USE_GUI)" = 1; then $(INSTALL_DIR) $(includedir)/wx/univ; fi |
| 449 | @if test "@TOOLKIT_DIR@" = "msw"; then $(INSTALL_DIR) $(includedir)/wx/msw/ole; fi |
| 450 | @if test "@TOOLKIT_DIR@" = "motif"; then $(INSTALL_DIR) $(includedir)/wx/x11; fi |
| 451 | |
| 452 | @# always install msw headers for wxBase, it's much simpler |
| 453 | @if test "$(USE_GUI)" = 0; then $(INSTALL_DIR) $(includedir)/wx/msw; fi |
| 454 | |
| 455 | $(INSTALL_DIR) $(includedir)/wx/protocol |
| 456 | $(INSTALL_DIR) $(includedir)/wx/unix |
| 457 | @list='$(HEADERS)'; for p in $$list; do \ |
| 458 | $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \ |
| 459 | echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \ |
| 460 | done |
| 461 | |
| 462 | @if test ! -d $(localedir); then $(INSTALL_DIR) $(localedir); fi |
| 463 | @for p in $(WX_LINGUAS); do \ |
| 464 | if test ! -d $(localedir)/$$p; then $(INSTALL_DIR) $(localedir)/$$p; fi;\ |
| 465 | if test ! -d $(localedir)/$$p/LC_MESSAGES; then $(INSTALL_DIR) $(localedir)/$$p/LC_MESSAGES; fi;\ |
| 466 | $(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ |
| 467 | echo "$(INSTALL_DATA) $(top_srcdir)/locale/$$p.mo $(localedir)/$$p/LC_MESSAGES/wxstd.mo"; \ |
| 468 | done |
| 469 | |
| 470 | preinstall_res: $(build_libdir)/@WX_RESOURCES_MACOSX_ASCII@ $(build_libdir)/@WX_RESOURCES_MACOSX_DATA@ |
| 471 | @echo " " |
| 472 | @echo " Installing wxWindows Mac resource ..." |
| 473 | @echo " " |
| 474 | @if test ! -d $(libdir); then $(INSTALL_DIR) $(libdir); fi |
| 475 | $(INSTALL_PROGRAM) $(build_libdir)/@WX_RESOURCES_MACOSX_ASCII@ $(libdir)/@WX_RESOURCES_MACOSX_ASCII@ |
| 476 | $(INSTALL_PROGRAM) $(build_libdir)/@WX_RESOURCES_MACOSX_DATA@ $(libdir)/@WX_RESOURCES_MACOSX_DATA@ |
| 477 | |
| 478 | preinstall_gl: $(build_libdir)/@WX_TARGET_LIBRARY_GL@ |
| 479 | @echo " " |
| 480 | @echo " Installing wxWindows OpenGl add-on..." |
| 481 | @echo " " |
| 482 | @if test ! -d $(libdir); then $(INSTALL_DIR) $(libdir); fi |
| 483 | @INSTALL_LIBRARY@ $(build_libdir)/@WX_TARGET_LIBRARY_GL@ $(libdir)/@WX_TARGET_LIBRARY_GL@ |
| 484 | |
| 485 | install: @AFMINSTALL@ @WX_ALL_INSTALLED@ m4datainstall @WIN32INSTALL@ |
| 486 | @echo " " |
| 487 | @echo " The installation of wxWindows is finished. On certain" |
| 488 | @echo " platforms (e.g. Linux) you'll now have to run ldconfig" |
| 489 | @echo " if you installed a shared library and also modify the" |
| 490 | @echo " LD_LIBRARY_PATH (or equivalent) environment variable." |
| 491 | @echo " " |
| 492 | @echo " wxWindows comes with no guarantees and doesn't claim" |
| 493 | @echo " to be suitable for any purpose." |
| 494 | @echo " " |
| 495 | @echo " Read the wxWindows Licence on licencing conditions." |
| 496 | @echo " " |
| 497 | |
| 498 | uninstall: |
| 499 | @echo " " |
| 500 | @echo " Uninstalling wxWindows..." |
| 501 | @echo " " |
| 502 | @echo " Removing library..." |
| 503 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY@ |
| 504 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1@ |
| 505 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2@ |
| 506 | @echo " Removing GL library..." |
| 507 | @$(RM) $(libdir)/@WX_TARGET_LIBRARY_GL@ |
| 508 | @$(RM) $(libdir)/@WX_LIBRARY_LINK1_GL@ |
| 509 | @$(RM) $(libdir)/@WX_LIBRARY_LINK2_GL@ |
| 510 | @echo " Removing helper files..." |
| 511 | @$(RM) $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx/setup.h |
| 512 | @$(RM) $(bindir)/wx-config |
| 513 | @$(RM) $(bindir)/wx@TOOLCHAIN_NAME@-config |
| 514 | @$(RM) $(datadir)/wx/$(VER_MAJMIN)/afm/* |
| 515 | @$(RM) $(datadir)/wx/$(VER_MAJMIN)/gs_afm/* |
| 516 | # FIXME: wxBase doesnt install these next 3 dirs. |
| 517 | @-rmdir $(datadir)/wx/$(VER_MAJMIN)/gs_afm |
| 518 | @-rmdir $(datadir)/wx/$(VER_MAJMIN)/afm |
| 519 | @-rmdir $(datadir)/wx/$(VER_MAJMIN) |
| 520 | @-rmdir $(datadir)/wx |
| 521 | @$(RM) $(datadir)/aclocal/wxwin.m4 |
| 522 | @echo " Removing headers..." |
| 523 | @list='$(HEADERS)'; for p in $$list; do \ |
| 524 | $(RM) $(includedir)/wx/$$p; \ |
| 525 | done |
| 526 | # TODO: uninstall the files installed by win32install |
| 527 | @echo " Removing i18n files..." |
| 528 | @-for p in $(WX_LINGUAS); do \ |
| 529 | $(RM) $(localedir)/$$p/LC_MESSAGES/wxstd.mo; \ |
| 530 | rmdir $(localedir)/$$p/LC_MESSAGES; \ |
| 531 | rmdir $(localedir)/$$p; \ |
| 532 | done |
| 533 | @echo " Removing directories..." |
| 534 | @-rmdir $(localedir) |
| 535 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@/wx; fi |
| 536 | @if test -d $(libdir)/wx/include/@TOOLCHAIN_NAME@; then rmdir $(libdir)/wx/include/@TOOLCHAIN_NAME@; fi |
| 537 | @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi |
| 538 | @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi |
| 539 | @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi |
| 540 | @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi |
| 541 | @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi |
| 542 | @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi |
| 543 | @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi |
| 544 | @if test -d $(includedir)/wx/univ; then rmdir $(includedir)/wx/univ; fi |
| 545 | @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi |
| 546 | @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi |
| 547 | @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi |
| 548 | |
| 549 | # this target should copy only the files common to really all ports (including |
| 550 | # wxBase) to the dist dir |
| 551 | ALL_DIST: distclean |
| 552 | mkdir _dist_dir |
| 553 | mkdir $(DISTDIR) |
| 554 | cp $(WXDIR)/wxwin.m4 $(DISTDIR) |
| 555 | cp $(WXDIR)/aclocal.m4 $(DISTDIR) |
| 556 | cp $(WXDIR)/config.sub $(DISTDIR) |
| 557 | cp $(WXDIR)/config.guess $(DISTDIR) |
| 558 | cp $(WXDIR)/install-sh $(DISTDIR) |
| 559 | cp $(WXDIR)/mkinstalldirs $(DISTDIR) |
| 560 | cp $(WXDIR)/wx-config.in $(DISTDIR) |
| 561 | cp $(WXDIR)/version-script.in $(DISTDIR) |
| 562 | cp $(WXDIR)/setup.h.in $(DISTDIR) |
| 563 | cp $(WXDIR)/setup.h_vms $(DISTDIR) |
| 564 | cp $(WXDIR)/descrip.mms $(DISTDIR) |
| 565 | cp $(WXDIR)/Makefile.in $(DISTDIR) |
| 566 | cp $(WXDIR)/wxBase.spec $(DISTDIR) |
| 567 | cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB |
| 568 | cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt |
| 569 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt |
| 570 | mkdir $(DISTDIR)/lib |
| 571 | cp $(WXDIR)/lib/vms.opt $(DISTDIR)/lib |
| 572 | cp $(WXDIR)/lib/vms_gtk.opt $(DISTDIR)/lib |
| 573 | mkdir $(DISTDIR)/src |
| 574 | # temp hack for common/execcmn.cpp: it's not supported by tmake |
| 575 | # yet (it's a header-like file but in src/common directory and it |
| 576 | # shouldn't be distributed...) |
| 577 | mkdir $(DISTDIR)/src/common |
| 578 | cp $(SRCDIR)/common/execcmn.cpp $(DISTDIR)/src/common |
| 579 | mkdir $(DISTDIR)/src/zlib |
| 580 | cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib |
| 581 | cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib |
| 582 | cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib |
| 583 | cp $(ZLIBDIR)/*.mms $(DISTDIR)/src/zlib |
| 584 | mkdir $(DISTDIR)/src/regex |
| 585 | cp $(REGEXDIR)/*.h $(DISTDIR)/src/regex |
| 586 | cp $(REGEXDIR)/*.ih $(DISTDIR)/src/regex |
| 587 | cp $(REGEXDIR)/*.c $(DISTDIR)/src/regex |
| 588 | cp $(REGEXDIR)/Makefile $(DISTDIR)/src/regex |
| 589 | cp $(REGEXDIR)/makefile.* $(DISTDIR)/src/regex |
| 590 | cp $(REGEXDIR)/COPYRIGHT $(DISTDIR)/src/regex |
| 591 | cp $(REGEXDIR)/README $(DISTDIR)/src/regex |
| 592 | cp $(REGEXDIR)/WHATSNEW $(DISTDIR)/src/regex |
| 593 | cp $(REGEXDIR)/mkh $(DISTDIR)/src/regex |
| 594 | cp $(REGEXDIR)/tests $(DISTDIR)/src/regex |
| 595 | |
| 596 | # this target is the common part of distribution script for all GUI toolkits, |
| 597 | # but is not used when building wxBase distribution |
| 598 | ALL_GUI_DIST: ALL_DIST |
| 599 | cp $(WXDIR)/configure.in $(DISTDIR) |
| 600 | cp $(WXDIR)/configure $(DISTDIR) |
| 601 | cp $(DOCDIR)/readme.txt $(DISTDIR)/README.txt |
| 602 | cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt |
| 603 | if test -f $(DOCDIR)/$(TOOLKITDIR)/changes.txt ; then \ |
| 604 | cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES-$(TOOLKIT).txt ; fi |
| 605 | cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README-$(TOOLKIT).txt |
| 606 | if test -f $(DOCDIR)/$(TOOLKITDIR)/todo.txt ; then \ |
| 607 | cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt ; fi |
| 608 | mkdir $(DISTDIR)/include |
| 609 | mkdir $(DISTDIR)/include/wx |
| 610 | mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR) |
| 611 | mkdir $(DISTDIR)/include/wx/generic |
| 612 | mkdir $(DISTDIR)/include/wx/html |
| 613 | mkdir $(DISTDIR)/include/wx/protocol |
| 614 | mkdir $(DISTDIR)/include/wx/unix |
| 615 | cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx |
| 616 | cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx |
| 617 | cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx |
| 618 | cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic |
| 619 | cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html |
| 620 | cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix |
| 621 | cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol |
| 622 | mkdir $(DISTDIR)/art |
| 623 | mkdir $(DISTDIR)/art/gtk |
| 624 | mkdir $(DISTDIR)/art/motif |
| 625 | cp $(WXDIR)/art/*.xpm $(DISTDIR)/art |
| 626 | cp $(WXDIR)/art/gtk/*.xpm $(DISTDIR)/art/gtk |
| 627 | cp $(WXDIR)/art/motif/*.xpm $(DISTDIR)/art/motif |
| 628 | mkdir $(DISTDIR)/src/generic |
| 629 | mkdir $(DISTDIR)/src/html |
| 630 | mkdir $(DISTDIR)/src/$(TOOLKITDIR) |
| 631 | mkdir $(DISTDIR)/src/png |
| 632 | mkdir $(DISTDIR)/src/jpeg |
| 633 | mkdir $(DISTDIR)/src/tiff |
| 634 | mkdir $(DISTDIR)/src/unix |
| 635 | cp $(SRCDIR)/*.in $(DISTDIR)/src |
| 636 | cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common |
| 637 | cp $(COMMDIR)/*.c $(DISTDIR)/src/common |
| 638 | cp $(COMMDIR)/*.inc $(DISTDIR)/src/common |
| 639 | cp $(COMMDIR)/*.h $(DISTDIR)/src/common |
| 640 | cp $(COMMDIR)/*.mms $(DISTDIR)/src/common |
| 641 | cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix |
| 642 | cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix |
| 643 | cp $(UNIXDIR)/*.mms $(DISTDIR)/src/unix |
| 644 | cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic |
| 645 | cp $(GENDIR)/*.mms $(DISTDIR)/src/generic |
| 646 | cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html |
| 647 | cp $(PNGDIR)/*.h $(DISTDIR)/src/png |
| 648 | cp $(PNGDIR)/*.c $(DISTDIR)/src/png |
| 649 | cp $(PNGDIR)/README $(DISTDIR)/src/png |
| 650 | cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg |
| 651 | cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg |
| 652 | cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg |
| 653 | cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff |
| 654 | cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff |
| 655 | cp $(TIFFDIR)/README $(DISTDIR)/src/tiff |
| 656 | mkdir $(DISTDIR)/src/iodbc |
| 657 | cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc |
| 658 | cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc |
| 659 | cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc |
| 660 | cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc |
| 661 | cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc |
| 662 | cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc |
| 663 | cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc |
| 664 | |
| 665 | BASE_DIST: ALL_DIST |
| 666 | # make --disable-gui the default |
| 667 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ |
| 668 | $(WXDIR)/configure.in > $(DISTDIR)/configure.in |
| 669 | sed 's/DEFAULT_wxUSE_GUI=yes/DEFAULT_wxUSE_GUI=no/' \ |
| 670 | $(WXDIR)/configure > $(DISTDIR)/configure |
| 671 | chmod +x $(DISTDIR)/configure |
| 672 | mkdir $(DISTDIR)/include |
| 673 | mkdir $(DISTDIR)/include/wx |
| 674 | mkdir $(DISTDIR)/include/wx/protocol |
| 675 | mkdir $(DISTDIR)/include/wx/unix |
| 676 | mkdir $(DISTDIR)/include/wx/msw |
| 677 | mkdir $(DISTDIR)/src/unix |
| 678 | mkdir $(DISTDIR)/src/msw |
| 679 | cp @PORT_FILES@ $(DISTDIR) |
| 680 | cp $(WXDIR)/src/wxBase*.dsp $(DISTDIR) |
| 681 | cp $(WXDIR)/src/wxBase*.dsw $(DISTDIR) |
| 682 | cp $(DOCDIR)/changes.txt $(DISTDIR)/CHANGES.txt |
| 683 | cp $(DOCDIR)/base/readme.txt $(DISTDIR)/README.txt |
| 684 | cp $(SRCDIR)/*.in $(DISTDIR)/src |
| 685 | cp $(SRCDIR)/files.lst $(DISTDIR)/src |
| 686 | cp $(WXDIR)/src/common/*.inc $(DISTDIR)/src/common |
| 687 | cp $(WXDIR)/src/common/base.rc $(DISTDIR)/src/common |
| 688 | cp $(WXDIR)/src/common/unzip.h $(DISTDIR)/src/common |
| 689 | list='$(HEADERS)'; for p in $$list; do \ |
| 690 | cp $(WXDIR)/include/wx/$$p $(DISTDIR)/include/wx/$$p; \ |
| 691 | done |
| 692 | list='$(SOURCES)'; for p in $$list; do \ |
| 693 | cp $(WXDIR)/src/$$p $(DISTDIR)/src/$$p; \ |
| 694 | done |
| 695 | |
| 696 | mkdir $(DISTDIR)/samples |
| 697 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples |
| 698 | cp $(SAMPDIR)/configure $(DISTDIR)/samples |
| 699 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples |
| 700 | |
| 701 | mkdir $(DISTDIR)/samples/console |
| 702 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console |
| 703 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console |
| 704 | cp $(SAMPDIR)/console/console.cpp $(DISTDIR)/samples/console |
| 705 | cp $(SAMPDIR)/console/console.dsp $(DISTDIR)/samples/console |
| 706 | cp $(SAMPDIR)/console/testdata.fc $(DISTDIR)/samples/console |
| 707 | |
| 708 | GTK_DIST: ALL_GUI_DIST |
| 709 | cp $(WXDIR)/wxGTK.spec $(DISTDIR) |
| 710 | cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk |
| 711 | cp $(GTKDIR)/files.lst $(DISTDIR)/src/gtk |
| 712 | cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk |
| 713 | cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk |
| 714 | cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk |
| 715 | cp $(GTKDIR)/*.mms $(DISTDIR)/src/gtk |
| 716 | mkdir $(DISTDIR)/contrib |
| 717 | cp -R $(WXDIR)/contrib $(DISTDIR) |
| 718 | |
| 719 | X11_DIST: ALL_GUI_DIST UNIV_DIST |
| 720 | cp $(WXDIR)/wxX11.spec $(DISTDIR) |
| 721 | cp $(INCDIR)/wx/x11/*.h $(DISTDIR)/include/wx/x11 |
| 722 | cp $(X11DIR)/files.lst $(DISTDIR)/src/x11 |
| 723 | cp $(X11DIR)/*.cpp $(DISTDIR)/src/x11 |
| 724 | cp $(X11DIR)/*.c $(DISTDIR)/src/x11 |
| 725 | cp $(X11DIR)/*.xbm $(DISTDIR)/src/x11 |
| 726 | mkdir $(DISTDIR)/contrib |
| 727 | cp -R $(WXDIR)/contrib $(DISTDIR) |
| 728 | |
| 729 | MOTIF_DIST: ALL_GUI_DIST |
| 730 | cp $(WXDIR)/wxMotif.spec $(DISTDIR) |
| 731 | cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif |
| 732 | cp $(MOTIFDIR)/files.lst $(DISTDIR)/src/motif |
| 733 | cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif |
| 734 | cp $(MOTIFDIR)/*.c $(DISTDIR)/src/motif |
| 735 | cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif |
| 736 | mkdir $(DISTDIR)/src/motif/xmcombo |
| 737 | cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo |
| 738 | cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo |
| 739 | cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo |
| 740 | mkdir $(DISTDIR)/src/x11 |
| 741 | mkdir $(DISTDIR)/include/wx/x11 |
| 742 | cp $(X11DIR)/pen.cpp $(X11DIR)/brush.cpp $(X11DIR)/utilsx.cpp \ |
| 743 | $(X11DIR)/bitmap.cpp $(X11DIR)/region.cpp \ |
| 744 | $(DISTDIR)/src/x11 |
| 745 | cp $(X11INC)/pen.h $(X11INC)/brush.h $(X11INC)/privx.h \ |
| 746 | $(X11INC)/bitmap.h $(X11INC)/private.h $(X11INC)/region.h \ |
| 747 | $(DISTDIR)/include/wx/x11 |
| 748 | |
| 749 | MACX_DIST: ALL_GUI_DIST |
| 750 | cp $(INCDIR)/*.* $(DISTDIR)/include |
| 751 | cp $(INCDIR)/wx/mac/*.h $(DISTDIR)/include/wx/mac |
| 752 | cp $(MACDIR)/files.lst $(DISTDIR)/src/mac |
| 753 | cp $(MACDIR)/*.cpp $(DISTDIR)/src/mac |
| 754 | cp $(MACDIR)/*.c $(DISTDIR)/src/mac |
| 755 | cp $(MACDIR)/*.h $(DISTDIR)/src/mac |
| 756 | cp $(MACDIR)/*.r $(DISTDIR)/src/mac |
| 757 | mkdir $(DISTDIR)/src/mac/morefile |
| 758 | cp $(MACDIR)/morefile/*.h $(DISTDIR)/src/mac/morefile |
| 759 | cp $(MACDIR)/morefile/*.c $(DISTDIR)/src/mac/morefile |
| 760 | mkdir $(DISTDIR)/src/mac/macsock |
| 761 | cp $(MACDIR)/macsock/*.lib $(DISTDIR)/src/mac/macsock |
| 762 | |
| 763 | # TODO: Distribute some files |
| 764 | COCOA_DIST: ALL_GUI_DIST |
| 765 | cp $(COCOADIR)/*.mm $(DISTDIR)/src/cocoa |
| 766 | |
| 767 | MSW_DIST: ALL_GUI_DIST |
| 768 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) |
| 769 | mkdir $(DISTDIR)/include/wx/msw/ctl3d |
| 770 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32 |
| 771 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32/gl |
| 772 | mkdir $(DISTDIR)/include/wx/msw/ole |
| 773 | mkdir $(DISTDIR)/include/wx/msw/wince |
| 774 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw |
| 775 | cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw |
| 776 | cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw |
| 777 | cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw |
| 778 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw |
| 779 | cp $(INCDIR)/wx/msw/ctl3d/*.h $(DISTDIR)/include/wx/msw/ctl3d |
| 780 | cp $(INCDIR)/wx/msw/gnuwin32/*.h $(DISTDIR)/include/wx/msw/gnuwin32 |
| 781 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.h $(DISTDIR)/include/wx/msw/gnuwin32/gl |
| 782 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.def $(DISTDIR)/include/wx/msw/gnuwin32/gl |
| 783 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole |
| 784 | cp $(INCDIR)/wx/msw/wince/*.h $(DISTDIR)/include/wx/msw/wince |
| 785 | mkdir $(DISTDIR)/src/msw/ole |
| 786 | mkdir $(DISTDIR)/src/msw/wince |
| 787 | cp $(MSWDIR)/files.lst $(DISTDIR)/src/msw |
| 788 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw |
| 789 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw |
| 790 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw |
| 791 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole |
| 792 | cp $(MSWDIR)/wince/*.* $(DISTDIR)/src/msw/wince |
| 793 | mkdir $(DISTDIR)/contrib |
| 794 | cp -R $(WXDIR)/contrib $(DISTDIR) |
| 795 | |
| 796 | MSW_ZIP_TEXT_DIST: ALL_GUI_DIST |
| 797 | cp $(WXDIR)/wxWINE.spec $(DISTDIR) |
| 798 | mkdir $(DISTDIR)/include/wx/msw |
| 799 | mkdir $(DISTDIR)/include/wx/msw/ctl3d |
| 800 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32 |
| 801 | mkdir $(DISTDIR)/include/wx/msw/gnuwin32/gl |
| 802 | mkdir $(DISTDIR)/include/wx/msw/ole |
| 803 | mkdir $(DISTDIR)/include/wx/msw/wince |
| 804 | cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw |
| 805 | cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw |
| 806 | cp $(INCDIR)/wx/msw/ctl3d/*.h $(DISTDIR)/include/wx/msw/ctl3d |
| 807 | cp $(INCDIR)/wx/msw/gnuwin32/*.h $(DISTDIR)/include/wx/msw/gnuwin32 |
| 808 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.h $(DISTDIR)/include/wx/msw/gnuwin32/gl |
| 809 | cp $(INCDIR)/wx/msw/gnuwin32/gl/*.def $(DISTDIR)/include/wx/msw/gnuwin32/gl |
| 810 | cp $(INCDIR)/wx/msw/ole/*.h $(DISTDIR)/include/wx/msw/ole |
| 811 | cp $(INCDIR)/wx/msw/wince/*.h $(DISTDIR)/include/wx/msw/wince |
| 812 | mkdir $(DISTDIR)/src/msw |
| 813 | mkdir $(DISTDIR)/src/msw/ole |
| 814 | mkdir $(DISTDIR)/src/msw/wince |
| 815 | cp $(MSWDIR)/files.lst $(DISTDIR)/src/msw |
| 816 | cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw |
| 817 | cp $(MSWDIR)/*.c $(DISTDIR)/src/msw |
| 818 | cp $(MSWDIR)/*.def $(DISTDIR)/src/msw |
| 819 | cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole |
| 820 | cp $(MSWDIR)/wince/*.* $(DISTDIR)/src/msw/wince |
| 821 | cp $(SRCDIR)/*.??? $(DISTDIR)/src |
| 822 | cp $(SRCDIR)/*.?? $(DISTDIR)/src |
| 823 | cp $(MSWDIR)/?ake*.* $(DISTDIR)/src/msw |
| 824 | mkdir $(DISTDIR)/contrib |
| 825 | cp -R $(WXDIR)/contrib $(DISTDIR) |
| 826 | |
| 827 | UNIV_DIST: ALL_GUI_DIST |
| 828 | mkdir $(DISTDIR)/include/wx/univ |
| 829 | mkdir $(DISTDIR)/src/univ |
| 830 | mkdir $(DISTDIR)/src/univ/themes |
| 831 | cp $(INCDIR)/wx/univ/*.h $(DISTDIR)/include/wx/univ |
| 832 | cp $(INCDIR)/wx/univ/setup0.h $(DISTDIR)/include/wx/univ/setup.h |
| 833 | cp $(SRCDIR)/univ/files.lst $(DISTDIR)/src/univ |
| 834 | cp $(SRCDIR)/univ/*.cpp $(DISTDIR)/src/univ |
| 835 | cp $(SRCDIR)/univ/themes/*.cpp $(DISTDIR)/src/univ/themes |
| 836 | |
| 837 | MGL_DIST: UNIV_DIST |
| 838 | cp $(WXDIR)/wxMGL.spec $(DISTDIR) |
| 839 | cp $(INCDIR)/wx/mgl/*.h $(DISTDIR)/include/wx/mgl |
| 840 | cp $(SRCDIR)/mgl/files.lst $(DISTDIR)/src/mgl |
| 841 | cp $(SRCDIR)/mgl/make* $(DISTDIR)/src/mgl |
| 842 | cp $(SRCDIR)/mgl/*.cpp $(DISTDIR)/src/mgl |
| 843 | mkdir $(DISTDIR)/contrib |
| 844 | cp -R $(WXDIR)/contrib $(DISTDIR) |
| 845 | |
| 846 | DEMOS_DIST: ALL_GUI_DIST |
| 847 | mkdir $(DISTDIR)/demos |
| 848 | cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos |
| 849 | cp $(DEMODIR)/configure $(DISTDIR)/demos |
| 850 | cp $(DEMODIR)/configure.in $(DISTDIR)/demos |
| 851 | |
| 852 | mkdir $(DISTDIR)/demos/bombs |
| 853 | cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs |
| 854 | cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs |
| 855 | cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs |
| 856 | cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs |
| 857 | cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs |
| 858 | cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs |
| 859 | |
| 860 | cp -R $(DEMODIR)/dbbrowse $(DISTDIR)/demos/dbbrowse |
| 861 | |
| 862 | mkdir $(DISTDIR)/demos/forty |
| 863 | cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty |
| 864 | cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty |
| 865 | cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty |
| 866 | cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty |
| 867 | cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty |
| 868 | cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty |
| 869 | |
| 870 | mkdir $(DISTDIR)/demos/life |
| 871 | mkdir $(DISTDIR)/demos/life/bitmaps |
| 872 | cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life |
| 873 | cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life |
| 874 | cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life |
| 875 | cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life |
| 876 | cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life |
| 877 | cp $(DEMODIR)/life/*.inc $(DISTDIR)/demos/life |
| 878 | cp $(DEMODIR)/life/*.lif $(DISTDIR)/demos/life |
| 879 | cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps |
| 880 | |
| 881 | mkdir $(DISTDIR)/demos/poem |
| 882 | cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem |
| 883 | cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem |
| 884 | cp $(DEMODIR)/poem/*.h $(DISTDIR)/demos/poem |
| 885 | cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem |
| 886 | cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem |
| 887 | cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem |
| 888 | cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem |
| 889 | |
| 890 | mkdir $(DISTDIR)/demos/fractal |
| 891 | cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal |
| 892 | cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal |
| 893 | cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal |
| 894 | |
| 895 | SAMPLES_DIST: ALL_GUI_DIST |
| 896 | mkdir $(DISTDIR)/samples |
| 897 | cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples |
| 898 | cp $(SAMPDIR)/configure $(DISTDIR)/samples |
| 899 | cp $(SAMPDIR)/configure.in $(DISTDIR)/samples |
| 900 | |
| 901 | mkdir $(DISTDIR)/samples/artprov |
| 902 | cp $(SAMPDIR)/artprov/Makefile.in $(DISTDIR)/samples/artprov |
| 903 | cp $(SAMPDIR)/artprov/makefile.unx $(DISTDIR)/samples/artprov |
| 904 | cp $(SAMPDIR)/artprov/*.cpp $(DISTDIR)/samples/artprov |
| 905 | cp $(SAMPDIR)/artprov/*.h $(DISTDIR)/samples/artprov |
| 906 | cp $(SAMPDIR)/artprov/*.xpm $(DISTDIR)/samples/artprov |
| 907 | |
| 908 | mkdir $(DISTDIR)/samples/calendar |
| 909 | cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar |
| 910 | cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar |
| 911 | cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar |
| 912 | |
| 913 | mkdir $(DISTDIR)/samples/caret |
| 914 | cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret |
| 915 | cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret |
| 916 | cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret |
| 917 | cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret |
| 918 | |
| 919 | mkdir $(DISTDIR)/samples/checklst |
| 920 | cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst |
| 921 | cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst |
| 922 | cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst |
| 923 | cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst |
| 924 | cp $(SAMPDIR)/checklst/*.mms $(DISTDIR)/samples/checklst |
| 925 | |
| 926 | mkdir $(DISTDIR)/samples/config |
| 927 | cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config |
| 928 | cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config |
| 929 | cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config |
| 930 | |
| 931 | mkdir $(DISTDIR)/samples/console |
| 932 | cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console |
| 933 | cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console |
| 934 | cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console |
| 935 | |
| 936 | mkdir $(DISTDIR)/samples/controls |
| 937 | mkdir $(DISTDIR)/samples/controls/icons |
| 938 | cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls |
| 939 | cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls |
| 940 | cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls |
| 941 | cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls |
| 942 | cp $(SAMPDIR)/controls/*.mms $(DISTDIR)/samples/controls |
| 943 | cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons |
| 944 | |
| 945 | mkdir $(DISTDIR)/samples/db |
| 946 | cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db |
| 947 | cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db |
| 948 | cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db |
| 949 | cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db |
| 950 | cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db |
| 951 | |
| 952 | mkdir $(DISTDIR)/samples/dialogs |
| 953 | cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs |
| 954 | cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs |
| 955 | cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs |
| 956 | cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs |
| 957 | cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs |
| 958 | cp $(SAMPDIR)/dialogs/*.mms $(DISTDIR)/samples/dialogs |
| 959 | |
| 960 | mkdir $(DISTDIR)/samples/dnd |
| 961 | cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd |
| 962 | cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd |
| 963 | cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd |
| 964 | cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd |
| 965 | cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd |
| 966 | cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd |
| 967 | cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd |
| 968 | |
| 969 | mkdir $(DISTDIR)/samples/docview |
| 970 | cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview |
| 971 | cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview |
| 972 | cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview |
| 973 | cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview |
| 974 | cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview |
| 975 | |
| 976 | mkdir $(DISTDIR)/samples/docvwmdi |
| 977 | cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi |
| 978 | cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi |
| 979 | cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi |
| 980 | cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi |
| 981 | |
| 982 | mkdir $(DISTDIR)/samples/dragimag |
| 983 | cp $(SAMPDIR)/dragimag/Makefile.in $(DISTDIR)/samples/dragimag |
| 984 | cp $(SAMPDIR)/dragimag/makefile.unx $(DISTDIR)/samples/dragimag |
| 985 | cp $(SAMPDIR)/dragimag/*.cpp $(DISTDIR)/samples/dragimag |
| 986 | cp $(SAMPDIR)/dragimag/*.h $(DISTDIR)/samples/dragimag |
| 987 | cp $(SAMPDIR)/dragimag/*.xpm $(DISTDIR)/samples/dragimag |
| 988 | cp $(SAMPDIR)/dragimag/*.png $(DISTDIR)/samples/dragimag |
| 989 | |
| 990 | mkdir $(DISTDIR)/samples/drawing |
| 991 | cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing |
| 992 | cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing |
| 993 | cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing |
| 994 | cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing |
| 995 | cp $(SAMPDIR)/drawing/*.bmp $(DISTDIR)/samples/drawing |
| 996 | |
| 997 | mkdir $(DISTDIR)/samples/dynamic |
| 998 | cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic |
| 999 | cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic |
| 1000 | cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic |
| 1001 | cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic |
| 1002 | |
| 1003 | mkdir $(DISTDIR)/samples/erase |
| 1004 | cp $(SAMPDIR)/erase/Makefile.in $(DISTDIR)/samples/erase |
| 1005 | cp $(SAMPDIR)/erase/makefile.unx $(DISTDIR)/samples/erase |
| 1006 | cp $(SAMPDIR)/erase/*.cpp $(DISTDIR)/samples/erase |
| 1007 | |
| 1008 | mkdir $(DISTDIR)/samples/event |
| 1009 | cp $(SAMPDIR)/event/Makefile.in $(DISTDIR)/samples/event |
| 1010 | cp $(SAMPDIR)/event/makefile.unx $(DISTDIR)/samples/event |
| 1011 | cp $(SAMPDIR)/event/*.cpp $(DISTDIR)/samples/event |
| 1012 | |
| 1013 | mkdir $(DISTDIR)/samples/exec |
| 1014 | cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec |
| 1015 | cp $(SAMPDIR)/exec/makefile.unx $(DISTDIR)/samples/exec |
| 1016 | cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec |
| 1017 | |
| 1018 | mkdir $(DISTDIR)/samples/font |
| 1019 | cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font |
| 1020 | cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font |
| 1021 | cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font |
| 1022 | |
| 1023 | mkdir $(DISTDIR)/samples/grid |
| 1024 | cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid |
| 1025 | cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid |
| 1026 | cp $(SAMPDIR)/grid/*.cpp $(SAMPDIR)/grid/*.h $(DISTDIR)/samples/grid |
| 1027 | |
| 1028 | mkdir $(DISTDIR)/samples/help |
| 1029 | mkdir $(DISTDIR)/samples/help/doc |
| 1030 | cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help |
| 1031 | cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help |
| 1032 | cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help |
| 1033 | cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help |
| 1034 | cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc |
| 1035 | |
| 1036 | mkdir $(DISTDIR)/samples/html |
| 1037 | cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html |
| 1038 | mkdir $(DISTDIR)/samples/html/about |
| 1039 | cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about |
| 1040 | cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about |
| 1041 | mkdir $(DISTDIR)/samples/html/about/data |
| 1042 | cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data |
| 1043 | cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data |
| 1044 | mkdir $(DISTDIR)/samples/html/help |
| 1045 | cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help |
| 1046 | cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help |
| 1047 | mkdir $(DISTDIR)/samples/html/help/helpfiles |
| 1048 | cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles |
| 1049 | mkdir $(DISTDIR)/samples/html/helpview |
| 1050 | cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview |
| 1051 | cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview |
| 1052 | cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview |
| 1053 | mkdir $(DISTDIR)/samples/html/printing |
| 1054 | cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing |
| 1055 | cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing |
| 1056 | cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing |
| 1057 | mkdir $(DISTDIR)/samples/html/test |
| 1058 | cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test |
| 1059 | cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test |
| 1060 | cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test |
| 1061 | cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test |
| 1062 | cp $(SAMPDIR)/html/test/*.gif $(DISTDIR)/samples/html/test |
| 1063 | cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test |
| 1064 | cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test |
| 1065 | mkdir $(DISTDIR)/samples/html/virtual |
| 1066 | cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual |
| 1067 | cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual |
| 1068 | cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual |
| 1069 | mkdir $(DISTDIR)/samples/html/widget |
| 1070 | cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget |
| 1071 | cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget |
| 1072 | cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget |
| 1073 | mkdir $(DISTDIR)/samples/html/zip |
| 1074 | cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip |
| 1075 | cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip |
| 1076 | cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip |
| 1077 | cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip |
| 1078 | |
| 1079 | mkdir $(DISTDIR)/samples/image |
| 1080 | cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image |
| 1081 | cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image |
| 1082 | cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image |
| 1083 | cp $(SAMPDIR)/image/*.mms $(DISTDIR)/samples/image |
| 1084 | cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image |
| 1085 | cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image |
| 1086 | cp $(SAMPDIR)/image/smile.xpm $(DISTDIR)/samples/image |
| 1087 | |
| 1088 | mkdir $(DISTDIR)/samples/internat |
| 1089 | mkdir $(DISTDIR)/samples/internat/de |
| 1090 | mkdir $(DISTDIR)/samples/internat/fr |
| 1091 | mkdir $(DISTDIR)/samples/internat/ju |
| 1092 | mkdir $(DISTDIR)/samples/internat/ru |
| 1093 | cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat |
| 1094 | cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat |
| 1095 | cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat |
| 1096 | cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat |
| 1097 | cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat |
| 1098 | cp $(SAMPDIR)/internat/fr/*.mo $(DISTDIR)/samples/internat/fr |
| 1099 | cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de |
| 1100 | cp $(SAMPDIR)/internat/ja/*.mo $(DISTDIR)/samples/internat/ja |
| 1101 | cp $(SAMPDIR)/internat/ru/*.mo $(DISTDIR)/samples/internat/ru |
| 1102 | cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr |
| 1103 | cp $(SAMPDIR)/internat/de/*.po $(DISTDIR)/samples/internat/de |
| 1104 | cp $(SAMPDIR)/internat/ja/*.po $(DISTDIR)/samples/internat/ja |
| 1105 | cp $(SAMPDIR)/internat/ru/*.po $(DISTDIR)/samples/internat/ru |
| 1106 | |
| 1107 | mkdir $(DISTDIR)/samples/ipc |
| 1108 | cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc |
| 1109 | cp $(SAMPDIR)/ipc/makefile.unx $(DISTDIR)/samples/ipc |
| 1110 | cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc |
| 1111 | cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc |
| 1112 | cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc |
| 1113 | |
| 1114 | mkdir $(DISTDIR)/samples/joytest |
| 1115 | cp $(SAMPDIR)/joytest/Makefile.in $(DISTDIR)/samples/joytest |
| 1116 | cp $(SAMPDIR)/joytest/makefile.unx $(DISTDIR)/samples/joytest |
| 1117 | cp $(SAMPDIR)/joytest/*.cpp $(DISTDIR)/samples/joytest |
| 1118 | cp $(SAMPDIR)/joytest/*.h $(DISTDIR)/samples/joytest |
| 1119 | cp $(SAMPDIR)/joytest/*.wav $(DISTDIR)/samples/joytest |
| 1120 | |
| 1121 | mkdir $(DISTDIR)/samples/keyboard |
| 1122 | cp $(SAMPDIR)/keyboard/Makefile.in $(DISTDIR)/samples/keyboard |
| 1123 | cp $(SAMPDIR)/keyboard/*.cpp $(DISTDIR)/samples/keyboard |
| 1124 | |
| 1125 | mkdir $(DISTDIR)/samples/layout |
| 1126 | cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout |
| 1127 | cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout |
| 1128 | cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout |
| 1129 | cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout |
| 1130 | |
| 1131 | mkdir $(DISTDIR)/samples/listctrl |
| 1132 | mkdir $(DISTDIR)/samples/listctrl/bitmaps |
| 1133 | cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl |
| 1134 | cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl |
| 1135 | cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl |
| 1136 | cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl |
| 1137 | cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl |
| 1138 | cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps |
| 1139 | |
| 1140 | mkdir $(DISTDIR)/samples/mdi |
| 1141 | mkdir $(DISTDIR)/samples/mdi/bitmaps |
| 1142 | cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi |
| 1143 | cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi |
| 1144 | cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi |
| 1145 | cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi |
| 1146 | cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi |
| 1147 | cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps |
| 1148 | |
| 1149 | mkdir $(DISTDIR)/samples/memcheck |
| 1150 | cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck |
| 1151 | cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck |
| 1152 | cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck |
| 1153 | cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck |
| 1154 | |
| 1155 | mkdir $(DISTDIR)/samples/menu |
| 1156 | cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu |
| 1157 | cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu |
| 1158 | cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu |
| 1159 | |
| 1160 | mkdir $(DISTDIR)/samples/minifram |
| 1161 | mkdir $(DISTDIR)/samples/minifram/bitmaps |
| 1162 | cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram |
| 1163 | cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram |
| 1164 | cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram |
| 1165 | cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram |
| 1166 | cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram |
| 1167 | cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps |
| 1168 | |
| 1169 | mkdir $(DISTDIR)/samples/minimal |
| 1170 | cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal |
| 1171 | cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal |
| 1172 | cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal |
| 1173 | cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal |
| 1174 | cp $(SAMPDIR)/minimal/*.mms $(DISTDIR)/samples/minimal |
| 1175 | |
| 1176 | mkdir $(DISTDIR)/samples/mobile |
| 1177 | cp $(SAMPDIR)/mobile/Makefile.in $(DISTDIR)/samples/mobile |
| 1178 | mkdir $(DISTDIR)/samples/mobile/wxedit |
| 1179 | cp $(SAMPDIR)/mobile/wxedit/Makefile.in $(DISTDIR)/samples/mobile/wxedit |
| 1180 | cp $(SAMPDIR)/mobile/wxedit/*.cpp $(DISTDIR)/samples/mobile/wxedit |
| 1181 | cp $(SAMPDIR)/mobile/wxedit/*.h $(DISTDIR)/samples/mobile/wxedit |
| 1182 | mkdir $(DISTDIR)/samples/mobile/styles |
| 1183 | cp $(SAMPDIR)/mobile/styles/Makefile.in $(DISTDIR)/samples/mobile/styles |
| 1184 | cp $(SAMPDIR)/mobile/styles/*.cpp $(DISTDIR)/samples/mobile/styles |
| 1185 | cp $(SAMPDIR)/mobile/styles/*.h $(DISTDIR)/samples/mobile/styles |
| 1186 | cp $(SAMPDIR)/mobile/styles/*.jpg $(DISTDIR)/samples/mobile/styles |
| 1187 | |
| 1188 | mkdir $(DISTDIR)/samples/dialup |
| 1189 | cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup |
| 1190 | cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup |
| 1191 | cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup |
| 1192 | |
| 1193 | mkdir $(DISTDIR)/samples/notebook |
| 1194 | cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook |
| 1195 | cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook |
| 1196 | cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook |
| 1197 | cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook |
| 1198 | |
| 1199 | mkdir $(DISTDIR)/samples/opengl |
| 1200 | cp $(SAMPDIR)/opengl/Makefile.in $(DISTDIR)/samples/opengl |
| 1201 | mkdir $(DISTDIR)/samples/opengl/penguin |
| 1202 | cp $(SAMPDIR)/opengl/penguin/Makefile.in $(DISTDIR)/samples/opengl/penguin |
| 1203 | cp $(SAMPDIR)/opengl/penguin/makefile.unx $(DISTDIR)/samples/opengl/penguin |
| 1204 | cp $(SAMPDIR)/opengl/penguin/*.cpp $(DISTDIR)/samples/opengl/penguin |
| 1205 | cp $(SAMPDIR)/opengl/penguin/*.c $(DISTDIR)/samples/opengl/penguin |
| 1206 | cp $(SAMPDIR)/opengl/penguin/*.h $(DISTDIR)/samples/opengl/penguin |
| 1207 | cp $(SAMPDIR)/opengl/penguin/*.lwo $(DISTDIR)/samples/opengl/penguin |
| 1208 | mkdir $(DISTDIR)/samples/opengl/cube |
| 1209 | cp $(SAMPDIR)/opengl/cube/Makefile.in $(DISTDIR)/samples/opengl/cube |
| 1210 | cp $(SAMPDIR)/opengl/cube/makefile.unx $(DISTDIR)/samples/opengl/cube |
| 1211 | cp $(SAMPDIR)/opengl/cube/*.cpp $(DISTDIR)/samples/opengl/cube |
| 1212 | cp $(SAMPDIR)/opengl/cube/*.h $(DISTDIR)/samples/opengl/cube |
| 1213 | mkdir $(DISTDIR)/samples/opengl/isosurf |
| 1214 | cp $(SAMPDIR)/opengl/isosurf/Makefile.in $(DISTDIR)/samples/opengl/isosurf |
| 1215 | cp $(SAMPDIR)/opengl/isosurf/makefile.unx $(DISTDIR)/samples/opengl/isosurf |
| 1216 | cp $(SAMPDIR)/opengl/isosurf/*.cpp $(DISTDIR)/samples/opengl/isosurf |
| 1217 | cp $(SAMPDIR)/opengl/isosurf/*.h $(DISTDIR)/samples/opengl/isosurf |
| 1218 | cp $(SAMPDIR)/opengl/isosurf/*.gz $(DISTDIR)/samples/opengl/isosurf |
| 1219 | |
| 1220 | mkdir $(DISTDIR)/samples/png |
| 1221 | cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png |
| 1222 | cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png |
| 1223 | cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png |
| 1224 | cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png |
| 1225 | cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png |
| 1226 | |
| 1227 | mkdir $(DISTDIR)/samples/printing |
| 1228 | cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing |
| 1229 | cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing |
| 1230 | cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing |
| 1231 | cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing |
| 1232 | cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing |
| 1233 | cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing |
| 1234 | |
| 1235 | # mkdir $(DISTDIR)/samples/resource |
| 1236 | # cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource |
| 1237 | # cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource |
| 1238 | # cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource |
| 1239 | # cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource |
| 1240 | # cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource |
| 1241 | |
| 1242 | mkdir $(DISTDIR)/samples/rotate |
| 1243 | cp $(SAMPDIR)/rotate/Makefile.in $(DISTDIR)/samples/rotate |
| 1244 | cp $(SAMPDIR)/rotate/makefile.unx $(DISTDIR)/samples/rotate |
| 1245 | cp $(SAMPDIR)/rotate/*.cpp $(DISTDIR)/samples/rotate |
| 1246 | cp $(SAMPDIR)/rotate/*.bmp $(DISTDIR)/samples/rotate |
| 1247 | |
| 1248 | mkdir $(DISTDIR)/samples/richedit |
| 1249 | cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit |
| 1250 | cp $(SAMPDIR)/richedit/makefile.unx $(DISTDIR)/samples/richedit |
| 1251 | cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit |
| 1252 | cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit |
| 1253 | cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit |
| 1254 | cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit |
| 1255 | cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit |
| 1256 | |
| 1257 | # mkdir $(DISTDIR)/samples/proplist |
| 1258 | # cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist |
| 1259 | # cp $(SAMPDIR)/proplist/makefile.unx $(DISTDIR)/samples/proplist |
| 1260 | # cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist |
| 1261 | # cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist |
| 1262 | |
| 1263 | mkdir $(DISTDIR)/samples/propsize |
| 1264 | cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize |
| 1265 | cp $(SAMPDIR)/propsize/makefile.unx $(DISTDIR)/samples/propsize |
| 1266 | cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize |
| 1267 | cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize |
| 1268 | |
| 1269 | mkdir $(DISTDIR)/samples/sashtest |
| 1270 | cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest |
| 1271 | cp $(SAMPDIR)/sashtest/makefile.unx $(DISTDIR)/samples/sashtest |
| 1272 | cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest |
| 1273 | cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest |
| 1274 | |
| 1275 | mkdir $(DISTDIR)/samples/scroll |
| 1276 | cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll |
| 1277 | cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll |
| 1278 | cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll |
| 1279 | |
| 1280 | mkdir $(DISTDIR)/samples/scrollsub |
| 1281 | cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub |
| 1282 | cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub |
| 1283 | cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub |
| 1284 | |
| 1285 | mkdir $(DISTDIR)/samples/shaped |
| 1286 | cp $(SAMPDIR)/shaped/Makefile.in $(DISTDIR)/samples/shaped |
| 1287 | cp $(SAMPDIR)/shaped/makefile.unx $(DISTDIR)/samples/shaped |
| 1288 | cp $(SAMPDIR)/shaped/*.cpp $(DISTDIR)/samples/shaped |
| 1289 | cp $(SAMPDIR)/shaped/*.h $(DISTDIR)/samples/shaped |
| 1290 | cp $(SAMPDIR)/shaped/*.png $(DISTDIR)/samples/shaped |
| 1291 | |
| 1292 | mkdir $(DISTDIR)/samples/sockets |
| 1293 | cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets |
| 1294 | cp $(SAMPDIR)/sockets/makefile.unx $(DISTDIR)/samples/sockets |
| 1295 | cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets |
| 1296 | cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets |
| 1297 | |
| 1298 | mkdir $(DISTDIR)/samples/splitter |
| 1299 | cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter |
| 1300 | cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter |
| 1301 | cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter |
| 1302 | |
| 1303 | mkdir $(DISTDIR)/samples/statbar |
| 1304 | cp $(SAMPDIR)/statbar/Makefile.in $(DISTDIR)/samples/statbar |
| 1305 | cp $(SAMPDIR)/statbar/makefile.unx $(DISTDIR)/samples/statbar |
| 1306 | cp $(SAMPDIR)/statbar/*.cpp $(DISTDIR)/samples/statbar |
| 1307 | cp $(SAMPDIR)/statbar/*.xpm $(DISTDIR)/samples/statbar |
| 1308 | |
| 1309 | mkdir $(DISTDIR)/samples/text |
| 1310 | cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text |
| 1311 | cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text |
| 1312 | cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text |
| 1313 | cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text |
| 1314 | |
| 1315 | mkdir $(DISTDIR)/samples/thread |
| 1316 | cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread |
| 1317 | cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread |
| 1318 | cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread |
| 1319 | |
| 1320 | mkdir $(DISTDIR)/samples/toolbar |
| 1321 | cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar |
| 1322 | cp $(SAMPDIR)/toolbar/makefile.unx $(DISTDIR)/samples/toolbar |
| 1323 | cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar |
| 1324 | cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar |
| 1325 | mkdir $(DISTDIR)/samples/toolbar/bitmaps |
| 1326 | cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps |
| 1327 | |
| 1328 | mkdir $(DISTDIR)/samples/treectrl |
| 1329 | cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl |
| 1330 | cp $(SAMPDIR)/treectrl/makefile.unx $(DISTDIR)/samples/treectrl |
| 1331 | cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl |
| 1332 | cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl |
| 1333 | cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl |
| 1334 | |
| 1335 | # mkdir $(DISTDIR)/samples/treelay |
| 1336 | # cp $(SAMPDIR)/treelay/Makefile.in $(DISTDIR)/samples/treelay |
| 1337 | # cp $(SAMPDIR)/treelay/makefile.unx $(DISTDIR)/samples/treelay |
| 1338 | # cp $(SAMPDIR)/treelay/*.cpp $(DISTDIR)/samples/treelay |
| 1339 | # cp $(SAMPDIR)/treelay/*.h $(DISTDIR)/samples/treelay |
| 1340 | |
| 1341 | mkdir $(DISTDIR)/samples/typetest |
| 1342 | cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest |
| 1343 | cp $(SAMPDIR)/typetest/makefile.unx $(DISTDIR)/samples/typetest |
| 1344 | cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest |
| 1345 | cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest |
| 1346 | cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest |
| 1347 | |
| 1348 | mkdir $(DISTDIR)/samples/validate |
| 1349 | cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate |
| 1350 | cp $(SAMPDIR)/validate/makefile.unx $(DISTDIR)/samples/validate |
| 1351 | cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate |
| 1352 | cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate |
| 1353 | cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate |
| 1354 | |
| 1355 | mkdir $(DISTDIR)/samples/wizard |
| 1356 | cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard |
| 1357 | cp $(SAMPDIR)/wizard/makefile.unx $(DISTDIR)/samples/wizard |
| 1358 | cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard |
| 1359 | cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard |
| 1360 | |
| 1361 | mkdir $(DISTDIR)/samples/widgets |
| 1362 | mkdir $(DISTDIR)/samples/widgets/icons |
| 1363 | cp $(SAMPDIR)/widgets/Makefile.in $(DISTDIR)/samples/widgets |
| 1364 | cp $(SAMPDIR)/widgets/*.cpp $(DISTDIR)/samples/widgets |
| 1365 | cp $(SAMPDIR)/widgets/*.h $(DISTDIR)/samples/widgets |
| 1366 | cp $(SAMPDIR)/widgets/*.rc $(DISTDIR)/samples/widgets |
| 1367 | cp $(SAMPDIR)/widgets/icons/*.xpm $(DISTDIR)/samples/widgets/icons |
| 1368 | |
| 1369 | UTILS_DIST: ALL_GUI_DIST |
| 1370 | mkdir $(DISTDIR)/utils |
| 1371 | cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils |
| 1372 | cp $(UTILSDIR)/configure $(DISTDIR)/utils |
| 1373 | cp $(UTILSDIR)/configure.in $(DISTDIR)/utils |
| 1374 | |
| 1375 | mkdir $(DISTDIR)/utils/tex2rtf |
| 1376 | mkdir $(DISTDIR)/utils/tex2rtf/src |
| 1377 | cp $(UTILSDIR)/tex2rtf/*.in $(DISTDIR)/utils/tex2rtf |
| 1378 | cp $(UTILSDIR)/tex2rtf/src/*.h $(DISTDIR)/utils/tex2rtf/src |
| 1379 | cp $(UTILSDIR)/tex2rtf/src/*.in $(DISTDIR)/utils/tex2rtf/src |
| 1380 | cp $(UTILSDIR)/tex2rtf/src/*.cpp $(DISTDIR)/utils/tex2rtf/src |
| 1381 | cp $(UTILSDIR)/tex2rtf/src/tex2rtf.* $(DISTDIR)/utils/tex2rtf/src |
| 1382 | |
| 1383 | mkdir $(DISTDIR)/utils/emulator |
| 1384 | mkdir $(DISTDIR)/utils/emulator/src |
| 1385 | mkdir $(DISTDIR)/utils/emulator/docs |
| 1386 | cp $(UTILSDIR)/emulator/*.in $(DISTDIR)/utils/emulator |
| 1387 | cp $(UTILSDIR)/emulator/src/*.h $(DISTDIR)/utils/emulator/src |
| 1388 | cp $(UTILSDIR)/emulator/src/*.in $(DISTDIR)/utils/emulator/src |
| 1389 | cp $(UTILSDIR)/emulator/src/*.cpp $(DISTDIR)/utils/emulator/src |
| 1390 | cp $(UTILSDIR)/emulator/src/*.jpg $(DISTDIR)/utils/emulator/src |
| 1391 | cp $(UTILSDIR)/emulator/src/*.wxe $(DISTDIR)/utils/emulator/src |
| 1392 | cp $(UTILSDIR)/emulator/docs/*.txt $(DISTDIR)/utils/emulator/docs |
| 1393 | cp $(UTILSDIR)/emulator/docs/*.jpg $(DISTDIR)/utils/emulator/docs |
| 1394 | |
| 1395 | mkdir $(DISTDIR)/utils/makegen |
| 1396 | mkdir $(DISTDIR)/utils/makegen/templates |
| 1397 | cp $(UTILSDIR)/makegen/Makefile.in $(DISTDIR)/utils/makegen |
| 1398 | cp $(UTILSDIR)/makegen/*.cpp $(DISTDIR)/utils/makegen |
| 1399 | cp $(UTILSDIR)/makegen/templates/*.* $(DISTDIR)/utils/makegen/templates |
| 1400 | |
| 1401 | mkdir $(DISTDIR)/utils/hhp2cached |
| 1402 | cp $(UTILSDIR)/hhp2cached/*.* $(DISTDIR)/utils/hhp2cached |
| 1403 | |
| 1404 | mkdir $(DISTDIR)/utils/HelpGen |
| 1405 | mkdir $(DISTDIR)/utils/HelpGen/src |
| 1406 | cp $(UTILSDIR)/HelpGen/Makefile.in $(DISTDIR)/utils/HelpGen |
| 1407 | cp $(UTILSDIR)/HelpGen/src/*.* $(DISTDIR)/utils/HelpGen/src |
| 1408 | |
| 1409 | mkdir $(DISTDIR)/utils/dialoged |
| 1410 | mkdir $(DISTDIR)/utils/dialoged/src |
| 1411 | mkdir $(DISTDIR)/utils/dialoged/src/bitmaps |
| 1412 | mkdir $(DISTDIR)/utils/dialoged/docs |
| 1413 | cp $(UTILSDIR)/dialoged/Makefile.in $(DISTDIR)/utils/dialoged |
| 1414 | cp $(UTILSDIR)/dialoged/src/*.h $(DISTDIR)/utils/dialoged/src |
| 1415 | cp $(UTILSDIR)/dialoged/src/*.cpp $(DISTDIR)/utils/dialoged/src |
| 1416 | cp $(UTILSDIR)/dialoged/src/Makefile.in $(DISTDIR)/utils/dialoged/src |
| 1417 | cp $(UTILSDIR)/dialoged/src/makefile.unx $(DISTDIR)/utils/dialoged/src |
| 1418 | cp $(UTILSDIR)/dialoged/src/bitmaps/*.xpm $(DISTDIR)/utils/dialoged/src/bitmaps |
| 1419 | cp $(UTILSDIR)/dialoged/docs/*.tex $(DISTDIR)/utils/dialoged/docs |
| 1420 | cp $(UTILSDIR)/dialoged/docs/*.ini $(DISTDIR)/utils/dialoged/docs |
| 1421 | cp $(UTILSDIR)/dialoged/docs/*.gif $(DISTDIR)/utils/dialoged/docs |
| 1422 | |
| 1423 | mkdir $(DISTDIR)/utils/helpview |
| 1424 | mkdir $(DISTDIR)/utils/helpview/src |
| 1425 | mkdir $(DISTDIR)/utils/helpview/src/bitmaps |
| 1426 | cp $(UTILSDIR)/helpview/Makefile.in $(DISTDIR)/utils/helpview |
| 1427 | cp $(UTILSDIR)/helpview/src/*.h $(DISTDIR)/utils/helpview/src |
| 1428 | cp $(UTILSDIR)/helpview/src/*.cpp $(DISTDIR)/utils/helpview/src |
| 1429 | cp $(UTILSDIR)/helpview/src/Makefile.in $(DISTDIR)/utils/helpview/src |
| 1430 | cp $(UTILSDIR)/helpview/src/test.zip $(DISTDIR)/utils/helpview/src |
| 1431 | cp $(UTILSDIR)/helpview/src/bitmaps/*.xpm $(DISTDIR)/utils/helpview/src/bitmaps |
| 1432 | |
| 1433 | MISC_DIST: ALL_GUI_DIST |
| 1434 | mkdir $(DISTDIR)/misc |
| 1435 | mkdir $(DISTDIR)/misc/afm |
| 1436 | cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm |
| 1437 | mkdir $(DISTDIR)/misc/gs_afm |
| 1438 | cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm |
| 1439 | |
| 1440 | INTL_DIST: |
| 1441 | mkdir $(DISTDIR)/locale |
| 1442 | cp $(INTLDIR)/Makefile $(DISTDIR)/locale |
| 1443 | cp $(INTLDIR)/*.po $(DISTDIR)/locale |
| 1444 | -cp $(INTLDIR)/*.mo $(DISTDIR)/locale |
| 1445 | |
| 1446 | MANUAL_DIST: |
| 1447 | mkdir $(DISTDIR)/docs |
| 1448 | mkdir $(DISTDIR)/docs/latex |
| 1449 | mkdir $(DISTDIR)/docs/latex/wx |
| 1450 | cp $(DOCDIR)/latex/wx/*.tex $(DISTDIR)/docs/latex/wx |
| 1451 | cp $(DOCDIR)/latex/wx/*.inc $(DISTDIR)/docs/latex/wx |
| 1452 | cp $(DOCDIR)/latex/wx/*.gif $(DISTDIR)/docs/latex/wx |
| 1453 | cp $(DOCDIR)/latex/wx/*.ini $(DISTDIR)/docs/latex/wx |
| 1454 | cp $(DOCDIR)/latex/wx/*.bib $(DISTDIR)/docs/latex/wx |
| 1455 | cp $(DOCDIR)/latex/wx/*.sty $(DISTDIR)/docs/latex/wx |
| 1456 | |
| 1457 | # this target does not generate a complete wxPython dist, it only includes |
| 1458 | # those files needed for the Debian source package. |
| 1459 | # see utils/wxPython/distrib for scripts to make a proper wxPython dist. |
| 1460 | PYTHON_DIST: |
| 1461 | mkdir $(DISTDIR)/wxPython |
| 1462 | mkdir $(DISTDIR)/wxPython/contrib |
| 1463 | mkdir $(DISTDIR)/wxPython/contrib/dllwidget |
| 1464 | mkdir $(DISTDIR)/wxPython/contrib/gizmos |
| 1465 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas |
| 1466 | mkdir $(DISTDIR)/wxPython/contrib/glcanvas/gtk |
| 1467 | mkdir $(DISTDIR)/wxPython/contrib/ogl |
| 1468 | mkdir $(DISTDIR)/wxPython/contrib/stc |
| 1469 | mkdir $(DISTDIR)/wxPython/contrib/stc/gtk |
| 1470 | mkdir $(DISTDIR)/wxPython/contrib/xrc |
| 1471 | mkdir $(DISTDIR)/wxPython/demo |
| 1472 | mkdir $(DISTDIR)/wxPython/demo/bitmaps |
| 1473 | mkdir $(DISTDIR)/wxPython/demo/bmp_source |
| 1474 | mkdir $(DISTDIR)/wxPython/demo/data |
| 1475 | mkdir $(DISTDIR)/wxPython/demo/dllwidget |
| 1476 | mkdir $(DISTDIR)/wxPython/src |
| 1477 | mkdir $(DISTDIR)/wxPython/src/gtk |
| 1478 | mkdir $(DISTDIR)/wxPython/scripts |
| 1479 | mkdir $(DISTDIR)/wxPython/wxPython |
| 1480 | mkdir $(DISTDIR)/wxPython/wxPython/lib |
| 1481 | mkdir $(DISTDIR)/wxPython/wxPython/lib/PyCrust |
| 1482 | mkdir $(DISTDIR)/wxPython/wxPython/lib/editor |
| 1483 | mkdir $(DISTDIR)/wxPython/wxPython/lib/mixins |
| 1484 | mkdir $(DISTDIR)/wxPython/wxPython/tools |
| 1485 | mkdir $(DISTDIR)/wxPython/wxPython/tools/XRCed |
| 1486 | |
| 1487 | cp $(WXDIR)/wxPython/*.txt $(DISTDIR)/wxPython |
| 1488 | cp $(WXDIR)/wxPython/*.py $(DISTDIR)/wxPython |
| 1489 | cp $(WXDIR)/wxPython/setup.cfg $(DISTDIR)/wxPython |
| 1490 | cp $(WXDIR)/wxPython/MANIFEST.in $(DISTDIR)/wxPython |
| 1491 | cp $(WXDIR)/wxPython/contrib/dllwidget/*.{py,cpp,h,i} $(DISTDIR)/wxPython/contrib/dllwidget |
| 1492 | cp $(WXDIR)/wxPython/contrib/gizmos/*.{py,cpp,i} $(DISTDIR)/wxPython/contrib/gizmos |
| 1493 | -cp $(WXDIR)/wxPython/contrib/glcanvas/* $(DISTDIR)/wxPython/contrib/glcanvas |
| 1494 | cp $(WXDIR)/wxPython/contrib/glcanvas/gtk/glcanvas.* $(DISTDIR)/wxPython/contrib/glcanvas/gtk |
| 1495 | -cp $(WXDIR)/wxPython/contrib/ogl/* $(DISTDIR)/wxPython/contrib/ogl |
| 1496 | -cp $(WXDIR)/wxPython/contrib/stc/* $(DISTDIR)/wxPython/contrib/stc |
| 1497 | -cp $(WXDIR)/wxPython/contrib/stc/gtk/* $(DISTDIR)/wxPython/contrib/stc/gtk |
| 1498 | -cp $(WXDIR)/wxPython/contrib/xrc/xrc.* $(DISTDIR)/wxPython/contrib/xrc |
| 1499 | -cp $(WXDIR)/wxPython/demo/* $(DISTDIR)/wxPython/demo |
| 1500 | -cp $(WXDIR)/wxPython/demo/bitmaps/* $(DISTDIR)/wxPython/demo/bitmaps |
| 1501 | -cp $(WXDIR)/wxPython/demo/bmp_source/* $(DISTDIR)/wxPython/demo/bmp_source |
| 1502 | -cp $(WXDIR)/wxPython/demo/data/* $(DISTDIR)/wxPython/demo/data |
| 1503 | -cp $(WXDIR)/wxPython/demo/dllwidget/Makefile $(DISTDIR)/wxPython/demo/dllwidget |
| 1504 | -cp $(WXDIR)/wxPython/demo/dllwidget/test_* $(DISTDIR)/wxPython/demo/dllwidget |
| 1505 | -cp $(WXDIR)/wxPython/scripts/* $(DISTDIR)/wxPython/scripts |
| 1506 | -cp $(WXDIR)/wxPython/src/* $(DISTDIR)/wxPython/src |
| 1507 | cp $(WXDIR)/wxPython/src/gtk/*.py $(DISTDIR)/wxPython/src/gtk |
| 1508 | cp $(WXDIR)/wxPython/src/gtk/*.cpp $(DISTDIR)/wxPython/src/gtk |
| 1509 | cp $(WXDIR)/wxPython/wxPython/lib/*.py $(DISTDIR)/wxPython/wxPython/lib |
| 1510 | cp $(WXDIR)/wxPython/wxPython/lib/PyCrust/*.py $(DISTDIR)/wxPython/wxPython/lib/PyCrust |
| 1511 | cp $(WXDIR)/wxPython/wxPython/lib/editor/*.py $(DISTDIR)/wxPython/wxPython/lib/editor |
| 1512 | cp $(WXDIR)/wxPython/wxPython/lib/mixins/*.py $(DISTDIR)/wxPython/wxPython/lib/mixins |
| 1513 | cp $(WXDIR)/wxPython/wxPython/tools/*.py $(DISTDIR)/wxPython/wxPython/tools |
| 1514 | cp $(WXDIR)/wxPython/wxPython/tools/XRCed/*.{py,ico,sh,xrc} $(DISTDIR)/wxPython/wxPython/tools/XRCed |
| 1515 | |
| 1516 | distclean: |
| 1517 | $(RM) -r _dist_dir |
| 1518 | |
| 1519 | # VZ: the -only targets allow to do "make dist bzip-dist-only" without copying |
| 1520 | # the files twice |
| 1521 | dist-only: |
| 1522 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." |
| 1523 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); |
| 1524 | @if test "$(USE_GUI)" = 1; then \ |
| 1525 | cd $(DISTDIR); \ |
| 1526 | mv samples wxSamples-$(VER_SUFFIX); \ |
| 1527 | echo "*** Creating wxSamples archive..."; \ |
| 1528 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ |
| 1529 | mv wxSamples-$(VER_SUFFIX) samples; \ |
| 1530 | mv demos wxDemos-$(VER_SUFFIX); \ |
| 1531 | echo "*** Creating wxDemos archive..."; \ |
| 1532 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ |
| 1533 | mv wxDemos-$(VER_SUFFIX) demos; \ |
| 1534 | fi |
| 1535 | |
| 1536 | dist: @GUIDIST@ |
| 1537 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." |
| 1538 | @# now prune away a lot of the crap included by using cp -R |
| 1539 | @# in other dist targets. |
| 1540 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \ |
| 1541 | \( -name "makefile.*" -a ! -name "makefile.unx" \) \) \ |
| 1542 | -print0 | xargs -0 rm -rf |
| 1543 | @cd _dist_dir && tar ch $(DISTDIRNAME) | gzip -f9 > ../$(WXARCHIVE); |
| 1544 | @if test "$(USE_GUI)" = 1; then \ |
| 1545 | cd $(DISTDIR); \ |
| 1546 | mv samples wxSamples-$(VER_SUFFIX); \ |
| 1547 | echo "*** Creating wxSamples archive..."; \ |
| 1548 | tar ch wxSamples-$(VER_SUFFIX) | gzip -f9 > ../../$(WXSAMPLES); \ |
| 1549 | mv wxSamples-$(VER_SUFFIX) samples; \ |
| 1550 | mv demos wxDemos-$(VER_SUFFIX); \ |
| 1551 | echo "*** Creating wxDemos archive..."; \ |
| 1552 | tar ch wxDemos-$(VER_SUFFIX) | gzip -f9 > ../../$(WXDEMOS); \ |
| 1553 | mv wxDemos-$(VER_SUFFIX) demos; \ |
| 1554 | fi |
| 1555 | |
| 1556 | bzip-dist-only: |
| 1557 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." |
| 1558 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP); |
| 1559 | @if test "$(USE_GUI)" = 1; then \ |
| 1560 | cd $(DISTDIR); \ |
| 1561 | mv samples wxSamples-${VER_SUFFIX}; \ |
| 1562 | echo "*** Creating wxSamples archive..."; \ |
| 1563 | tar ch wxSamples-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ |
| 1564 | mv wxSamples-${VER_SUFFIX} samples; \ |
| 1565 | mv demos wxDemos-${VER_SUFFIX}; \ |
| 1566 | echo "*** Creating wxDemos archive..."; \ |
| 1567 | tar ch wxDemos-${VER_SUFFIX} | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ |
| 1568 | mv wxDemos-${VER_SUFFIX} demos; \ |
| 1569 | fi |
| 1570 | |
| 1571 | bzip-dist: @GUIDIST@ |
| 1572 | @echo "*** Creating wxWindows distribution in $(DISTDIR)..." |
| 1573 | @cd _dist_dir && tar ch $(DISTDIRNAME) | bzip2 -f9 > ../$(WXARCHIVE_BZIP) |
| 1574 | @if test "$(USE_GUI)" = 1; then \ |
| 1575 | cd $(DISTDIR); \ |
| 1576 | mv samples wxSamples; \ |
| 1577 | tar ch wxSamples | bzip2 -f9 > ../../$(WXSAMPLES_BZIP); \ |
| 1578 | mv wxSamples samples; \ |
| 1579 | mv demos wxDemos; \ |
| 1580 | tar ch wxDemos | bzip2 -f9 > ../../$(WXDEMOS_BZIP); \ |
| 1581 | mv wxDemos demos; \ |
| 1582 | fi |
| 1583 | |
| 1584 | # RR: Copy text and binary data separatly |
| 1585 | win-dist: MSW_ZIP_TEXT_DIST |
| 1586 | @echo "*** Creating wxWindows ZIP distribution in $(DISTDIR)..." |
| 1587 | @cd _dist_dir && mv $(DISTDIRNAME) wxMSW |
| 1588 | @cd _dist_dir && zip -r -l ../$(WXARCHIVE_ZIP) * |
| 1589 | cp $(INCDIR)/wx/msw/*.cur _dist_dir/wxMSW/include/wx/msw |
| 1590 | cp $(INCDIR)/wx/msw/*.ico _dist_dir/wxMSW/include/wx/msw |
| 1591 | cp $(INCDIR)/wx/msw/*.bmp _dist_dir/wxMSW/include/wx/msw |
| 1592 | @cd _dist_dir && zip -r ../$(WXARCHIVE_ZIP) wxMSW/include/wx/msw/*.cur |
| 1593 | @cd _dist_dir && zip -r ../$(WXARCHIVE_ZIP) wxMSW/include/wx/msw/*.ico |
| 1594 | @cd _dist_dir && zip -r ../$(WXARCHIVE_ZIP) wxMSW/include/wx/msw/*.bmp |
| 1595 | |
| 1596 | debian-dist: debian-native-dist debian-msw-dirs MSW_DIST |
| 1597 | mkdir $(DISTDIR)/debian |
| 1598 | -cp $(WXDIR)/debian/* $(DISTDIR)/debian |
| 1599 | cp $(DOCDIR)/licence.txt $(DISTDIR)/docs |
| 1600 | cp $(DOCDIR)/licendoc.txt $(DISTDIR)/docs |
| 1601 | cp $(DOCDIR)/preamble.txt $(DISTDIR)/docs |
| 1602 | rm -f $(DISTDIR)/*.spec |
| 1603 | |
| 1604 | @# now prune away a lot of the crap included by using cp -R |
| 1605 | @# in other dist targets. Ugly and hardly portable but it |
| 1606 | @# will run on any Debian box and that's enough for now. |
| 1607 | |
| 1608 | find $(DISTDIR) \( -name "CVS" -o -name ".cvsignore" -o -name "*.dsp" -o -name "*.dsw" -o -name "*.hh*" -o \ |
| 1609 | \( -name "makefile.*" -a ! -name "makefile.unx" \) \) \ |
| 1610 | -print0 | xargs -0 rm -rf |
| 1611 | |
| 1612 | rm -rf $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) |
| 1613 | mv $(DISTDIR) $(WXDIR)/../wxwindows$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER) |
| 1614 | |
| 1615 | debian-native-dist: @GUIDIST@ UNIV_DIST MANUAL_DIST PYTHON_DIST |
| 1616 | cp $(SRCDIR)/files.lst $(DISTDIR)/src |
| 1617 | |
| 1618 | debian-msw-dirs: |
| 1619 | mkdir $(DISTDIR)/include/wx/msw |
| 1620 | mkdir $(DISTDIR)/src/msw |
| 1621 | |
| 1622 | |
| 1623 | clean: |
| 1624 | $(RM) *.o |
| 1625 | $(RM) *.d |
| 1626 | $(RM) parser.c |
| 1627 | $(RM) lexer.c |
| 1628 | $(RM) $(build_libdir)/lib* |
| 1629 | # Don't remove this lot, configure will reuse it |
| 1630 | # if it's still good |
| 1631 | # $(RM) -r $(build_libdir)/wx/* |
| 1632 | |
| 1633 | cleanall: clean |
| 1634 | |
| 1635 | |
| 1636 | RPMTOP=_dist_dir/_rpm_top |
| 1637 | |
| 1638 | rpm: bzip-dist |
| 1639 | @echo "*** Building RPMs ***" |
| 1640 | -mkdir $(RPMTOP) |
| 1641 | -mkdir $(RPMTOP)/SOURCES |
| 1642 | -mkdir $(RPMTOP)/SPECS |
| 1643 | -mkdir $(RPMTOP)/BUILD |
| 1644 | -mkdir $(RPMTOP)/RPMS |
| 1645 | -mkdir $(RPMTOP)/SRPMS |
| 1646 | cp -f $(WXARCHIVE_BZIP) $(RPMTOP)/SOURCES |
| 1647 | rpm -ba --define "_topdir `pwd`/$(RPMTOP)" $(WXDIR)/wx$(TOOLKIT).spec |
| 1648 | mv -f `find $(RPMTOP) -name "wx$(TARGET)*.rpm"` . |
| 1649 | |