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