]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tmake/unx.t
Corrected TIFF,
[wxWidgets.git] / distrib / msw / tmake / unx.t
1 #!################################################################################
2 #! File: unx.t
3 #! Purpose: tmake template file from which Makefile.in is generated by running
4 #! tmake -t unx wxwin.pro -o Makefile.in
5 #! Author: Vadim Zeitlin, Robert Roebling, Julian Smart
6 #! Created: 14.07.99
7 #! Version: $Id$
8 #!################################################################################
9 #${
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric, %wxHtml, %wxUnix, %wxGTK, %wxMOTIF and
12 #! %wxOS2PM hashes.
13 IncludeTemplate("filelist.t");
14
15 #! Generic
16
17 foreach $file (sort keys %wxGeneric) {
18 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
19 #! so take the generic version
20 if ( $wxGeneric{$file} =~ /\b(PS|G|U|16)\b/ ) {
21 next unless $file =~ /^dirdlgg\./;
22 }
23
24 $file2 = $file;
25 $file =~ s/cp?p?$/\o/;
26 $file2 =~ s/cp?p?$/\d/;
27 $project{"WXMSW_GENERICOBJS"} .= $file . " ";
28 $project{"WXMSW_GENERICDEPS"} .= $file2 . " "
29 }
30
31 foreach $file (sort keys %wxGeneric) {
32 #! skip generic files not required for the wxGTK port
33 next if $wxGeneric{$file} =~ /\bR\b/;
34
35 $file2 = $file;
36 $file =~ s/cp?p?$/\o/;
37 $file2 =~ s/cp?p?$/\d/;
38 $project{"WXGTK_GENERICOBJS"} .= $file . " ";
39 $project{"WXGTK_GENERICDEPS"} .= $file2 . " "
40 }
41
42 foreach $file (sort keys %wxGeneric) {
43 #! skip generic files not required for the wxMotif port
44 next if $wxGeneric{$file} =~ /\bX\b/;
45
46 $file2 = $file;
47 $file =~ s/cp?p?$/\o/;
48 $file2 =~ s/cp?p?$/\d/;
49 $project{"WXMOTIF_GENERICOBJS"} .= $file . " ";
50 $project{"WXMOTIF_GENERICDEPS"} .= $file2 . " "
51 }
52
53 foreach $file (sort keys %wxGeneric) {
54 #! skip generic files not required for the wxPM port
55 next if $wxGeneric{$file} =~ /\bP\b/;
56
57 $file2 = $file;
58 $file =~ s/cp?p?$/\o/;
59 $file2 =~ s/cp?p?$/\d/;
60 $project{"WXOS2PM_GENERICOBJS"} .= $file . " ";
61 $project{"WXOS2PM_GENERICDEPS"} .= $file2 . " "
62 }
63
64 #! Base
65
66 foreach $file (sort keys %wxBase) {
67 ($fileobj = $file) =~ s/cp?p?$/\o/;
68 ($filedep = $file) =~ s/cp?p?$/\d/;
69
70 $project{"BASE_OBJS"} .= $fileobj . " ";
71 $project{"BASE_DEPS"} .= $filedep . " ";
72 }
73
74 #! Common
75
76 foreach $file (sort keys %wxCommon) {
77 ($fileobj = $file) =~ s/cp?p?$/\o/;
78 ($filedep = $file) =~ s/cp?p?$/\d/;
79
80 #! 'B' flag means that the file makes part of wxBase too
81 if ( $wxCommon{$file} =~ /\bB\b/ ) {
82 $project{"BASE_OBJS"} .= $fileobj . " ";
83 $project{"BASE_DEPS"} .= $filedep . " ";
84 }
85
86 if ( $wxCommon{$file} !~ /\bR\b/ ) { #! unless not for GTK
87 $project{"WXGTK_COMMONOBJS"} .= $fileobj . " ";
88 $project{"WXGTK_COMMONDEPS"} .= $filedep . " "
89 }
90 if ( $wxCommon{$file} !~ /\bX\b/ ) { #! unless not for Motif
91 $project{"WXMOTIF_COMMONOBJS"} .= $fileobj . " ";
92 $project{"WXMOTIF_COMMONDEPS"} .= $filedep . " "
93 }
94 if ( $wxCommon{$file} !~ /\bP\b/ ) { #! unless not for OS2PM
95 $project{"WXOS2PM_COMMONOBJS"} .= $fileobj . " ";
96 $project{"WXOS2PM_COMMONDEPS"} .= $filedep . " ";
97 }
98
99 #! ODBC needs extra files (sql*.h) so not compiled by default.
100 if ( (file !~ /^odbc\./) && ($wxCommon{$file} !~ /\b(16)\b/) ) {
101 $project{"WXMSW_COMMONOBJS"} .= $fileobj . " ";
102 $project{"WXMSW_COMMONDEPS"} .= $filedep . " "
103 }
104 }
105
106 #! GUI
107
108 foreach $file (sort keys %wxMSW) {
109 #! Mingw32 doesn't have the OLE headers and has some troubles with
110 #! socket code
111 next if $wxMSW{$file} =~ /\b(O|16)\b/;
112
113 #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
114 next if $file =~ /^dirdlg\./;
115
116 $file2 = $file;
117 $file =~ s/cp?p?$/\o/;
118 $file2 =~ s/cp?p?$/\d/;
119 $project{"WXMSW_GUIOBJS"} .= $file . " ";
120 $project{"WXMSW_GUIDEPS"} .= $file2 . " "
121 }
122
123 foreach $file (sort keys %wxGTK) {
124 $file2 = $file;
125 $file =~ s/cp?p?$/\o/;
126 $file2 =~ s/cp?p?$/\d/;
127 $project{"WXGTK_GUIOBJS"} .= $file . " ";
128 $project{"WXGTK_GUIDEPS"} .= $file2 . " "
129 }
130
131 foreach $file (sort keys %wxMOTIF) {
132 $file2 = $file;
133 $file =~ s/cp?p?$/\o/;
134 $file2 =~ s/cp?p?$/\d/;
135 $project{"WXMOTIF_GUIOBJS"} .= $file . " ";
136 $project{"WXMOTIF_GUIDEPS"} .= $file2 . " "
137 }
138
139 foreach $file (sort keys %wxOS2PM) {
140 $file2 = $file;
141 $file =~ s/cp?p?$/\o/;
142 $file2 =~ s/cp?p?$/\d/;
143 $project{"WXOS2PM_GUIOBJS"} .= $file . " ";
144 $project{"WXOS2PM_GUIDEPS"} .= $file2 . " "
145 }
146
147 #! others
148
149 foreach $file (sort keys %wxHTML) {
150 $file2 = $file;
151 $file =~ s/cp?p?$/\o/;
152 $file2 =~ s/cp?p?$/\d/;
153 $project{"WXHTMLOBJS"} .= $file . " ";
154 $project{"WXHTMLDEPS"} .= $file2 . " "
155 }
156
157 foreach $file (sort keys %wxUNIX) {
158 ($fileobj = $file) =~ s/cp?p?$/\o/;
159 ($filedep = $file) =~ s/cp?p?$/\d/;
160
161 #! 'B' flag means that the file makes part of wxBase too
162 if ( $wxUNIX{$file} =~ /\bB\b/ ) {
163 $project{"BASE_OBJS"} .= $fileobj . " ";
164 $project{"BASE_DEPS"} .= $filedep . " "
165 }
166
167 $project{"WXUNIX_OBJS"} .= $fileobj . " ";
168 $project{"WXUNIX_DEPS"} .= $filedep . " "
169 }
170
171 #! headers
172
173 foreach $file (sort keys %wxWXINCLUDE) {
174 $project{"WX_HEADERS"} .= $file . " ";
175 $project{"BASE_HEADERS"} .= $file . " " if $wxWXINCLUDE{$file} =~ /\bB\b/;
176 }
177
178 foreach $file (sort keys %wxGENERICINCLUDE) {
179 $project{"WXGENERIC_HEADERS"} .= "generic/" . $file . " "
180 }
181
182 foreach $file (sort keys %wxMOTIFINCLUDE) {
183 $project{"WXMOTIF_HEADERS"} .= "motif/" . $file . " "
184 }
185
186 foreach $file (sort keys %wxGTKINCLUDE) {
187 $project{"WXGTK_HEADERS"} .= "gtk/" . $file . " "
188 }
189
190 foreach $file (sort keys %wxOS2PMINCLUDE) {
191 $project{"WXOS2PM_HEADERS"} .= "os2/" . $file . " "
192 }
193
194 foreach $file (sort keys %wxMSWINCLUDE) {
195 $project{"WXMSW_HEADERS"} .= "msw/" . $file . " "
196 }
197
198 foreach $file (sort keys %wxHTMLINCLUDE) {
199 $project{"WXHTML_HEADERS"} .= "html/" . $file . " "
200 }
201
202 foreach $file (sort keys %wxUNIXINCLUDE) {
203 $project{"WXUNIX_HEADERS"} .= "unix/" . $file . " "
204 }
205
206 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
207 $project{"WXPROTOCOL_HEADERS"} .= "protocol/" . $file . " "
208 }
209 #$}
210 #
211 # This file was automatically generated by tmake at #$ Now()
212 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
213
214 #
215 # File: makefile.unx
216 # Author: Julian Smart, Robert Roebling, Vadim Zeitlin
217 # Created: 1993
218 # Updated: 1999
219 # Copyright:(c) 1993, AIAI, University of Edinburgh,
220 # Copyright:(c) 1999, Vadim Zeitlin
221 # Copyright:(c) 1999, Robert Roebling
222 #
223 # Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a
224
225 ###################################################################
226
227 include ./src/make.env
228
229 ############## override make.env for PIC ##########################
230
231 # Clears all default suffixes
232 .SUFFIXES: .o .cpp .c .cxx
233
234 .c.o :
235 $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
236
237 .cpp.o :
238 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
239
240 .cxx.o :
241 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
242
243 ########################### Paths #################################
244
245 srcdir = @srcdir@
246
247 VP1 = @top_srcdir@/src/common
248 VP2 = @top_srcdir@/src/@TOOLKIT_DIR@
249 VP3 = @top_srcdir@/src/motif/xmcombo
250 VP4 = @top_srcdir@/src/generic
251 VP5 = @top_srcdir@/src/unix
252 VP6 = @top_srcdir@/src/html
253 VP7 = @top_srcdir@/src/png
254 VP8 = @top_srcdir@/src/jpeg
255 VP9 = @top_srcdir@/src/tiff
256 VP10 = @top_srcdir@/src/zlib
257 VP11 = @top_srcdir@/src/iodbc
258
259 # the comment at the end of the next line is needed because otherwise autoconf
260 # would remove this line completely - it contains a built-in hack to remove
261 # any VPATH assignment not containing ':'
262 VPATH = $(VP1)@PATH_IFS@$(VP2)@PATH_IFS@$(VP3)@PATH_IFS@$(VP4)@PATH_IFS@$(VP5)@PATH_IFS@$(VP6)@PATH_IFS@$(VP7)@PATH_IFS@$(VP8)@PATH_IFS@$(VP9)@PATH_IFS@$(VP10)@PATH_IFS@$(VP11) # ':' for autoconf
263
264 top_srcdir = @top_srcdir@
265 prefix = @prefix@
266 exec_prefix = @exec_prefix@
267
268 bindir = @bindir@
269 sbindir = @sbindir@
270 libexecdir = @libexecdir@
271 datadir = @datadir@
272 sysconfdir = @sysconfdir@
273 sharedstatedir = @sharedstatedir@
274 localstatedir = @localstatedir@
275 libdir = @libdir@
276 infodir = @infodir@
277 mandir = @mandir@
278 includedir = @includedir@
279 oldincludedir = /usr/include
280
281 DESTDIR =
282
283 pkgdatadir = $(datadir)/@PACKAGE@
284 pkglibdir = $(libdir)/@PACKAGE@
285 pkgincludedir = $(includedir)/@PACKAGE@
286
287 top_builddir = .
288
289 INSTALL = @INSTALL@
290 INSTALL_PROGRAM = @INSTALL_PROGRAM@
291 INSTALL_DATA = @INSTALL_DATA@
292 # my autoconf doesn't set this
293 #INSTALL_SCRIPT = @INSTALL_SCRIPT@
294 # maybe do an additional chmod if needed?
295 INSTALL_SCRIPT = @INSTALL@
296 transform = @program_transform_name@
297
298 NORMAL_INSTALL = :
299 PRE_INSTALL = :
300 POST_INSTALL = :
301 NORMAL_UNINSTALL = :
302 PRE_UNINSTALL = :
303 POST_UNINSTALL = :
304 build_alias = @build_alias@
305 build_triplet = @build@
306 host_alias = @host_alias@
307 host_triplet = @host@
308 target_alias = @target_alias@
309 target_triplet = @target@
310
311 USE_GUI=@USE_GUI@
312
313 ############################# Dirs #################################
314
315 WXDIR = $(top_srcdir)
316
317 # Subordinate library possibilities
318
319 SRCDIR = $(WXDIR)/src
320 GENDIR = $(WXDIR)/src/generic
321 COMMDIR = $(WXDIR)/src/common
322 HTMLDIR = $(WXDIR)/src/html
323 UNIXDIR = $(WXDIR)/src/unix
324 PNGDIR = $(WXDIR)/src/png
325 JPEGDIR = $(WXDIR)/src/jpeg
326 TIFFDIR = $(WXDIR)/src/tiff
327 ZLIBDIR = $(WXDIR)/src/zlib
328 GTKDIR = $(WXDIR)/src/gtk
329 MOTIFDIR = $(WXDIR)/src/motif
330 MSWDIR = $(WXDIR)/src/msw
331 PMDIR = $(WXDIR)/src/os2
332 ODBCDIR = $(WXDIR)/src/iodbc
333 INCDIR = $(WXDIR)/include
334 SAMPDIR = $(WXDIR)/samples
335 DEMODIR = $(WXDIR)/demos
336 UTILSDIR = $(WXDIR)/utils
337 MISCDIR = $(WXDIR)/misc
338
339 DOCDIR = $(WXDIR)/docs
340
341 ########################## Archive name ###############################
342
343 WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
344 WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
345 WXDEMOS = wx$(TOOLKIT)-demos-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
346 DISTDIR = ./_dist_dir/wx$(TOOLKIT)
347
348 ############################## Files ##################################
349
350 BASE_HEADERS = \
351 #$ ExpandList("BASE_HEADERS");
352
353 WX_HEADERS = \
354 #$ ExpandList("WX_HEADERS");
355
356 GTK_HEADERS = \
357 #$ ExpandList("WXGTK_HEADERS");
358
359 MOTIF_HEADERS = \
360 #$ ExpandList("WXMOTIF_HEADERS");
361
362 MSW_HEADERS = \
363 #$ ExpandList("WXMSW_HEADERS");
364
365 PM_HEADERS = \
366 #$ ExpandList("WXOS2PM_HEADERS");
367
368 UNIX_HEADERS = \
369 #$ ExpandList("WXUNIX_HEADERS");
370
371 GENERIC_HEADERS = \
372 #$ ExpandList("WXGENERIC_HEADERS");
373
374 PROTOCOL_HEADERS = \
375 #$ ExpandList("WXPROTOCOL_HEADERS");
376
377 HTML_HEADERS = \
378 #$ ExpandList("WXHTML_HEADERS");
379
380 GTK_GENERICOBJS = \
381 #$ ExpandList("WXGTK_GENERICOBJS");
382
383 GTK_GENERICDEPS = \
384 #$ ExpandList("WXGTK_GENERICDEPS");
385
386 GTK_COMMONOBJS = \
387 parser.o \
388 #$ ExpandList("WXGTK_COMMONOBJS");
389
390 GTK_COMMONDEPS = \
391 parser.d \
392 #$ ExpandList("WXGTK_COMMONDEPS");
393
394 GTK_GUIOBJS = \
395 #$ ExpandList("WXGTK_GUIOBJS");
396
397 GTK_GUIDEPS = \
398 #$ ExpandList("WXGTK_GUIDEPS");
399
400 MOTIF_GENERICOBJS = \
401 #$ ExpandList("WXMOTIF_GENERICOBJS");
402
403 MOTIF_GENERICDEPS = \
404 #$ ExpandList("WXMOTIF_GENERICDEPS");
405
406 MOTIF_COMMONOBJS = \
407 parser.o \
408 #$ ExpandList("WXMOTIF_COMMONOBJS");
409
410 MOTIF_COMMONDEPS = \
411 parser.d \
412 #$ ExpandList("WXMOTIF_COMMONDEPS");
413
414 MOTIF_GUIOBJS = \
415 xmcombo.o \
416 #$ ExpandList("WXMOTIF_GUIOBJS");
417
418 MOTIF_GUIDEPS = \
419 xmcombo.d \
420 #$ ExpandList("WXMOTIF_GUIDEPS");
421
422 MSW_GENERICOBJS = \
423 #$ ExpandList("WXMSW_GENERICOBJS");
424
425 MSW_GENERICDEPS = \
426 #$ ExpandList("WXMSW_GENERICDEPS");
427
428 MSW_COMMONOBJS = \
429 parser.o \
430 #$ ExpandList("WXMSW_COMMONOBJS");
431
432 MSW_COMMONDEPS = \
433 parser.d \
434 #$ ExpandList("WXMSW_COMMONDEPS");
435
436 MSW_GUIOBJS = \
437 #$ ExpandList("WXMSW_GUIOBJS");
438
439 MSW_GUIDEPS = \
440 #$ ExpandList("WXMSW_GUIDEPS");
441
442 PM_GENERICOBJS = \
443 #$ ExpandList("WXOS2PM_GENERICOBJS");
444
445 PM_GENERICDEPS = \
446 #$ ExpandList("WXOS2PM_GENERICDEPS");
447
448 PM_COMMONOBJS = \
449 parser.o \
450 #$ ExpandList("WXOS2PM_COMMONOBJS");
451
452 PM_COMMONDEPS = \
453 parser.d \
454 #$ ExpandList("WXOS2PM_COMMONDEPS");
455
456 PM_GUIOBJS = \
457 #$ ExpandList("WXOS2PM_GUIOBJS");
458
459 PM_GUIDEPS = \
460 #$ ExpandList("WXOS2PM_GUIDEPS");
461
462 BASE_OBJS = \
463 #$ ExpandList("BASE_OBJS");
464
465 BASE_DEPS = \
466 #$ ExpandList("BASE_DEPS");
467
468 HTMLOBJS = \
469 #$ ExpandList("WXHTMLOBJS");
470
471 HTMLDEPS = \
472 #$ ExpandList("WXHTMLDEPS");
473
474 UNIX_OBJS = \
475 #$ ExpandList("WXUNIX_OBJS");
476
477 UNIX_DEPS = \
478 #$ ExpandList("WXUNIX_DEPS");
479
480 ZLIBOBJS = \
481 adler32.o \
482 compress.o \
483 crc32.o \
484 gzio.o \
485 uncompr.o \
486 deflate.o \
487 trees.o \
488 zutil.o \
489 inflate.o \
490 infblock.o \
491 inftrees.o \
492 infcodes.o \
493 infutil.o \
494 inffast.o
495
496 PNGOBJS = \
497 png.o \
498 pngread.o \
499 pngrtran.o \
500 pngrutil.o \
501 pngpread.o \
502 pngtrans.o \
503 pngwrite.o \
504 pngwtran.o \
505 pngwutil.o \
506 pngerror.o \
507 pngmem.o \
508 pngwio.o \
509 pngrio.o \
510 pngget.o \
511 pngset.o
512
513
514 JPEGOBJS = \
515 jcomapi.o \
516 jutils.o \
517 jerror.o \
518 jmemmgr.o \
519 jmemnobs.o \
520 jcapimin.o \
521 jcapistd.o \
522 jctrans.o \
523 jcparam.o \
524 jdatadst.o \
525 jcinit.o \
526 jcmaster.o \
527 jcmarker.o \
528 jcmainct.o \
529 jcprepct.o \
530 jccoefct.o \
531 jccolor.o \
532 jcsample.o \
533 jchuff.o \
534 jcphuff.o \
535 jcdctmgr.o \
536 jfdctfst.o \
537 jfdctflt.o \
538 jfdctint.o \
539 jdapimin.o \
540 jdapistd.o \
541 jdtrans.o \
542 jdatasrc.o \
543 jdmaster.o \
544 jdinput.o \
545 jdmarker.o \
546 jdhuff.o \
547 jdphuff.o \
548 jdmainct.o \
549 jdcoefct.o \
550 jdpostct.o \
551 jddctmgr.o \
552 jidctfst.o \
553 jidctflt.o \
554 jidctint.o \
555 jidctred.o \
556 jdsample.o \
557 jdcolor.o \
558 jquant1.o \
559 jquant2.o \
560 jdmerge.o
561
562 TIFFOBJS = \
563 tif_aux.o \
564 tif_close.o \
565 tif_codec.o \
566 tif_compress.o \
567 tif_dir.o \
568 tif_dirinfo.o \
569 tif_dirread.o \
570 tif_dirwrite.o \
571 tif_dumpmode.o \
572 tif_error.o \
573 tif_fax3.o \
574 tif_fax3sm.o \
575 tif_getimage.o \
576 tif_jpeg.o \
577 tif_flush.o \
578 tif_lzw.o \
579 tif_luv.o \
580 tif_next.o \
581 tif_open.o \
582 tif_packbits.o \
583 tif_pixarlog.o \
584 tif_predict.o \
585 tif_print.o \
586 tif_read.o \
587 tif_swab.o \
588 tif_strip.o \
589 tif_thunder.o \
590 tif_tile.o \
591 tif_unix.o \
592 tif_version.o \
593 tif_warning.o \
594 tif_write.o \
595 tif_zip.o
596
597 IODBC_OBJS = \
598 catalog.o \
599 connect.o \
600 dlf.o \
601 dlproc.o \
602 execute.o \
603 fetch.o \
604 hdbc.o \
605 henv.o \
606 herr.o \
607 hstmt.o \
608 info.o \
609 itrace.o \
610 misc.o \
611 prepare.o \
612 result.o
613
614 GUIOBJS = @GUIOBJS@
615 GUIDEPS = @GUIDEPS@
616 GUIHEADERS = @GUIHEADERS@
617 COMMONOBJS = @COMMONOBJS@
618 COMMONDEPS = @COMMONDEPS@
619 GENERICOBJS = @GENERICOBJS@
620 GENERICDEPS = @GENERICDEPS@
621 UNIXOBJS = @UNIXOBJS@
622 UNIXDEPS = @UNIXDEPS@
623 IODBCOBJS = @IODBCOBJS@
624
625 OBJECTS = @ALL_OBJECTS@
626
627 DEPFILES = @ALL_DEPFILES@
628
629 HEADERS = @ALL_HEADERS@
630
631 BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@
632
633 all: @WX_ALL@
634
635 @WX_LIBRARY_NAME_STATIC@: $(OBJECTS)
636 @$(INSTALL) -d ./lib
637 $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS)
638 $(RANLIB) ./lib/$@
639
640 @WX_LIBRARY_NAME_SHARED@: $(OBJECTS)
641 @$(INSTALL) -d ./lib
642 $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME) $(OBJECTS) $(EXTRALIBS)
643
644 CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@
645 @$(RM) ./lib/@WX_LIBRARY_LINK1@
646 @$(RM) ./lib/@WX_LIBRARY_LINK2@
647 @$(RM) ./lib/@WX_LIBRARY_LINK3@
648 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
649 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
650 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
651
652 CREATE_INSTALLED_LINKS: $(libdir)/@WX_LIBRARY_NAME_SHARED@
653 $(RM) $(libdir)/@WX_LIBRARY_LINK1@
654 $(RM) $(libdir)/@WX_LIBRARY_LINK2@
655 $(RM) $(libdir)/@WX_LIBRARY_LINK3@
656 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK1@
657 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK2@
658 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK3@
659
660 $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h
661
662 parser.o: parser.c lexer.c
663 $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c
664
665 parser.c: $(COMMDIR)/parser.y lexer.c
666 $(YACC) $(COMMDIR)/parser.y
667 @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \
668 sed -e "s/BUFSIZ/5000/g" | \
669 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
670 sed -e "s/yy/PROIO_yy/g" | \
671 sed -e "s/input/PROIO_input/g" | \
672 sed -e "s/unput/PROIO_unput/g" > parser.c
673 @$(RM) y.tab.c
674
675 lexer.c: $(COMMDIR)/lexer.l
676 $(LEX) $(COMMDIR)/lexer.l
677 @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \
678 sed -e "s/yy/PROIO_yy/g" | \
679 sed -e "s/input/PROIO_input/g" | \
680 sed -e "s/unput/PROIO_unput/g" > lexer.c
681 @$(RM) @LEX_STEM@.c
682
683 -include $(DEPFILES)
684
685 afminstall:
686 $(INSTALL) -d $(datadir)
687 $(INSTALL) -d $(datadir)/wx
688 $(INSTALL) -d $(datadir)/wx/afm
689 $(INSTALL) -d $(datadir)/wx/gs_afm
690 $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm
691 $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm
692
693 preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx-config
694 @echo " "
695 @echo " Installing wxWindows..."
696 @echo " "
697
698 $(INSTALL) -d $(prefix)
699 $(INSTALL) -d $(bindir)
700 $(INSTALL) -d $(libdir)
701
702 $(INSTALL_SCRIPT) $(top_builddir)/wx-config $(bindir)/wx-config
703 $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@
704
705 $(INSTALL) -d $(libdir)/wx
706 $(INSTALL) -d $(libdir)/wx/include
707 $(INSTALL) -d $(libdir)/wx/include/wx
708 $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@
709 $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
710
711 $(INSTALL) -d $(includedir)/wx
712 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi
713 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi
714 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/protocol; fi
715 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/unix; fi
716 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi
717 @list='$(HEADERS)'; for p in $$list; do \
718 $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \
719 echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \
720 done
721
722 write_message:
723 @echo " "
724 @echo " The installation of wxWindows is finished. On certain"
725 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
726 @echo " if you installed a shared library."
727 @echo " "
728 @echo " wxWindows comes with no guarantees and doesn't claim"
729 @echo " to be suitable for any purpose."
730 @echo " "
731 @echo " Read the wxWindows Licence on licencing conditions."
732 @echo " "
733
734 install: preinstall @AFMINSTALL@ @WX_ALL_INSTALLED@ write_message
735
736 uninstall:
737 @echo " "
738 @echo " Uninstalling wxWindows..."
739 @echo " "
740 @echo " Removing library..."
741 @$(RM) $(libdir)/@WX_TARGET_LIBRARY@
742 @$(RM) $(libdir)/@WX_LIBRARY_LINK1@
743 @$(RM) $(libdir)/@WX_LIBRARY_LINK2@
744 @$(RM) $(libdir)/@WX_LIBRARY_LINK3@
745 @echo " Removing helper files..."
746 @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
747 @$(RM) $(bindir)/wx-config
748 @$(RM) $(datadir)/wx/afm/*
749 @$(RM) $(datadir)/wx/gs_afm/*
750 @rmdir $(datadir)/wx/gs_afm
751 @rmdir $(datadir)/wx/afm
752 @rmdir $(datadir)/wx
753 @echo " Removing headers..."
754 @list='$(HEADERS)'; for p in $$list; do \
755 $(RM) $(includedir)/wx/$$p; \
756 done
757 @echo " Removing directories..."
758 @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi
759 @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi
760 @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi
761 @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi
762 @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi
763 @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi
764 @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi
765 @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi
766 @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi
767 @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi
768 @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
769 @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
770
771 ALL_DIST:
772 mkdir _dist_dir
773 mkdir $(DISTDIR)
774 cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
775 cp $(WXDIR)/configure.in $(DISTDIR)
776 cp $(WXDIR)/configure $(DISTDIR)
777 cp $(WXDIR)/config.sub $(DISTDIR)
778 cp $(WXDIR)/config.guess $(DISTDIR)
779 cp $(WXDIR)/install-sh $(DISTDIR)
780 cp $(WXDIR)/mkinstalldirs $(DISTDIR)
781 cp $(WXDIR)/wx-config.in $(DISTDIR)
782 cp $(WXDIR)/setup.h.in $(DISTDIR)
783 cp $(WXDIR)/Makefile.in $(DISTDIR)
784 cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
785 cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
786 cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
787 cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
788 cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
789 cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
790 cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
791 mkdir $(DISTDIR)/include
792 mkdir $(DISTDIR)/include/wx
793 mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
794 mkdir $(DISTDIR)/include/wx/generic
795 mkdir $(DISTDIR)/include/wx/html
796 mkdir $(DISTDIR)/include/wx/unix
797 mkdir $(DISTDIR)/include/wx/protocol
798 cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
799 cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx
800 cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
801 cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
802 cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
803 cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
804 cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
805 cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
806 mkdir $(DISTDIR)/src
807 mkdir $(DISTDIR)/src/common
808 mkdir $(DISTDIR)/src/generic
809 mkdir $(DISTDIR)/src/html
810 mkdir $(DISTDIR)/src/html/bitmaps
811 mkdir $(DISTDIR)/src/$(TOOLKITDIR)
812 mkdir $(DISTDIR)/src/unix
813 mkdir $(DISTDIR)/src/png
814 mkdir $(DISTDIR)/src/jpeg
815 mkdir $(DISTDIR)/src/tiff
816 mkdir $(DISTDIR)/src/zlib
817 mkdir $(DISTDIR)/src/iodbc
818 cp $(SRCDIR)/*.in $(DISTDIR)/src
819 cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common
820 cp $(COMMDIR)/*.c $(DISTDIR)/src/common
821 cp $(COMMDIR)/*.inc $(DISTDIR)/src/common
822 cp $(COMMDIR)/*.l $(DISTDIR)/src/common
823 cp $(COMMDIR)/*.h $(DISTDIR)/src/common
824 cp $(COMMDIR)/*.y $(DISTDIR)/src/common
825 cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic
826 cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html
827 cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps
828 cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix
829 cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix
830 cp $(PNGDIR)/*.h $(DISTDIR)/src/png
831 cp $(PNGDIR)/*.c $(DISTDIR)/src/png
832 cp $(PNGDIR)/README $(DISTDIR)/src/png
833 cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
834 cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
835 cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
836 cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
837 cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
838 cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
839 cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff
840 cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff
841 cp $(TIFFDIR)/README $(DISTDIR)/src/tiff
842 cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc
843 cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc
844 cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc
845 cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc
846 cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc
847 cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc
848 cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc
849
850 GTK_DIST:
851 cp $(WXDIR)/wxGTK.spec $(DISTDIR)
852 cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
853 cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk
854 cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk
855 cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk
856 cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk
857
858 MOTIF_DIST:
859 cp $(WXDIR)/wxMOTIF.spec $(DISTDIR)
860 cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
861 cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif
862 cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif
863 mkdir $(DISTDIR)/src/motif/xmcombo
864 cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo
865 cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo
866 cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo
867
868 MSW_DIST:
869 cp $(WXDIR)/wxWINE.spec $(DISTDIR)
870 cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
871 cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
872 cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
873 cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
874 cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
875 cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw
876 cp $(MSWDIR)/*.c $(DISTDIR)/src/msw
877 cp $(MSWDIR)/*.def $(DISTDIR)/src/msw
878 mkdir $(DISTDIR)/src/msw/ole
879 cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole
880
881 DEMOS_DIST:
882 mkdir $(DISTDIR)/demos
883 cp $(DEMODIR)/Makefile.in $(DISTDIR)/demos
884
885 mkdir $(DISTDIR)/demos/bombs
886 cp $(DEMODIR)/bombs/Makefile.in $(DISTDIR)/demos/bombs
887 cp $(DEMODIR)/bombs/makefile.unx $(DISTDIR)/demos/bombs
888 cp $(DEMODIR)/bombs/*.cpp $(DISTDIR)/demos/bombs
889 cp $(DEMODIR)/bombs/*.h $(DISTDIR)/demos/bombs
890 cp $(DEMODIR)/bombs/*.xpm $(DISTDIR)/demos/bombs
891 cp $(DEMODIR)/bombs/readme.txt $(DISTDIR)/demos/bombs
892
893 mkdir $(DISTDIR)/demos/forty
894 cp $(DEMODIR)/forty/Makefile.in $(DISTDIR)/demos/forty
895 cp $(DEMODIR)/forty/makefile.unx $(DISTDIR)/demos/forty
896 cp $(DEMODIR)/forty/*.h $(DISTDIR)/demos/forty
897 cp $(DEMODIR)/forty/*.cpp $(DISTDIR)/demos/forty
898 cp $(DEMODIR)/forty/*.xpm $(DISTDIR)/demos/forty
899 cp $(DEMODIR)/forty/*.xbm $(DISTDIR)/demos/forty
900
901 mkdir $(DISTDIR)/demos/life
902 mkdir $(DISTDIR)/demos/life/bitmaps
903 cp $(DEMODIR)/life/Makefile.in $(DISTDIR)/demos/life
904 cp $(DEMODIR)/life/makefile.unx $(DISTDIR)/demos/life
905 cp $(DEMODIR)/life/*.cpp $(DISTDIR)/demos/life
906 cp $(DEMODIR)/life/*.h $(DISTDIR)/demos/life
907 cp $(DEMODIR)/life/*.xpm $(DISTDIR)/demos/life
908 cp $(DEMODIR)/life/bitmaps/*.xpm $(DISTDIR)/demos/life/bitmaps
909
910 mkdir $(DISTDIR)/demos/poem
911 cp $(DEMODIR)/poem/Makefile.in $(DISTDIR)/demos/poem
912 cp $(DEMODIR)/poem/makefile.unx $(DISTDIR)/demos/poem
913 cp $(DEMODIR)/poem/*.cpp $(DISTDIR)/demos/poem
914 cp $(DEMODIR)/poem/*.xpm $(DISTDIR)/demos/poem
915 cp $(DEMODIR)/poem/*.dat $(DISTDIR)/demos/poem
916 cp $(DEMODIR)/poem/*.txt $(DISTDIR)/demos/poem
917
918 mkdir $(DISTDIR)/demos/fractal
919 cp $(DEMODIR)/fractal/Makefile.in $(DISTDIR)/demos/fractal
920 cp $(DEMODIR)/fractal/makefile.unx $(DISTDIR)/demos/fractal
921 cp $(DEMODIR)/fractal/*.cpp $(DISTDIR)/demos/fractal
922
923 SAMPLES_DIST:
924 mkdir $(DISTDIR)/samples
925 cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples
926
927 mkdir $(DISTDIR)/samples/caret
928 cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret
929 cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret
930 cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret
931 cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret
932
933 mkdir $(DISTDIR)/samples/calendar
934 cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar
935 cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar
936 cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar
937
938 mkdir $(DISTDIR)/samples/config
939 cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config
940 cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config
941 cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config
942
943 mkdir $(DISTDIR)/samples/console
944 cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console
945 cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console
946 cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console
947
948 mkdir $(DISTDIR)/samples/controls
949 mkdir $(DISTDIR)/samples/controls/icons
950 cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls
951 cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls
952 cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls
953 cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls
954 cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons
955
956 mkdir $(DISTDIR)/samples/checklst
957 cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst
958 cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst
959 cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst
960 cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst
961
962 mkdir $(DISTDIR)/samples/db
963 cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db
964 cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db
965 cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db
966 cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db
967 cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db
968
969 mkdir $(DISTDIR)/samples/dialogs
970 cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs
971 cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs
972 cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs
973 cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs
974 cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs
975
976 mkdir $(DISTDIR)/samples/dnd
977 cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd
978 cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd
979 cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd
980 cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd
981 cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd
982 cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd
983 cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd
984
985 mkdir $(DISTDIR)/samples/docview
986 cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview
987 cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview
988 cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview
989 cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview
990 cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview
991
992 mkdir $(DISTDIR)/samples/docvwmdi
993 cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi
994 cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi
995 cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi
996 cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi
997
998 mkdir $(DISTDIR)/samples/drawing
999 cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing
1000 cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing
1001 cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing
1002 cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing
1003
1004 mkdir $(DISTDIR)/samples/dynamic
1005 cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic
1006 cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic
1007 cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic
1008 cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic
1009
1010 mkdir $(DISTDIR)/samples/exec
1011 cp $(SAMPDIR)/exec/Makefile.in $(DISTDIR)/samples/exec
1012 cp $(SAMPDIR)/exec/*.cpp $(DISTDIR)/samples/exec
1013
1014 mkdir $(DISTDIR)/samples/ipc
1015 cp $(SAMPDIR)/ipc/Makefile.in $(DISTDIR)/samples/ipc
1016 cp $(SAMPDIR)/ipc/*.xpm $(DISTDIR)/samples/ipc
1017 cp $(SAMPDIR)/ipc/*.h $(DISTDIR)/samples/ipc
1018 cp $(SAMPDIR)/ipc/*.cpp $(DISTDIR)/samples/ipc
1019
1020 mkdir $(DISTDIR)/samples/font
1021 cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font
1022 cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font
1023 cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font
1024
1025 mkdir $(DISTDIR)/samples/grid
1026 cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid
1027 cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid
1028 cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid
1029
1030 mkdir $(DISTDIR)/samples/help
1031 mkdir $(DISTDIR)/samples/help/doc
1032 cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help
1033 cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help
1034 cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help
1035 cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help
1036 cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc
1037
1038 mkdir $(DISTDIR)/samples/html
1039 cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html
1040 mkdir $(DISTDIR)/samples/html/about
1041 cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about
1042 cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about
1043 mkdir $(DISTDIR)/samples/html/about/data
1044 cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data
1045 cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data
1046 mkdir $(DISTDIR)/samples/html/help
1047 cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help
1048 cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help
1049 mkdir $(DISTDIR)/samples/html/help/helpfiles
1050 cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles
1051 mkdir $(DISTDIR)/samples/html/helpview
1052 cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview
1053 cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview
1054 cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview
1055 mkdir $(DISTDIR)/samples/html/printing
1056 cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing
1057 cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing
1058 cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing
1059 mkdir $(DISTDIR)/samples/html/test
1060 cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test
1061 cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test
1062 cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test
1063 cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test
1064 cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test
1065 cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test
1066 mkdir $(DISTDIR)/samples/html/virtual
1067 cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual
1068 cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual
1069 cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual
1070 mkdir $(DISTDIR)/samples/html/widget
1071 cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget
1072 cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget
1073 cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget
1074 mkdir $(DISTDIR)/samples/html/zip
1075 cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip
1076 cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip
1077 cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip
1078 cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip
1079
1080 mkdir $(DISTDIR)/samples/image
1081 cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image
1082 cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image
1083 cp $(SAMPDIR)/image/*.cpp $(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 cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat
1092 cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat
1093 cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat
1094 cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat
1095 cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat
1096 cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat
1097 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
1098 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
1099 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
1100 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
1101
1102 mkdir $(DISTDIR)/samples/layout
1103 cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout
1104 cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout
1105 cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout
1106 cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout
1107
1108 mkdir $(DISTDIR)/samples/listctrl
1109 mkdir $(DISTDIR)/samples/listctrl/bitmaps
1110 cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl
1111 cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl
1112 cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl
1113 cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl
1114 cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl
1115 cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps
1116
1117 mkdir $(DISTDIR)/samples/mdi
1118 mkdir $(DISTDIR)/samples/mdi/bitmaps
1119 cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi
1120 cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi
1121 cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi
1122 cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi
1123 cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi
1124 cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps
1125
1126 mkdir $(DISTDIR)/samples/memcheck
1127 cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck
1128 cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck
1129 cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck
1130 cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck
1131
1132 mkdir $(DISTDIR)/samples/menu
1133 cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu
1134 cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu
1135 cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu
1136
1137 mkdir $(DISTDIR)/samples/minifram
1138 mkdir $(DISTDIR)/samples/minifram/bitmaps
1139 cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram
1140 cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram
1141 cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram
1142 cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram
1143 cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram
1144 cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps
1145
1146 mkdir $(DISTDIR)/samples/minimal
1147 cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal
1148 cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal
1149 cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal
1150 cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal
1151
1152 mkdir $(DISTDIR)/samples/dialup
1153 cp $(SAMPDIR)/dialup/Makefile.in $(DISTDIR)/samples/dialup
1154 cp $(SAMPDIR)/dialup/makefile.unx $(DISTDIR)/samples/dialup
1155 cp $(SAMPDIR)/dialup/*.cpp $(DISTDIR)/samples/dialup
1156
1157 mkdir $(DISTDIR)/samples/newgrid
1158 cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid
1159 cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid
1160 cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid
1161 cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid
1162
1163 mkdir $(DISTDIR)/samples/notebook
1164 cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook
1165 cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook
1166 cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook
1167 cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook
1168
1169 mkdir $(DISTDIR)/samples/png
1170 cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png
1171 cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png
1172 cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
1173 cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
1174 cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
1175
1176 mkdir $(DISTDIR)/samples/printing
1177 cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing
1178 cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing
1179 cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing
1180 cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing
1181 cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing
1182 cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing
1183
1184 mkdir $(DISTDIR)/samples/resource
1185 cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
1186 cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource
1187 cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
1188 cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
1189 cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
1190
1191 mkdir $(DISTDIR)/samples/richedit
1192 cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
1193 cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
1194 cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
1195 cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
1196 cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
1197 cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
1198
1199 mkdir $(DISTDIR)/samples/proplist
1200 cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
1201 cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
1202 cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist
1203
1204 mkdir $(DISTDIR)/samples/propsize
1205 cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize
1206 cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize
1207 cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize
1208
1209 mkdir $(DISTDIR)/samples/sashtest
1210 cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest
1211 cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest
1212 cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest
1213
1214 mkdir $(DISTDIR)/samples/scroll
1215 cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll
1216 cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll
1217 cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll
1218
1219 mkdir $(DISTDIR)/samples/scrollsub
1220 cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub
1221 cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub
1222 cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub
1223
1224 mkdir $(DISTDIR)/samples/splitter
1225 cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter
1226 cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter
1227 cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter
1228
1229 mkdir $(DISTDIR)/samples/text
1230 cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text
1231 cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text
1232 cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text
1233 cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text
1234
1235 mkdir $(DISTDIR)/samples/thread
1236 cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread
1237 cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread
1238 cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread
1239
1240 mkdir $(DISTDIR)/samples/toolbar
1241 cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar
1242 cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar
1243 cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar
1244 mkdir $(DISTDIR)/samples/toolbar/bitmaps
1245 cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps
1246
1247 mkdir $(DISTDIR)/samples/treectrl
1248 cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl
1249 cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl
1250 cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl
1251 cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl
1252
1253 mkdir $(DISTDIR)/samples/typetest
1254 cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest
1255 cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest
1256 cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest
1257 cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest
1258
1259 mkdir $(DISTDIR)/samples/validate
1260 cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate
1261 cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate
1262 cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate
1263 cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate
1264
1265 mkdir $(DISTDIR)/samples/wizard
1266 cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard
1267 cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard
1268 cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard
1269
1270 mkdir $(DISTDIR)/samples/sockets
1271 cp $(SAMPDIR)/sockets/Makefile.in $(DISTDIR)/samples/sockets
1272 cp $(SAMPDIR)/sockets/*.cpp $(DISTDIR)/samples/sockets
1273 cp $(SAMPDIR)/sockets/*.xpm $(DISTDIR)/samples/sockets
1274
1275 UTILS_DIST:
1276 mkdir $(DISTDIR)/utils
1277 cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils
1278
1279 mkdir $(DISTDIR)/utils/wxMMedia2
1280 mkdir $(DISTDIR)/utils/wxMMedia2/lib
1281 mkdir $(DISTDIR)/utils/wxMMedia2/sample
1282 cp $(UTILSDIR)/wxMMedia2/Makefile.in $(DISTDIR)/utils/wxMMedia2
1283 cp $(UTILSDIR)/wxMMedia2/lib/Makefile.in $(DISTDIR)/utils/wxMMedia2/lib
1284 cp $(UTILSDIR)/wxMMedia2/lib/*.h $(DISTDIR)/utils/wxMMedia2/lib
1285 cp $(UTILSDIR)/wxMMedia2/lib/*.cpp $(DISTDIR)/utils/wxMMedia2/lib
1286 cp $(UTILSDIR)/wxMMedia2/lib/*.def $(DISTDIR)/utils/wxMMedia2/lib
1287 cp $(UTILSDIR)/wxMMedia2/sample/Makefile.in $(DISTDIR)/utils/wxMMedia2/sample
1288 cp $(UTILSDIR)/wxMMedia2/sample/*.cpp $(DISTDIR)/utils/wxMMedia2/sample
1289
1290 mkdir $(DISTDIR)/utils/glcanvas
1291 mkdir $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1292 cp $(UTILSDIR)/glcanvas/Makefile.in $(DISTDIR)/utils/glcanvas
1293 cp $(UTILSDIR)/glcanvas/docs/notes.txt $(DISTDIR)/utils/glcanvas/NOTES.txt
1294 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/Makefile.in $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1295 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.h $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1296 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.cpp $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1297
1298 mkdir $(DISTDIR)/utils/ogl
1299 mkdir $(DISTDIR)/utils/ogl/src
1300 cp $(UTILSDIR)/ogl/Makefile.in $(DISTDIR)/utils/ogl
1301 cp $(UTILSDIR)/ogl/src/Makefile.in $(DISTDIR)/utils/ogl/src
1302 cp $(UTILSDIR)/ogl/src/*.h $(DISTDIR)/utils/ogl/src
1303 cp $(UTILSDIR)/ogl/src/*.cpp $(DISTDIR)/utils/ogl/src
1304
1305 MISC_DIST:
1306 mkdir $(DISTDIR)/misc
1307 mkdir $(DISTDIR)/misc/afm
1308 cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm
1309 mkdir $(DISTDIR)/misc/gs_afm
1310 cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm
1311
1312 dist: ALL_DIST @GUIDIST@ SAMPLES_DIST DEMOS_DIST UTILS_DIST MISC_DIST
1313 cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
1314 mv _dist_dir/wx$(TOOLKIT)/samples _dist_dir/wx$(TOOLKIT)/wxSamples
1315 cd _dist_dir/wx$(TOOLKIT); tar ch wxSamples | gzip -f9 > $(WXSAMPLES); mv $(WXSAMPLES) ../..
1316 mv _dist_dir/wx$(TOOLKIT)/demos _dist_dir/wx$(TOOLKIT)/wxDemos
1317 cd _dist_dir/wx$(TOOLKIT); tar ch wxDemos | gzip -f9 > $(WXDEMOS); mv $(WXDEMOS) ../..
1318 $(RM) -r _dist_dir
1319
1320 clean:
1321 $(RM) *.o
1322 $(RM) *.d
1323 $(RM) parser.c
1324 $(RM) lexer.c
1325 $(RM) ./lib/*
1326
1327 cleanall: clean