]> git.saurik.com Git - wxWidgets.git/blob - distrib/msw/tmake/unx.t
SN: Fixes to OS/2 specific problems (use LEX_STEM and PATH_IFS set by configure).
[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 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)
260
261 top_srcdir = @top_srcdir@
262 prefix = @prefix@
263 exec_prefix = @exec_prefix@
264
265 bindir = @bindir@
266 sbindir = @sbindir@
267 libexecdir = @libexecdir@
268 datadir = @datadir@
269 sysconfdir = @sysconfdir@
270 sharedstatedir = @sharedstatedir@
271 localstatedir = @localstatedir@
272 libdir = @libdir@
273 infodir = @infodir@
274 mandir = @mandir@
275 includedir = @includedir@
276 oldincludedir = /usr/include
277
278 DESTDIR =
279
280 pkgdatadir = $(datadir)/@PACKAGE@
281 pkglibdir = $(libdir)/@PACKAGE@
282 pkgincludedir = $(includedir)/@PACKAGE@
283
284 top_builddir = .
285
286 INSTALL = @INSTALL@
287 INSTALL_PROGRAM = @INSTALL_PROGRAM@
288 INSTALL_DATA = @INSTALL_DATA@
289 # my autoconf doesn't set this
290 #INSTALL_SCRIPT = @INSTALL_SCRIPT@
291 # maybe do an additional chmod if needed?
292 INSTALL_SCRIPT = @INSTALL@
293 transform = @program_transform_name@
294
295 NORMAL_INSTALL = :
296 PRE_INSTALL = :
297 POST_INSTALL = :
298 NORMAL_UNINSTALL = :
299 PRE_UNINSTALL = :
300 POST_UNINSTALL = :
301 build_alias = @build_alias@
302 build_triplet = @build@
303 host_alias = @host_alias@
304 host_triplet = @host@
305 target_alias = @target_alias@
306 target_triplet = @target@
307
308 ############################# Dirs #################################
309
310 WXDIR = $(top_srcdir)
311
312 # Subordinate library possibilities
313
314 SRCDIR = $(WXDIR)/src
315 GENDIR = $(WXDIR)/src/generic
316 COMMDIR = $(WXDIR)/src/common
317 HTMLDIR = $(WXDIR)/src/html
318 UNIXDIR = $(WXDIR)/src/unix
319 PNGDIR = $(WXDIR)/src/png
320 JPEGDIR = $(WXDIR)/src/jpeg
321 TIFFDIR = $(WXDIR)/src/tiff
322 ZLIBDIR = $(WXDIR)/src/zlib
323 GTKDIR = $(WXDIR)/src/gtk
324 MOTIFDIR = $(WXDIR)/src/motif
325 MSWDIR = $(WXDIR)/src/msw
326 PMDIR = $(WXDIR)/src/os2
327 ODBCDIR = $(WXDIR)/src/iodbc
328 INCDIR = $(WXDIR)/include
329 SAMPDIR = $(WXDIR)/samples
330 UTILSDIR = $(WXDIR)/utils
331 MISCDIR = $(WXDIR)/misc
332
333 DOCDIR = $(WXDIR)/docs
334
335 ########################## Archive name ###############################
336
337 WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
338 WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
339 DISTDIR = ./_dist_dir/wx$(TOOLKIT)
340
341 ############################## Files ##################################
342
343 BASE_HEADERS = \
344 #$ ExpandList("BASE_HEADERS");
345
346 WX_HEADERS = \
347 #$ ExpandList("WX_HEADERS");
348
349 GTK_HEADERS = \
350 #$ ExpandList("WXGTK_HEADERS");
351
352 MOTIF_HEADERS = \
353 #$ ExpandList("WXMOTIF_HEADERS");
354
355 MSW_HEADERS = \
356 #$ ExpandList("WXMSW_HEADERS");
357
358 PM_HEADERS = \
359 #$ ExpandList("WXOS2PM_HEADERS");
360
361 UNIX_HEADERS = \
362 #$ ExpandList("WXUNIX_HEADERS");
363
364 GENERIC_HEADERS = \
365 #$ ExpandList("WXGENERIC_HEADERS");
366
367 PROTOCOL_HEADERS = \
368 #$ ExpandList("WXPROTOCOL_HEADERS");
369
370 HTML_HEADERS = \
371 #$ ExpandList("WXHTML_HEADERS");
372
373 GTK_GENERICOBJS = \
374 #$ ExpandList("WXGTK_GENERICOBJS");
375
376 GTK_GENERICDEPS = \
377 #$ ExpandList("WXGTK_GENERICDEPS");
378
379 GTK_COMMONOBJS = \
380 parser.o \
381 #$ ExpandList("WXGTK_COMMONOBJS");
382
383 GTK_COMMONDEPS = \
384 parser.d \
385 #$ ExpandList("WXGTK_COMMONDEPS");
386
387 GTK_GUIOBJS = \
388 #$ ExpandList("WXGTK_GUIOBJS");
389
390 GTK_GUIDEPS = \
391 #$ ExpandList("WXGTK_GUIDEPS");
392
393 MOTIF_GENERICOBJS = \
394 #$ ExpandList("WXMOTIF_GENERICOBJS");
395
396 MOTIF_GENERICDEPS = \
397 #$ ExpandList("WXMOTIF_GENERICDEPS");
398
399 MOTIF_COMMONOBJS = \
400 parser.o \
401 #$ ExpandList("WXMOTIF_COMMONOBJS");
402
403 MOTIF_COMMONDEPS = \
404 parser.d \
405 #$ ExpandList("WXMOTIF_COMMONDEPS");
406
407 MOTIF_GUIOBJS = \
408 xmcombo.o \
409 #$ ExpandList("WXMOTIF_GUIOBJS");
410
411 MOTIF_GUIDEPS = \
412 xmcombo.d \
413 #$ ExpandList("WXMOTIF_GUIDEPS");
414
415 MSW_GENERICOBJS = \
416 #$ ExpandList("WXMSW_GENERICOBJS");
417
418 MSW_GENERICDEPS = \
419 #$ ExpandList("WXMSW_GENERICDEPS");
420
421 MSW_COMMONOBJS = \
422 parser.o \
423 #$ ExpandList("WXMSW_COMMONOBJS");
424
425 MSW_COMMONDEPS = \
426 parser.d \
427 #$ ExpandList("WXMSW_COMMONDEPS");
428
429 MSW_GUIOBJS = \
430 #$ ExpandList("WXMSW_GUIOBJS");
431
432 MSW_GUIDEPS = \
433 #$ ExpandList("WXMSW_GUIDEPS");
434
435 PM_GENERICOBJS = \
436 #$ ExpandList("WXOS2PM_GENERICOBJS");
437
438 PM_GENERICDEPS = \
439 #$ ExpandList("WXOS2PM_GENERICDEPS");
440
441 PM_COMMONOBJS = \
442 parser.o \
443 #$ ExpandList("WXOS2PM_COMMONOBJS");
444
445 PM_COMMONDEPS = \
446 parser.d \
447 #$ ExpandList("WXOS2PM_COMMONDEPS");
448
449 PM_GUIOBJS = \
450 #$ ExpandList("WXOS2PM_GUIOBJS");
451
452 PM_GUIDEPS = \
453 #$ ExpandList("WXOS2PM_GUIDEPS");
454
455 BASE_OBJS = \
456 #$ ExpandList("BASE_OBJS");
457
458 BASE_DEPS = \
459 #$ ExpandList("BASE_DEPS");
460
461 HTMLOBJS = \
462 #$ ExpandList("WXHTMLOBJS");
463
464 HTMLDEPS = \
465 #$ ExpandList("WXHTMLDEPS");
466
467 UNIX_OBJS = \
468 #$ ExpandList("WXUNIX_OBJS");
469
470 UNIX_DEPS = \
471 #$ ExpandList("WXUNIX_DEPS");
472
473 ZLIBOBJS = \
474 adler32.o \
475 compress.o \
476 crc32.o \
477 gzio.o \
478 uncompr.o \
479 deflate.o \
480 trees.o \
481 zutil.o \
482 inflate.o \
483 infblock.o \
484 inftrees.o \
485 infcodes.o \
486 infutil.o \
487 inffast.o
488
489 PNGOBJS = \
490 png.o \
491 pngread.o \
492 pngrtran.o \
493 pngrutil.o \
494 pngpread.o \
495 pngtrans.o \
496 pngwrite.o \
497 pngwtran.o \
498 pngwutil.o \
499 pngerror.o \
500 pngmem.o \
501 pngwio.o \
502 pngrio.o \
503 pngget.o \
504 pngset.o
505
506
507 JPEGOBJS = \
508 jcomapi.o \
509 jutils.o \
510 jerror.o \
511 jmemmgr.o \
512 jmemnobs.o \
513 jcapimin.o \
514 jcapistd.o \
515 jctrans.o \
516 jcparam.o \
517 jdatadst.o \
518 jcinit.o \
519 jcmaster.o \
520 jcmarker.o \
521 jcmainct.o \
522 jcprepct.o \
523 jccoefct.o \
524 jccolor.o \
525 jcsample.o \
526 jchuff.o \
527 jcphuff.o \
528 jcdctmgr.o \
529 jfdctfst.o \
530 jfdctflt.o \
531 jfdctint.o \
532 jdapimin.o \
533 jdapistd.o \
534 jdtrans.o \
535 jdatasrc.o \
536 jdmaster.o \
537 jdinput.o \
538 jdmarker.o \
539 jdhuff.o \
540 jdphuff.o \
541 jdmainct.o \
542 jdcoefct.o \
543 jdpostct.o \
544 jddctmgr.o \
545 jidctfst.o \
546 jidctflt.o \
547 jidctint.o \
548 jidctred.o \
549 jdsample.o \
550 jdcolor.o \
551 jquant1.o \
552 jquant2.o \
553 jdmerge.o
554
555 TIFFOBJS = \
556 tif_aux.o \
557 tif_close.o \
558 tif_codec.o \
559 tif_compress.o \
560 tif_dir.o \
561 tif_dirinfo.o \
562 tif_dirread.o \
563 tif_dirwrite.o \
564 tif_dumpmode.o \
565 tif_error.o \
566 tif_fax3.o \
567 tif_fax3sm.o \
568 tif_getimage.o \
569 tif_jpeg.o \
570 tif_flush.o \
571 tif_lzw.o \
572 tif_luv.o \
573 tif_next.o \
574 tif_open.o \
575 tif_packbits.o \
576 tif_pixarlog.o \
577 tif_predict.o \
578 tif_print.o \
579 tif_read.o \
580 tif_swab.o \
581 tif_strip.o \
582 tif_thunder.o \
583 tif_tile.o \
584 tif_unix.o \
585 tif_version.o \
586 tif_warning.o \
587 tif_write.o \
588 tif_zip.o
589
590 IODBC_OBJS = \
591 catalog.o \
592 connect.o \
593 dlf.o \
594 dlproc.o \
595 execute.o \
596 fetch.o \
597 hdbc.o \
598 henv.o \
599 herr.o \
600 hstmt.o \
601 info.o \
602 itrace.o \
603 misc.o \
604 prepare.o \
605 result.o
606
607 GUIOBJS = @GUIOBJS@
608 GUIDEPS = @GUIDEPS@
609 GUIHEADERS = @GUIHEADERS@
610 COMMONOBJS = @COMMONOBJS@
611 COMMONDEPS = @COMMONDEPS@
612 GENERICOBJS = @GENERICOBJS@
613 GENERICDEPS = @GENERICDEPS@
614 UNIXOBJS = @UNIXOBJS@
615 UNIXDEPS = @UNIXDEPS@
616 IODBCOBJS = @IODBCOBJS@
617
618 OBJECTS = @ALL_OBJECTS@
619
620 DEPFILES = @ALL_DEPFILES@
621
622 HEADERS = @ALL_HEADERS@
623
624 BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@
625
626 all: @WX_ALL@
627
628 @WX_LIBRARY_NAME_STATIC@: $(OBJECTS)
629 @$(INSTALL) -d ./lib
630 $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS)
631 $(RANLIB) ./lib/$@
632
633 @WX_LIBRARY_NAME_SHARED@: $(OBJECTS)
634 @$(INSTALL) -d ./lib
635 $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME) $(OBJECTS) $(EXTRALIBS)
636
637 CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@
638 @$(RM) ./lib/@WX_LIBRARY_LINK1@
639 @$(RM) ./lib/@WX_LIBRARY_LINK2@
640 @$(RM) ./lib/@WX_LIBRARY_LINK3@
641 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
642 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
643 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
644
645 CREATE_INSTALLED_LINKS: $(libdir)/@WX_LIBRARY_NAME_SHARED@
646 $(RM) $(libdir)/@WX_LIBRARY_LINK1@
647 $(RM) $(libdir)/@WX_LIBRARY_LINK2@
648 $(RM) $(libdir)/@WX_LIBRARY_LINK3@
649 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK1@
650 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK2@
651 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK3@
652
653 $(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h
654
655 parser.o: parser.c lexer.c
656 $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c
657
658 parser.c: $(COMMDIR)/parser.y lexer.c
659 $(YACC) $(COMMDIR)/parser.y
660 @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \
661 sed -e "s/BUFSIZ/5000/g" | \
662 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
663 sed -e "s/yy/PROIO_yy/g" | \
664 sed -e "s/input/PROIO_input/g" | \
665 sed -e "s/unput/PROIO_unput/g" > parser.c
666 @$(RM) y.tab.c
667
668 lexer.c: $(COMMDIR)/lexer.l
669 $(LEX) $(COMMDIR)/lexer.l
670 @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \
671 sed -e "s/yy/PROIO_yy/g" | \
672 sed -e "s/input/PROIO_input/g" | \
673 sed -e "s/unput/PROIO_unput/g" > lexer.c
674 @$(RM) @LEX_STEM@.c
675
676 -include $(DEPFILES)
677
678 preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx-config
679 @echo " "
680 @echo " Installing wxWindows..."
681 @echo " "
682
683 $(INSTALL) -d $(prefix)
684 $(INSTALL) -d $(bindir)
685 $(INSTALL) -d $(libdir)
686 $(INSTALL) -d $(datadir)
687
688 $(INSTALL_SCRIPT) $(top_builddir)/wx-config $(bindir)/wx-config
689 $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@
690
691 $(INSTALL) -d $(libdir)/wx
692 $(INSTALL) -d $(libdir)/wx/include
693 $(INSTALL) -d $(libdir)/wx/include/wx
694 $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@
695 $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
696
697 $(INSTALL) -d $(datadir)/wx
698 $(INSTALL) -d $(datadir)/wx/afm
699 $(INSTALL) -d $(datadir)/wx/gs_afm
700 $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm
701 $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm
702
703 $(INSTALL) -d $(includedir)/wx
704 $(INSTALL) -d $(includedir)/wx/msw
705 $(INSTALL) -d $(includedir)/wx/gtk
706 $(INSTALL) -d $(includedir)/wx/motif
707 $(INSTALL) -d $(includedir)/wx/html
708 $(INSTALL) -d $(includedir)/wx/protocol
709 $(INSTALL) -d $(includedir)/wx/unix
710 $(INSTALL) -d $(includedir)/wx/generic
711 @list='$(HEADERS)'; for p in $$list; do \
712 $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \
713 echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \
714 done
715
716 write_message:
717 @echo " "
718 @echo " The installation of wxWindows is finished. On certain"
719 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
720 @echo " if you installed a shared library."
721 @echo " "
722 @echo " wxWindows comes with no guarantees and doesn't claim"
723 @echo " to be suitable for any purpose."
724 @echo " "
725 @echo " Read the wxWindows Licence on licencing conditions."
726 @echo " "
727
728 install: preinstall @WX_ALL_INSTALLED@ write_message
729
730 uninstall:
731 @echo " "
732 @echo " Uninstalling wxWindows..."
733 @echo " "
734 @echo " Removing library..."
735 @$(RM) $(libdir)/@WX_TARGET_LIBRARY@
736 @$(RM) $(libdir)/@WX_LIBRARY_LINK1@
737 @$(RM) $(libdir)/@WX_LIBRARY_LINK2@
738 @$(RM) $(libdir)/@WX_LIBRARY_LINK3@
739 @echo " Removing helper files..."
740 @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
741 @$(RM) $(bindir)/wx-config
742 @$(RM) $(datadir)/wx/afm/*
743 @$(RM) $(datadir)/wx/gs_afm/*
744 @rmdir $(datadir)/wx/gs_afm
745 @rmdir $(datadir)/wx/afm
746 @rmdir $(datadir)/wx
747 @echo " Removing headers..."
748 @list='$(HEADERS)'; for p in $$list; do \
749 $(RM) $(includedir)/wx/$$p; \
750 done
751 @echo " Removing directories..."
752 @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi
753 @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi
754 @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi
755 @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi
756 @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi
757 @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi
758 @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi
759 @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi
760 @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi
761 @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi
762 @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
763 @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
764
765 ALL_DIST:
766 mkdir _dist_dir
767 mkdir $(DISTDIR)
768 cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
769 cp $(WXDIR)/configure.in $(DISTDIR)
770 cp $(WXDIR)/configure $(DISTDIR)
771 cp $(WXDIR)/config.sub $(DISTDIR)
772 cp $(WXDIR)/config.guess $(DISTDIR)
773 cp $(WXDIR)/install-sh $(DISTDIR)
774 cp $(WXDIR)/mkinstalldirs $(DISTDIR)
775 cp $(WXDIR)/wx-config.in $(DISTDIR)
776 cp $(WXDIR)/setup.h.in $(DISTDIR)
777 cp $(WXDIR)/Makefile.in $(DISTDIR)
778 cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
779 cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
780 cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
781 cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
782 cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
783 cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
784 cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
785 mkdir $(DISTDIR)/include
786 mkdir $(DISTDIR)/include/wx
787 mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
788 mkdir $(DISTDIR)/include/wx/generic
789 mkdir $(DISTDIR)/include/wx/html
790 mkdir $(DISTDIR)/include/wx/unix
791 mkdir $(DISTDIR)/include/wx/protocol
792 cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
793 cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx
794 cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
795 cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
796 cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
797 cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
798 cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
799 cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
800 mkdir $(DISTDIR)/src
801 mkdir $(DISTDIR)/src/common
802 mkdir $(DISTDIR)/src/generic
803 mkdir $(DISTDIR)/src/html
804 mkdir $(DISTDIR)/src/html/bitmaps
805 mkdir $(DISTDIR)/src/$(TOOLKITDIR)
806 mkdir $(DISTDIR)/src/unix
807 mkdir $(DISTDIR)/src/png
808 mkdir $(DISTDIR)/src/jpeg
809 mkdir $(DISTDIR)/src/tiff
810 mkdir $(DISTDIR)/src/zlib
811 mkdir $(DISTDIR)/src/iodbc
812 cp $(SRCDIR)/*.in $(DISTDIR)/src
813 cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common
814 cp $(COMMDIR)/*.c $(DISTDIR)/src/common
815 cp $(COMMDIR)/*.inc $(DISTDIR)/src/common
816 cp $(COMMDIR)/*.l $(DISTDIR)/src/common
817 cp $(COMMDIR)/*.h $(DISTDIR)/src/common
818 cp $(COMMDIR)/*.y $(DISTDIR)/src/common
819 cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic
820 cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html
821 cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps
822 cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix
823 cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix
824 cp $(PNGDIR)/*.h $(DISTDIR)/src/png
825 cp $(PNGDIR)/*.c $(DISTDIR)/src/png
826 cp $(PNGDIR)/README $(DISTDIR)/src/png
827 cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
828 cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
829 cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
830 cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
831 cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
832 cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
833 cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff
834 cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff
835 cp $(TIFFDIR)/README $(DISTDIR)/src/tiff
836 cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc
837 cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc
838 cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc
839 cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc
840 cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc
841 cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc
842 cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc
843
844 GTK_DIST:
845 cp $(WXDIR)/wxGTK.spec $(DISTDIR)
846 cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
847 cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk
848 cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk
849 cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk
850 cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk
851
852 MOTIF_DIST:
853 cp $(WXDIR)/wxMOTIF.spec $(DISTDIR)
854 cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
855 cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif
856 cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif
857 mkdir $(DISTDIR)/src/motif/xmcombo
858 cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo
859 cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo
860 cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo
861
862 MSW_DIST:
863 cp $(WXDIR)/wxWINE.spec $(DISTDIR)
864 cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
865 cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
866 cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
867 cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
868 cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
869 cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw
870 cp $(MSWDIR)/*.c $(DISTDIR)/src/msw
871 cp $(MSWDIR)/*.def $(DISTDIR)/src/msw
872 mkdir $(DISTDIR)/src/msw/ole
873 cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole
874
875 SAMPLES_DIST:
876 mkdir $(DISTDIR)/samples
877 cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples
878
879 mkdir $(DISTDIR)/samples/bombs
880 cp $(SAMPDIR)/bombs/Makefile.in $(DISTDIR)/samples/bombs
881 cp $(SAMPDIR)/bombs/makefile.unx $(DISTDIR)/samples/bombs
882 cp $(SAMPDIR)/bombs/*.cpp $(DISTDIR)/samples/bombs
883 cp $(SAMPDIR)/bombs/*.h $(DISTDIR)/samples/bombs
884 cp $(SAMPDIR)/bombs/*.xpm $(DISTDIR)/samples/bombs
885 cp $(SAMPDIR)/bombs/readme.txt $(DISTDIR)/samples/bombs
886
887 mkdir $(DISTDIR)/samples/caret
888 cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret
889 cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret
890 cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret
891 cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret
892
893 mkdir $(DISTDIR)/samples/calendar
894 cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar
895 cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar
896 cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar
897
898 mkdir $(DISTDIR)/samples/config
899 cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config
900 cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config
901 cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config
902
903 mkdir $(DISTDIR)/samples/console
904 cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console
905 cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console
906 cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console
907
908 mkdir $(DISTDIR)/samples/controls
909 mkdir $(DISTDIR)/samples/controls/icons
910 cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls
911 cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls
912 cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls
913 cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls
914 cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons
915
916 mkdir $(DISTDIR)/samples/checklst
917 cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst
918 cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst
919 cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst
920 cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst
921
922 mkdir $(DISTDIR)/samples/db
923 cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db
924 cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db
925 cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db
926 cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db
927 cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db
928
929 mkdir $(DISTDIR)/samples/dialogs
930 cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs
931 cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs
932 cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs
933 cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs
934 cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs
935
936 mkdir $(DISTDIR)/samples/dnd
937 cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd
938 cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd
939 cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd
940 cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd
941 cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd
942 cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd
943 cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd
944
945 mkdir $(DISTDIR)/samples/docview
946 cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview
947 cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview
948 cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview
949 cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview
950 cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview
951
952 mkdir $(DISTDIR)/samples/docvwmdi
953 cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi
954 cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi
955 cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi
956 cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi
957
958 mkdir $(DISTDIR)/samples/drawing
959 cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing
960 cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing
961 cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing
962 cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing
963
964 mkdir $(DISTDIR)/samples/dynamic
965 cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic
966 cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic
967 cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic
968 cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic
969
970 mkdir $(DISTDIR)/samples/forty
971 cp $(SAMPDIR)/forty/Makefile.in $(DISTDIR)/samples/forty
972 cp $(SAMPDIR)/forty/makefile.unx $(DISTDIR)/samples/forty
973 cp $(SAMPDIR)/forty/*.h $(DISTDIR)/samples/forty
974 cp $(SAMPDIR)/forty/*.cpp $(DISTDIR)/samples/forty
975 cp $(SAMPDIR)/forty/*.xpm $(DISTDIR)/samples/forty
976 cp $(SAMPDIR)/forty/*.xbm $(DISTDIR)/samples/forty
977
978 mkdir $(DISTDIR)/samples/font
979 cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font
980 cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font
981 cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font
982
983 mkdir $(DISTDIR)/samples/fractal
984 cp $(SAMPDIR)/fractal/Makefile.in $(DISTDIR)/samples/fractal
985 cp $(SAMPDIR)/fractal/makefile.unx $(DISTDIR)/samples/fractal
986 cp $(SAMPDIR)/fractal/*.cpp $(DISTDIR)/samples/fractal
987
988 mkdir $(DISTDIR)/samples/grid
989 cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid
990 cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid
991 cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid
992
993 mkdir $(DISTDIR)/samples/help
994 mkdir $(DISTDIR)/samples/help/doc
995 cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help
996 cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help
997 cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help
998 cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help
999 cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc
1000
1001 mkdir $(DISTDIR)/samples/html
1002 cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html
1003 mkdir $(DISTDIR)/samples/html/about
1004 cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about
1005 cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about
1006 mkdir $(DISTDIR)/samples/html/about/data
1007 cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data
1008 cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data
1009 mkdir $(DISTDIR)/samples/html/help
1010 cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help
1011 cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help
1012 mkdir $(DISTDIR)/samples/html/help/helpfiles
1013 cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles
1014 mkdir $(DISTDIR)/samples/html/helpview
1015 cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview
1016 cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview
1017 cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview
1018 mkdir $(DISTDIR)/samples/html/printing
1019 cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing
1020 cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing
1021 cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing
1022 mkdir $(DISTDIR)/samples/html/test
1023 cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test
1024 cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test
1025 cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test
1026 cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test
1027 cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test
1028 cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test
1029 mkdir $(DISTDIR)/samples/html/virtual
1030 cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual
1031 cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual
1032 cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual
1033 mkdir $(DISTDIR)/samples/html/widget
1034 cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget
1035 cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget
1036 cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget
1037 mkdir $(DISTDIR)/samples/html/zip
1038 cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip
1039 cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip
1040 cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip
1041 cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip
1042
1043 mkdir $(DISTDIR)/samples/image
1044 cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image
1045 cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image
1046 cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image
1047 cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image
1048 cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image
1049
1050 mkdir $(DISTDIR)/samples/internat
1051 mkdir $(DISTDIR)/samples/internat/de
1052 mkdir $(DISTDIR)/samples/internat/fr
1053 cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat
1054 cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat
1055 cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat
1056 cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat
1057 cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat
1058 cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat
1059 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
1060 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
1061 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
1062 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
1063
1064 mkdir $(DISTDIR)/samples/layout
1065 cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout
1066 cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout
1067 cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout
1068 cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout
1069
1070 mkdir $(DISTDIR)/samples/life
1071 mkdir $(DISTDIR)/samples/life/bitmaps
1072 cp $(SAMPDIR)/life/Makefile.in $(DISTDIR)/samples/life
1073 cp $(SAMPDIR)/life/makefile.unx $(DISTDIR)/samples/life
1074 cp $(SAMPDIR)/life/*.cpp $(DISTDIR)/samples/life
1075 cp $(SAMPDIR)/life/*.xpm $(DISTDIR)/samples/life
1076 cp $(SAMPDIR)/life/bitmaps/*.xpm $(DISTDIR)/samples/life/bitmaps
1077
1078 mkdir $(DISTDIR)/samples/listctrl
1079 mkdir $(DISTDIR)/samples/listctrl/bitmaps
1080 cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl
1081 cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl
1082 cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl
1083 cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl
1084 cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl
1085 cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps
1086
1087 mkdir $(DISTDIR)/samples/mdi
1088 mkdir $(DISTDIR)/samples/mdi/bitmaps
1089 cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi
1090 cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi
1091 cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi
1092 cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi
1093 cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi
1094 cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps
1095
1096 mkdir $(DISTDIR)/samples/memcheck
1097 cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck
1098 cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck
1099 cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck
1100 cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck
1101
1102 mkdir $(DISTDIR)/samples/menu
1103 cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu
1104 cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu
1105 cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu
1106
1107 mkdir $(DISTDIR)/samples/minifram
1108 mkdir $(DISTDIR)/samples/minifram/bitmaps
1109 cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram
1110 cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram
1111 cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram
1112 cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram
1113 cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram
1114 cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps
1115
1116 mkdir $(DISTDIR)/samples/minimal
1117 cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal
1118 cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal
1119 cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal
1120 cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal
1121
1122 mkdir $(DISTDIR)/samples/nettest
1123 cp $(SAMPDIR)/nettest/Makefile.in $(DISTDIR)/samples/nettest
1124 cp $(SAMPDIR)/nettest/makefile.unx $(DISTDIR)/samples/nettest
1125 cp $(SAMPDIR)/nettest/*.cpp $(DISTDIR)/samples/nettest
1126
1127 mkdir $(DISTDIR)/samples/newgrid
1128 cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid
1129 cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid
1130 cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid
1131 cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid
1132
1133 mkdir $(DISTDIR)/samples/notebook
1134 cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook
1135 cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook
1136 cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook
1137 cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook
1138
1139 mkdir $(DISTDIR)/samples/png
1140 cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png
1141 cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png
1142 cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
1143 cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
1144 cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
1145
1146 mkdir $(DISTDIR)/samples/printing
1147 cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing
1148 cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing
1149 cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing
1150 cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing
1151 cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing
1152 cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing
1153
1154 mkdir $(DISTDIR)/samples/resource
1155 cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
1156 cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource
1157 cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
1158 cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
1159 cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
1160
1161 mkdir $(DISTDIR)/samples/richedit
1162 cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
1163 cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
1164 cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
1165 cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
1166 cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
1167 cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
1168
1169 mkdir $(DISTDIR)/samples/proplist
1170 cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
1171 cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
1172 cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist
1173
1174 mkdir $(DISTDIR)/samples/propsize
1175 cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize
1176 cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize
1177 cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize
1178
1179 mkdir $(DISTDIR)/samples/sashtest
1180 cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest
1181 cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest
1182 cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest
1183
1184 mkdir $(DISTDIR)/samples/scroll
1185 cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll
1186 cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll
1187 cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll
1188
1189 mkdir $(DISTDIR)/samples/scrollsub
1190 cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub
1191 cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub
1192 cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub
1193
1194 mkdir $(DISTDIR)/samples/splitter
1195 cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter
1196 cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter
1197 cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter
1198
1199 mkdir $(DISTDIR)/samples/text
1200 cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text
1201 cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text
1202 cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text
1203 cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text
1204
1205 mkdir $(DISTDIR)/samples/thread
1206 cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread
1207 cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread
1208 cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread
1209
1210 mkdir $(DISTDIR)/samples/toolbar
1211 cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar
1212 cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar
1213 cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar
1214 mkdir $(DISTDIR)/samples/toolbar/bitmaps
1215 cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps
1216
1217 mkdir $(DISTDIR)/samples/treectrl
1218 cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl
1219 cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl
1220 cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl
1221 cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl
1222
1223 mkdir $(DISTDIR)/samples/typetest
1224 cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest
1225 cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest
1226 cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest
1227 cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest
1228
1229 mkdir $(DISTDIR)/samples/validate
1230 cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate
1231 cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate
1232 cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate
1233 cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate
1234
1235 mkdir $(DISTDIR)/samples/wizard
1236 cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard
1237 cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard
1238 cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard
1239
1240 mkdir $(DISTDIR)/samples/wxpoem
1241 cp $(SAMPDIR)/wxpoem/Makefile.in $(DISTDIR)/samples/wxpoem
1242 cp $(SAMPDIR)/wxpoem/*.cpp $(DISTDIR)/samples/wxpoem
1243 cp $(SAMPDIR)/wxpoem/*.xpm $(DISTDIR)/samples/wxpoem
1244 cp $(SAMPDIR)/wxpoem/*.dat $(DISTDIR)/samples/wxpoem
1245 cp $(SAMPDIR)/wxpoem/*.txt $(DISTDIR)/samples/wxpoem
1246
1247 mkdir $(DISTDIR)/samples/wxsocket
1248 cp $(SAMPDIR)/wxsocket/Makefile.in $(DISTDIR)/samples/wxsocket
1249 cp $(SAMPDIR)/wxsocket/*.cpp $(DISTDIR)/samples/wxsocket
1250 cp $(SAMPDIR)/wxsocket/*.xpm $(DISTDIR)/samples/wxsocket
1251
1252 UTILS_DIST:
1253 mkdir $(DISTDIR)/utils
1254 cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils
1255
1256 mkdir $(DISTDIR)/utils/wxMMedia2
1257 mkdir $(DISTDIR)/utils/wxMMedia2/lib
1258 mkdir $(DISTDIR)/utils/wxMMedia2/sample
1259 cp $(UTILSDIR)/wxMMedia2/Makefile.in $(DISTDIR)/utils/wxMMedia2
1260 cp $(UTILSDIR)/wxMMedia2/lib/Makefile.in $(DISTDIR)/utils/wxMMedia2/lib
1261 cp $(UTILSDIR)/wxMMedia2/lib/*.h $(DISTDIR)/utils/wxMMedia2/lib
1262 cp $(UTILSDIR)/wxMMedia2/lib/*.cpp $(DISTDIR)/utils/wxMMedia2/lib
1263 cp $(UTILSDIR)/wxMMedia2/lib/*.def $(DISTDIR)/utils/wxMMedia2/lib
1264 cp $(UTILSDIR)/wxMMedia2/sample/Makefile.in $(DISTDIR)/utils/wxMMedia2/sample
1265 cp $(UTILSDIR)/wxMMedia2/sample/*.cpp $(DISTDIR)/utils/wxMMedia2/sample
1266
1267 mkdir $(DISTDIR)/utils/glcanvas
1268 mkdir $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1269 cp $(UTILSDIR)/glcanvas/Makefile.in $(DISTDIR)/utils/glcanvas
1270 cp $(UTILSDIR)/glcanvas/docs/notes.txt $(DISTDIR)/utils/glcanvas/NOTES.txt
1271 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/Makefile.in $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1272 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.h $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1273 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.cpp $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
1274
1275 mkdir $(DISTDIR)/utils/ogl
1276 mkdir $(DISTDIR)/utils/ogl/src
1277 cp $(UTILSDIR)/ogl/Makefile.in $(DISTDIR)/utils/ogl
1278 cp $(UTILSDIR)/ogl/src/Makefile.in $(DISTDIR)/utils/ogl/src
1279 cp $(UTILSDIR)/ogl/src/*.h $(DISTDIR)/utils/ogl/src
1280 cp $(UTILSDIR)/ogl/src/*.cpp $(DISTDIR)/utils/ogl/src
1281
1282 MISC_DIST:
1283 mkdir $(DISTDIR)/misc
1284 mkdir $(DISTDIR)/misc/afm
1285 cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm
1286 mkdir $(DISTDIR)/misc/gs_afm
1287 cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm
1288
1289 dist: ALL_DIST @GUIDIST@ SAMPLES_DIST UTILS_DIST MISC_DIST
1290 cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
1291 mv _dist_dir/wx$(TOOLKIT)/samples _dist_dir/wx$(TOOLKIT)/wxSamples
1292 cd _dist_dir/wx$(TOOLKIT); tar ch wxSamples | gzip -f9 > $(WXSAMPLES); mv $(WXSAMPLES) ../..
1293 $(RM) -r _dist_dir
1294
1295 clean:
1296 $(RM) *.o
1297 $(RM) *.d
1298 $(RM) parser.c
1299 $(RM) lexer.c
1300 $(RM) ./lib/*
1301
1302 cleanall: clean