]> git.saurik.com Git - wxWidgets.git/blame - Makefile.in
Chnages to mono-bitmap code.
[wxWidgets.git] / Makefile.in
CommitLineData
ad9edf45 1#
9260520f 2# This file was automatically generated by tmake at 17:13, 2000/01/12
ad9edf45 3# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNX.T!
549c6f67 4
ad9edf45
RR
5#
6# File: makefile.unx
7# Author: Julian Smart, Robert Roebling, Vadim Zeitlin
8# Created: 1993
9# Updated: 1999
10# Copyright:(c) 1993, AIAI, University of Edinburgh,
11# Copyright:(c) 1999, Vadim Zeitlin
12# Copyright:(c) 1999, Robert Roebling
13#
14# Makefile for libwx_gtk.a, libwx_motif.a and libwx_msw.a
15
16###################################################################
17
18include ./src/make.env
19
20############## override make.env for PIC ##########################
21
22# Clears all default suffixes
23.SUFFIXES: .o .cpp .c .cxx
24
25.c.o :
5586805b 26 $(CCC) -c @DEP_INFO_FLAGS@ $(CFLAGS) $(PICFLAGS) -o $@ $<
ad9edf45
RR
27
28.cpp.o :
5586805b 29 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
ad9edf45
RR
30
31.cxx.o :
5586805b 32 $(CC) -c @DEP_INFO_FLAGS@ $(CPPFLAGS) $(PICFLAGS) -o $@ $<
ad9edf45
RR
33
34########################### Paths #################################
35
36srcdir = @srcdir@
37
5586805b
RR
38VP1 = @top_srcdir@/src/common
39VP2 = @top_srcdir@/src/@TOOLKIT_DIR@
40VP3 = @top_srcdir@/src/motif/xmcombo
41VP4 = @top_srcdir@/src/generic
42VP5 = @top_srcdir@/src/unix
43VP6 = @top_srcdir@/src/html
44VP7 = @top_srcdir@/src/png
45VP8 = @top_srcdir@/src/jpeg
c7a2bf27
RR
46VP9 = @top_srcdir@/src/tiff
47VP10 = @top_srcdir@/src/zlib
48VP11 = @top_srcdir@/src/iodbc
5586805b 49
9260520f 50VPATH = $(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)
ad9edf45
RR
51
52top_srcdir = @top_srcdir@
53prefix = @prefix@
54exec_prefix = @exec_prefix@
55
56bindir = @bindir@
57sbindir = @sbindir@
58libexecdir = @libexecdir@
59datadir = @datadir@
60sysconfdir = @sysconfdir@
61sharedstatedir = @sharedstatedir@
62localstatedir = @localstatedir@
63libdir = @libdir@
64infodir = @infodir@
65mandir = @mandir@
66includedir = @includedir@
67oldincludedir = /usr/include
68
69DESTDIR =
70
71pkgdatadir = $(datadir)/@PACKAGE@
72pkglibdir = $(libdir)/@PACKAGE@
73pkgincludedir = $(includedir)/@PACKAGE@
74
75top_builddir = .
76
77INSTALL = @INSTALL@
78INSTALL_PROGRAM = @INSTALL_PROGRAM@
79INSTALL_DATA = @INSTALL_DATA@
8b17ba72
RR
80# my autoconf doesn't set this
81#INSTALL_SCRIPT = @INSTALL_SCRIPT@
82# maybe do an additional chmod if needed?
83INSTALL_SCRIPT = @INSTALL@
ad9edf45
RR
84transform = @program_transform_name@
85
86NORMAL_INSTALL = :
87PRE_INSTALL = :
88POST_INSTALL = :
89NORMAL_UNINSTALL = :
90PRE_UNINSTALL = :
91POST_UNINSTALL = :
92build_alias = @build_alias@
93build_triplet = @build@
94host_alias = @host_alias@
95host_triplet = @host@
96target_alias = @target_alias@
97target_triplet = @target@
98
dad6c0ea
VZ
99USE_GUI=@USE_GUI@
100
ad9edf45
RR
101############################# Dirs #################################
102
103WXDIR = $(top_srcdir)
104
105# Subordinate library possibilities
106
4cb122de
RR
107SRCDIR = $(WXDIR)/src
108GENDIR = $(WXDIR)/src/generic
109COMMDIR = $(WXDIR)/src/common
110HTMLDIR = $(WXDIR)/src/html
111UNIXDIR = $(WXDIR)/src/unix
112PNGDIR = $(WXDIR)/src/png
113JPEGDIR = $(WXDIR)/src/jpeg
1d62a8b4 114TIFFDIR = $(WXDIR)/src/tiff
4cb122de
RR
115ZLIBDIR = $(WXDIR)/src/zlib
116GTKDIR = $(WXDIR)/src/gtk
ad9edf45 117MOTIFDIR = $(WXDIR)/src/motif
4cb122de 118MSWDIR = $(WXDIR)/src/msw
9260520f 119PMDIR = $(WXDIR)/src/os2
c09ab26a 120ODBCDIR = $(WXDIR)/src/iodbc
4cb122de
RR
121INCDIR = $(WXDIR)/include
122SAMPDIR = $(WXDIR)/samples
641d87d8 123UTILSDIR = $(WXDIR)/utils
a6f3598d 124MISCDIR = $(WXDIR)/misc
ad9edf45
RR
125
126DOCDIR = $(WXDIR)/docs
127
a4aad961
RR
128########################## Archive name ###############################
129
79144b8a 130WXARCHIVE = wx$(TOOLKIT)-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
ba0e7d41 131WXSAMPLES = wx$(TOOLKIT)-samples-$(WX_MAJOR_VERSION_NUMBER).$(WX_MINOR_VERSION_NUMBER).$(WX_RELEASE_NUMBER).tgz
a4aad961
RR
132DISTDIR = ./_dist_dir/wx$(TOOLKIT)
133
ad9edf45
RR
134############################## Files ##################################
135
37667812
VZ
136BASE_HEADERS = \
137 app.h \
dad6c0ea
VZ
138 buffer.h \
139 cmdline.h \
37667812 140 date.h \
bf84b0be 141 datetime.h \
37667812
VZ
142 debug.h \
143 defs.h \
e694c22c 144 dir.h \
37667812
VZ
145 dynarray.h \
146 dynlib.h \
147 event.h \
148 ffile.h \
149 file.h \
150 fileconf.h \
151 hash.h \
152 intl.h \
dad6c0ea 153 ioswrap.h \
37667812
VZ
154 list.h \
155 log.h \
156 longlong.h \
dad6c0ea 157 memory.h \
37667812
VZ
158 mimetype.h \
159 module.h \
160 object.h \
161 process.h \
37667812
VZ
162 strconv.h \
163 stream.h \
164 string.h \
165 textfile.h \
166 thread.h \
167 time.h \
168 timer.h \
169 tokenzr.h \
170 txtstrm.h \
171 utils.h \
172 variant.h \
173 version.h \
e612f101 174 wfstream.h \
37667812
VZ
175 wx.h \
176 wxchar.h \
177 wxprec.h
178
ad9edf45
RR
179WX_HEADERS = \
180 accel.h \
181 app.h \
182 arrimpl.cpp \
183 bitmap.h \
184 bmpbuttn.h \
185 brush.h \
186 buffer.h \
187 busyinfo.h \
188 button.h \
9d9b7755 189 calctrl.h \
ad9edf45
RR
190 caret.h \
191 checkbox.h \
192 checklst.h \
193 choicdlg.h \
194 choice.h \
195 clipbrd.h \
dad6c0ea 196 cmdline.h \
ad9edf45
RR
197 cmndata.h \
198 colordlg.h \
199 colour.h \
200 combobox.h \
201 confbase.h \
202 config.h \
203 control.h \
11e1c70d 204 ctrlsub.h \
ad9edf45
RR
205 cursor.h \
206 dataobj.h \
207 date.h \
bf84b0be 208 datetime.h \
ad9edf45
RR
209 datstrm.h \
210 db.h \
211 dbtable.h \
212 dc.h \
213 dcclient.h \
214 dcmemory.h \
215 dcprint.h \
216 dcps.h \
217 dcscreen.h \
218 dde.h \
219 debug.h \
220 defs.h \
221 dialog.h \
fc9c7c09 222 dialup.h \
e694c22c 223 dir.h \
ad9edf45
RR
224 dirdlg.h \
225 dnd.h \
226 docmdi.h \
227 docview.h \
228 dragimag.h \
229 dynarray.h \
230 dynlib.h \
15b83243 231 encconv.h \
ad9edf45
RR
232 event.h \
233 expr.h \
234 ffile.h \
235 file.h \
236 fileconf.h \
237 filedlg.h \
238 filefn.h \
239 filesys.h \
240 font.h \
241 fontdlg.h \
8487f887
RR
242 fontenum.h \
243 fontmap.h \
244 fontutil.h \
ad9edf45
RR
245 frame.h \
246 fs_inet.h \
247 fs_zip.h \
248 gauge.h \
249 gdicmn.h \
250 gdiobj.h \
e8ac7bf2 251 gifdecod.h \
ad9edf45 252 grid.h \
8b17ba72 253 gsocket.h \
ad9edf45
RR
254 hash.h \
255 help.h \
256 helpbase.h \
257 helphtml.h \
258 helpwin.h \
259 helpxlp.h \
260 icon.h \
336e2d44 261 imagbmp.h \
ad9edf45 262 image.h \
336e2d44
VS
263 imaggif.h \
264 imagjpeg.h \
ad9edf45 265 imaglist.h \
336e2d44
VS
266 imagpcx.h \
267 imagpng.h \
268 imagpnm.h \
269 imagtiff.h \
ad9edf45
RR
270 intl.h \
271 ioswrap.h \
272 ipcbase.h \
273 joystick.h \
274 layout.h \
275 laywin.h \
276 list.h \
277 listbox.h \
278 listctrl.h \
279 listimpl.cpp \
280 log.h \
281 longlong.h \
282 matrix.h \
283 mdi.h \
284 memory.h \
285 menu.h \
286 menuitem.h \
287 metafile.h \
288 mimetype.h \
289 minifram.h \
290 module.h \
291 msgdlg.h \
292 mstream.h \
293 notebook.h \
294 object.h \
295 objstrm.h \
296 odbc.h \
297 ownerdrw.h \
298 palette.h \
299 panel.h \
300 paper.h \
301 pen.h \
ad9edf45
RR
302 print.h \
303 printdlg.h \
304 prntbase.h \
305 process.h \
306 progdlg.h \
307 prop.h \
308 propform.h \
309 proplist.h \
310 radiobox.h \
311 radiobut.h \
312 region.h \
313 resource.h \
314 sashwin.h \
315 sckaddr.h \
316 sckipc.h \
317 sckstrm.h \
318 scrolbar.h \
319 scrolwin.h \
320 serbase.h \
321 settings.h \
322 setup.h \
323 sizer.h \
324 slider.h \
325 socket.h \
326 spinbutt.h \
c09ab26a 327 spinctrl.h \
ad9edf45
RR
328 splitter.h \
329 statbmp.h \
330 statbox.h \
331 statline.h \
332 stattext.h \
333 statusbr.h \
334 strconv.h \
335 stream.h \
336 string.h \
337 tab.h \
338 tabctrl.h \
339 taskbar.h \
ad9edf45 340 tbarbase.h \
ad9edf45
RR
341 tbarsmpl.h \
342 textctrl.h \
343 textdlg.h \
344 textfile.h \
345 thread.h \
346 time.h \
347 timer.h \
348 tipdlg.h \
349 tokenzr.h \
350 toolbar.h \
351 tooltip.h \
352 treectrl.h \
353 txtstrm.h \
354 types.h \
355 url.h \
356 utils.h \
357 valgen.h \
358 validate.h \
359 valtext.h \
360 variant.h \
361 version.h \
362 wave.h \
363 wfstream.h \
364 window.h \
e9093718 365 wizard.h \
ad9edf45
RR
366 wx.h \
367 wx_cw.h \
368 wx_cw_cm.h \
369 wx_cw_d.h \
370 wxchar.h \
371 wxexpr.h \
372 wxhtml.h \
373 wxprec.h \
374 xpmhand.h \
375 zipstrm.h \
376 zstream.h
377
378GTK_HEADERS = \
379 gtk/accel.h \
380 gtk/app.h \
381 gtk/bitmap.h \
382 gtk/bmpbuttn.h \
383 gtk/brush.h \
384 gtk/button.h \
385 gtk/checkbox.h \
386 gtk/checklst.h \
387 gtk/choice.h \
388 gtk/clipbrd.h \
389 gtk/colour.h \
390 gtk/combobox.h \
391 gtk/control.h \
392 gtk/cursor.h \
c4933157 393 gtk/dataform.h \
ad9edf45 394 gtk/dataobj.h \
c4933157 395 gtk/dataobj2.h \
ad9edf45
RR
396 gtk/dc.h \
397 gtk/dcclient.h \
398 gtk/dcmemory.h \
399 gtk/dcscreen.h \
400 gtk/dialog.h \
401 gtk/dnd.h \
402 gtk/filedlg.h \
403 gtk/font.h \
8636aed8 404 gtk/fontdlg.h \
ad9edf45
RR
405 gtk/frame.h \
406 gtk/gauge.h \
407 gtk/gdiobj.h \
408 gtk/icon.h \
409 gtk/joystick.h \
410 gtk/listbox.h \
411 gtk/mdi.h \
412 gtk/menu.h \
413 gtk/menuitem.h \
414 gtk/minifram.h \
415 gtk/notebook.h \
416 gtk/palette.h \
417 gtk/pen.h \
418 gtk/radiobox.h \
419 gtk/radiobut.h \
420 gtk/region.h \
421 gtk/scrolbar.h \
422 gtk/settings.h \
423 gtk/slider.h \
424 gtk/spinbutt.h \
c09ab26a 425 gtk/spinctrl.h \
ad9edf45
RR
426 gtk/statbmp.h \
427 gtk/statbox.h \
428 gtk/statline.h \
429 gtk/stattext.h \
430 gtk/tbargtk.h \
431 gtk/textctrl.h \
432 gtk/timer.h \
433 gtk/tooltip.h \
434 gtk/treectrl.h \
435 gtk/wave.h \
436 gtk/win_gtk.h \
437 gtk/window.h
438
439MOTIF_HEADERS = \
440 motif/accel.h \
441 motif/app.h \
442 motif/bitmap.h \
443 motif/bmpbuttn.h \
444 motif/brush.h \
445 motif/button.h \
446 motif/checkbox.h \
447 motif/checklst.h \
448 motif/choice.h \
449 motif/clipbrd.h \
450 motif/colordlg.h \
451 motif/colour.h \
452 motif/combobox.h \
453 motif/control.h \
454 motif/cursor.h \
c4933157 455 motif/dataform.h \
ad9edf45 456 motif/dataobj.h \
c4933157 457 motif/dataobj2.h \
ad9edf45
RR
458 motif/dc.h \
459 motif/dcclient.h \
460 motif/dcmemory.h \
461 motif/dcprint.h \
462 motif/dcscreen.h \
463 motif/dialog.h \
464 motif/dnd.h \
465 motif/filedlg.h \
466 motif/font.h \
467 motif/fontdlg.h \
468 motif/frame.h \
469 motif/gauge.h \
470 motif/gdiobj.h \
471 motif/icon.h \
472 motif/joystick.h \
473 motif/listbox.h \
474 motif/mdi.h \
475 motif/menu.h \
476 motif/menuitem.h \
477 motif/metafile.h \
478 motif/minifram.h \
479 motif/msgdlg.h \
480 motif/palette.h \
481 motif/pen.h \
482 motif/print.h \
483 motif/printdlg.h \
484 motif/private.h \
485 motif/radiobox.h \
486 motif/radiobut.h \
487 motif/region.h \
488 motif/scrolbar.h \
489 motif/settings.h \
490 motif/slider.h \
491 motif/spinbutt.h \
492 motif/statbmp.h \
493 motif/statbox.h \
494 motif/stattext.h \
495 motif/textctrl.h \
496 motif/timer.h \
497 motif/toolbar.h \
498 motif/window.h
499
a4aad961
RR
500MSW_HEADERS = \
501 msw/accel.h \
502 msw/app.h \
503 msw/bitmap.h \
504 msw/bmpbuttn.h \
505 msw/brush.h \
506 msw/button.h \
507 msw/caret.h \
508 msw/checkbox.h \
509 msw/checklst.h \
510 msw/choice.h \
511 msw/clipbrd.h \
512 msw/colordlg.h \
513 msw/colour.h \
514 msw/combobox.h \
515 msw/control.h \
516 msw/curico.h \
517 msw/curicop.h \
518 msw/cursor.h \
519 msw/dc.h \
520 msw/dcclient.h \
521 msw/dcmemory.h \
522 msw/dcprint.h \
523 msw/dcscreen.h \
524 msw/dde.h \
525 msw/dialog.h \
526 msw/dib.h \
527 msw/dibutils.h \
528 msw/dirdlg.h \
529 msw/dragimag.h \
530 msw/filedlg.h \
531 msw/font.h \
532 msw/fontdlg.h \
533 msw/frame.h \
534 msw/gauge.h \
535 msw/gauge95.h \
536 msw/gaugemsw.h \
f048e32f 537 msw/gdiimage.h \
a4aad961
RR
538 msw/gdiobj.h \
539 msw/helpwin.h \
540 msw/icon.h \
541 msw/imaglist.h \
542 msw/iniconf.h \
543 msw/joystick.h \
544 msw/listbox.h \
545 msw/listctrl.h \
546 msw/mdi.h \
547 msw/menu.h \
548 msw/menuitem.h \
549 msw/metafile.h \
550 msw/minifram.h \
551 msw/msgdlg.h \
552 msw/msvcrt.h \
553 msw/notebook.h \
554 msw/palette.h \
555 msw/pen.h \
a4aad961
RR
556 msw/printdlg.h \
557 msw/printwin.h \
558 msw/private.h \
559 msw/radiobox.h \
560 msw/radiobut.h \
561 msw/regconf.h \
562 msw/region.h \
563 msw/registry.h \
564 msw/scrolbar.h \
565 msw/settings.h \
566 msw/setup0.h \
567 msw/slider.h \
568 msw/slider95.h \
569 msw/slidrmsw.h \
570 msw/spinbutt.h \
571 msw/statbmp.h \
572 msw/statbox.h \
573 msw/statbr95.h \
574 msw/statline.h \
575 msw/stattext.h \
576 msw/tabctrl.h \
577 msw/taskbar.h \
578 msw/tbar95.h \
579 msw/tbarmsw.h \
580 msw/textctrl.h \
581 msw/timer.h \
582 msw/tooltip.h \
583 msw/treectrl.h \
584 msw/wave.h \
585 msw/window.h \
586 msw/winundef.h \
587 msw/xpmhand.h
588
9260520f
VZ
589PM_HEADERS = \
590 os2/accel.h \
591 os2/app.h \
592 os2/bitmap.h \
593 os2/bmpbuttn.h \
594 os2/brush.h \
595 os2/button.h \
596 os2/checkbox.h \
597 os2/checklst.h \
598 os2/choice.h \
599 os2/clipbrd.h \
600 os2/colour.h \
601 os2/combobox.h \
602 os2/control.h \
603 os2/cursor.h \
604 os2/dataform.h \
605 os2/dataobj.h \
606 os2/dataobj2.h \
607 os2/dc.h \
608 os2/dcclient.h \
609 os2/dcmemory.h \
610 os2/dcprint.h \
611 os2/dcscreen.h \
612 os2/dialog.h \
613 os2/dirdlg.h \
614 os2/dnd.h \
615 os2/filedlg.h \
616 os2/font.h \
617 os2/fontdlg.h \
618 os2/frame.h \
619 os2/gauge.h \
620 os2/gdiimage.h \
621 os2/gdiobj.h \
622 os2/gsockos2.h \
623 os2/helpwin.h \
624 os2/icon.h \
625 os2/iniconf.h \
626 os2/joystick.h \
627 os2/listbox.h \
628 os2/mdi.h \
629 os2/menu.h \
630 os2/menuitem.h \
631 os2/metafile.h \
632 os2/minifram.h \
633 os2/msgdlg.h \
634 os2/notebook.h \
635 os2/palette.h \
636 os2/pen.h \
637 os2/pnghand.h \
638 os2/pngread.h \
639 os2/print.h \
640 os2/private.h \
641 os2/radiobox.h \
642 os2/radiobut.h \
643 os2/region.h \
644 os2/scrolbar.h \
645 os2/settings.h \
646 os2/setup0.h \
647 os2/slider.h \
648 os2/spinbutt.h \
649 os2/spinctrl.h \
650 os2/statbmp.h \
651 os2/statbox.h \
652 os2/statline.h \
653 os2/stattext.h \
654 os2/tabctrl.h \
655 os2/taskbar.h \
656 os2/textctrl.h \
657 os2/timer.h \
658 os2/toolbar.h \
659 os2/tooltip.h \
660 os2/wave.h \
661 os2/window.h
662
ad9edf45 663UNIX_HEADERS = \
e66ad5c6
VZ
664 unix/execute.h \
665 unix/fontutil.h
ad9edf45
RR
666
667GENERIC_HEADERS = \
9d9b7755 668 generic/calctrl.h \
ad9edf45
RR
669 generic/caret.h \
670 generic/choicdgg.h \
671 generic/colrdlgg.h \
672 generic/dcpsg.h \
673 generic/dirdlgg.h \
e8ac7bf2 674 generic/filedlgg.h \
ad9edf45 675 generic/fontdlgg.h \
f85afd4e 676 generic/grid.h \
af563b66 677 generic/gridg.h \
ad9edf45
RR
678 generic/helpext.h \
679 generic/helphtml.h \
680 generic/helpwxht.h \
681 generic/helpxlp.h \
682 generic/imaglist.h \
683 generic/laywin.h \
684 generic/listctrl.h \
685 generic/msgdlgg.h \
686 generic/notebook.h \
687 generic/panelg.h \
688 generic/printps.h \
689 generic/prntdlgg.h \
690 generic/progdlgg.h \
691 generic/sashwin.h \
692 generic/scrolwin.h \
693 generic/splitter.h \
694 generic/statusbr.h \
695 generic/tabg.h \
696 generic/textdlgg.h \
1f59726e
VZ
697 generic/treectrl.h \
698 generic/wizard.h
ad9edf45
RR
699
700PROTOCOL_HEADERS = \
701 protocol/file.h \
702 protocol/ftp.h \
703 protocol/http.h \
704 protocol/protocol.h
705
706HTML_HEADERS = \
69941f05 707 html/forcelnk.h \
8ec2b484
HH
708 html/helpctrl.h \
709 html/helpdata.h \
710 html/helpfrm.h \
ad9edf45
RR
711 html/htmlcell.h \
712 html/htmldefs.h \
69941f05
VS
713 html/htmlfilt.h \
714 html/htmlpars.h \
ad9edf45
RR
715 html/htmltag.h \
716 html/htmlwin.h \
3ce369e6 717 html/htmprint.h \
69941f05 718 html/m_templ.h \
69941f05 719 html/winpars.h
ad9edf45
RR
720
721GTK_GENERICOBJS = \
5586805b 722 busyinfo.o \
9d9b7755 723 calctrl.o \
5586805b
RR
724 caret.o \
725 choicdgg.o \
726 colrdlgg.o \
727 dcpsg.o \
728 dirdlgg.o \
729 filedlgg.o \
f85afd4e 730 grid.o \
08794f69 731 helpext.o \
5586805b
RR
732 helphtml.o \
733 helpwxht.o \
734 imaglist.o \
735 laywin.o \
736 listctrl.o \
dd85fc6b 737 logg.o \
5586805b
RR
738 msgdlgg.o \
739 numdlgg.o \
740 panelg.o \
741 printps.o \
742 prntdlgg.o \
743 progdlgg.o \
744 prop.o \
745 propform.o \
746 proplist.o \
747 sashwin.o \
748 scrolwin.o \
749 splitter.o \
750 statusbr.o \
8487f887 751 tabg.o \
bf84b0be 752 tbarsmpl.o \
5586805b
RR
753 textdlgg.o \
754 tipdlg.o \
755 treectrl.o \
756 wizard.o
757
758GTK_GENERICDEPS = \
759 busyinfo.d \
9d9b7755 760 calctrl.d \
5586805b
RR
761 caret.d \
762 choicdgg.d \
763 colrdlgg.d \
764 dcpsg.d \
765 dirdlgg.d \
766 filedlgg.d \
f85afd4e 767 grid.d \
08794f69 768 helpext.d \
5586805b
RR
769 helphtml.d \
770 helpwxht.d \
771 imaglist.d \
772 laywin.d \
773 listctrl.d \
dd85fc6b 774 logg.d \
5586805b
RR
775 msgdlgg.d \
776 numdlgg.d \
777 panelg.d \
778 printps.d \
779 prntdlgg.d \
780 progdlgg.d \
781 prop.d \
782 propform.d \
783 proplist.d \
784 sashwin.d \
785 scrolwin.d \
786 splitter.d \
787 statusbr.d \
8487f887 788 tabg.d \
bf84b0be 789 tbarsmpl.d \
5586805b
RR
790 textdlgg.d \
791 tipdlg.d \
792 treectrl.d \
793 wizard.d
ad9edf45
RR
794
795GTK_COMMONOBJS = \
796 parser.o \
1dd989e1
RR
797 appcmn.o \
798 choiccmn.o \
b068c4e8 799 clipcmn.o \
2a36259f 800 cmdline.o \
5586805b
RR
801 cmndata.o \
802 config.o \
1dd989e1 803 ctrlcmn.o \
6c8a980f 804 ctrlsub.o \
bf84b0be 805 datetime.o \
5586805b
RR
806 datstrm.o \
807 db.o \
808 dbtable.o \
809 dcbase.o \
810 dlgcmn.o \
c4933157 811 dobjcmn.o \
5586805b
RR
812 docmdi.o \
813 docview.o \
814 dynarray.o \
815 dynlib.o \
15b83243 816 encconv.o \
5586805b
RR
817 event.o \
818 extended.o \
819 ffile.o \
820 file.o \
821 fileconf.o \
822 filefn.o \
823 filesys.o \
5e014a0c 824 fontcmn.o \
8487f887 825 fontmap.o \
5586805b
RR
826 framecmn.o \
827 fs_inet.o \
828 fs_zip.o \
829 ftp.o \
830 gdicmn.o \
831 gifdecod.o \
832 hash.o \
833 helpbase.o \
834 http.o \
5e014a0c 835 imagall.o \
5586805b
RR
836 imagbmp.o \
837 image.o \
838 imaggif.o \
839 imagjpeg.o \
75ceb69d 840 imagpcx.o \
5586805b
RR
841 imagpng.o \
842 imagpnm.o \
c7a2bf27 843 imagtiff.o \
5586805b
RR
844 intl.o \
845 ipcbase.o \
846 layout.o \
6c8a980f 847 lboxcmn.o \
5586805b
RR
848 list.o \
849 log.o \
bf84b0be 850 longlong.o \
5586805b 851 memory.o \
3dfac970 852 menucmn.o \
5586805b
RR
853 mimetype.o \
854 module.o \
855 mstream.o \
856 object.o \
857 objstrm.o \
858 paper.o \
859 prntbase.o \
860 process.o \
861 protocol.o \
862 resource.o \
863 sckaddr.o \
864 sckfile.o \
865 sckipc.o \
866 sckstrm.o \
ae8f5769 867 serbase.o \
5586805b
RR
868 sizer.o \
869 socket.o \
870 strconv.o \
871 stream.o \
872 string.o \
873 tbarbase.o \
5586805b
RR
874 textcmn.o \
875 textfile.o \
5586805b
RR
876 timercmn.o \
877 tokenzr.o \
878 txtstrm.o \
879 unzip.o \
880 url.o \
881 utilscmn.o \
882 valgen.o \
883 validate.o \
884 valtext.o \
885 variant.o \
886 wfstream.o \
887 wincmn.o \
888 wxchar.o \
889 wxexpr.o \
890 zipstrm.o \
891 zstream.o
892
893GTK_COMMONDEPS = \
894 parser.d \
1dd989e1
RR
895 appcmn.d \
896 choiccmn.d \
b068c4e8 897 clipcmn.d \
2a36259f 898 cmdline.d \
5586805b
RR
899 cmndata.d \
900 config.d \
1dd989e1 901 ctrlcmn.d \
6c8a980f 902 ctrlsub.d \
bf84b0be 903 datetime.d \
5586805b
RR
904 datstrm.d \
905 db.d \
906 dbtable.d \
907 dcbase.d \
908 dlgcmn.d \
c4933157 909 dobjcmn.d \
5586805b
RR
910 docmdi.d \
911 docview.d \
912 dynarray.d \
913 dynlib.d \
15b83243 914 encconv.d \
5586805b
RR
915 event.d \
916 extended.d \
917 ffile.d \
918 file.d \
919 fileconf.d \
920 filefn.d \
921 filesys.d \
5e014a0c 922 fontcmn.d \
8487f887 923 fontmap.d \
5586805b
RR
924 framecmn.d \
925 fs_inet.d \
926 fs_zip.d \
927 ftp.d \
928 gdicmn.d \
929 gifdecod.d \
930 hash.d \
931 helpbase.d \
932 http.d \
5e014a0c 933 imagall.d \
5586805b
RR
934 imagbmp.d \
935 image.d \
936 imaggif.d \
937 imagjpeg.d \
75ceb69d 938 imagpcx.d \
5586805b
RR
939 imagpng.d \
940 imagpnm.d \
c7a2bf27 941 imagtiff.d \
5586805b
RR
942 intl.d \
943 ipcbase.d \
944 layout.d \
6c8a980f 945 lboxcmn.d \
5586805b
RR
946 list.d \
947 log.d \
bf84b0be 948 longlong.d \
5586805b 949 memory.d \
3dfac970 950 menucmn.d \
5586805b
RR
951 mimetype.d \
952 module.d \
953 mstream.d \
954 object.d \
955 objstrm.d \
956 paper.d \
957 prntbase.d \
958 process.d \
959 protocol.d \
960 resource.d \
961 sckaddr.d \
962 sckfile.d \
963 sckipc.d \
964 sckstrm.d \
ae8f5769 965 serbase.d \
5586805b
RR
966 sizer.d \
967 socket.d \
968 strconv.d \
969 stream.d \
970 string.d \
971 tbarbase.d \
5586805b
RR
972 textcmn.d \
973 textfile.d \
5586805b
RR
974 timercmn.d \
975 tokenzr.d \
976 txtstrm.d \
977 unzip.d \
978 url.d \
979 utilscmn.d \
980 valgen.d \
981 validate.d \
982 valtext.d \
983 variant.d \
984 wfstream.d \
985 wincmn.d \
986 wxchar.d \
987 wxexpr.d \
988 zipstrm.d \
989 zstream.d
ad9edf45
RR
990
991GTK_GUIOBJS = \
5586805b
RR
992 accel.o \
993 app.o \
994 bitmap.o \
995 bmpbuttn.o \
996 brush.o \
997 button.o \
998 checkbox.o \
999 checklst.o \
1000 choice.o \
1001 clipbrd.o \
1002 colour.o \
1003 combobox.o \
1004 control.o \
1005 cursor.o \
1006 data.o \
1007 dataobj.o \
1008 dc.o \
1009 dcclient.o \
1010 dcmemory.o \
1011 dcscreen.o \
1012 dialog.o \
1013 dnd.o \
1014 font.o \
8636aed8 1015 fontdlg.o \
5586805b
RR
1016 frame.o \
1017 gauge.o \
1018 gdiobj.o \
1019 gsockgtk.o \
1020 icon.o \
1021 listbox.o \
1022 main.o \
1023 mdi.o \
1024 menu.o \
1025 minifram.o \
1026 notebook.o \
1027 palette.o \
1028 pen.o \
1029 radiobox.o \
1030 radiobut.o \
1031 region.o \
1032 scrolbar.o \
1033 settings.o \
1034 slider.o \
1035 spinbutt.o \
738f9e5a 1036 spinctrl.o \
5586805b
RR
1037 statbmp.o \
1038 statbox.o \
1039 statline.o \
1040 stattext.o \
1041 tbargtk.o \
1042 textctrl.o \
1043 timer.o \
1044 tooltip.o \
1045 utilsgtk.o \
1046 utilsres.o \
1047 wave.o \
1048 win_gtk.o \
1049 window.o
1050
1051GTK_GUIDEPS = \
1052 accel.d \
1053 app.d \
1054 bitmap.d \
1055 bmpbuttn.d \
1056 brush.d \
1057 button.d \
1058 checkbox.d \
1059 checklst.d \
1060 choice.d \
1061 clipbrd.d \
1062 colour.d \
1063 combobox.d \
1064 control.d \
1065 cursor.d \
1066 data.d \
1067 dataobj.d \
1068 dc.d \
1069 dcclient.d \
1070 dcmemory.d \
1071 dcscreen.d \
1072 dialog.d \
1073 dnd.d \
1074 font.d \
8636aed8 1075 fontdlg.d \
5586805b
RR
1076 frame.d \
1077 gauge.d \
1078 gdiobj.d \
1079 gsockgtk.d \
1080 icon.d \
1081 listbox.d \
1082 main.d \
1083 mdi.d \
1084 menu.d \
1085 minifram.d \
1086 notebook.d \
1087 palette.d \
1088 pen.d \
1089 radiobox.d \
1090 radiobut.d \
1091 region.d \
1092 scrolbar.d \
1093 settings.d \
1094 slider.d \
1095 spinbutt.d \
738f9e5a 1096 spinctrl.d \
5586805b
RR
1097 statbmp.d \
1098 statbox.d \
1099 statline.d \
1100 stattext.d \
1101 tbargtk.d \
1102 textctrl.d \
1103 timer.d \
1104 tooltip.d \
1105 utilsgtk.d \
1106 utilsres.d \
1107 wave.d \
1108 win_gtk.d \
1109 window.d
ad9edf45
RR
1110
1111MOTIF_GENERICOBJS = \
5586805b 1112 busyinfo.o \
9d9b7755 1113 calctrl.o \
5586805b
RR
1114 caret.o \
1115 choicdgg.o \
1116 colrdlgg.o \
1117 dcpsg.o \
1118 dirdlgg.o \
5586805b 1119 fontdlgg.o \
f85afd4e 1120 grid.o \
08794f69 1121 helpext.o \
5586805b
RR
1122 helphtml.o \
1123 helpwxht.o \
1124 helpxlp.o \
1125 imaglist.o \
1126 laywin.o \
1127 listctrl.o \
dd85fc6b 1128 logg.o \
5586805b
RR
1129 msgdlgg.o \
1130 notebook.o \
1131 numdlgg.o \
1132 panelg.o \
1133 printps.o \
1134 prntdlgg.o \
1135 progdlgg.o \
1136 prop.o \
1137 propform.o \
1138 proplist.o \
1139 sashwin.o \
1140 scrolwin.o \
1141 splitter.o \
d84b1219 1142 statline.o \
5586805b
RR
1143 statusbr.o \
1144 tabg.o \
bf84b0be 1145 tbarsmpl.o \
5586805b
RR
1146 textdlgg.o \
1147 tipdlg.o \
1148 treectrl.o \
1149 wizard.o
1150
1151MOTIF_GENERICDEPS = \
1152 busyinfo.d \
9d9b7755 1153 calctrl.d \
5586805b
RR
1154 caret.d \
1155 choicdgg.d \
1156 colrdlgg.d \
1157 dcpsg.d \
1158 dirdlgg.d \
5586805b 1159 fontdlgg.d \
f85afd4e 1160 grid.d \
08794f69 1161 helpext.d \
5586805b
RR
1162 helphtml.d \
1163 helpwxht.d \
1164 helpxlp.d \
1165 imaglist.d \
1166 laywin.d \
1167 listctrl.d \
dd85fc6b 1168 logg.d \
5586805b
RR
1169 msgdlgg.d \
1170 notebook.d \
1171 numdlgg.d \
1172 panelg.d \
1173 printps.d \
1174 prntdlgg.d \
1175 progdlgg.d \
1176 prop.d \
1177 propform.d \
1178 proplist.d \
1179 sashwin.d \
1180 scrolwin.d \
1181 splitter.d \
d84b1219 1182 statline.d \
5586805b
RR
1183 statusbr.d \
1184 tabg.d \
bf84b0be 1185 tbarsmpl.d \
5586805b
RR
1186 textdlgg.d \
1187 tipdlg.d \
1188 treectrl.d \
1189 wizard.d
ad9edf45
RR
1190
1191MOTIF_COMMONOBJS = \
1192 parser.o \
1dd989e1 1193 appcmn.o \
5586805b 1194 choiccmn.o \
b068c4e8 1195 clipcmn.o \
2a36259f 1196 cmdline.o \
5586805b
RR
1197 cmndata.o \
1198 config.o \
1199 ctrlcmn.o \
6c8a980f 1200 ctrlsub.o \
bf84b0be 1201 datetime.o \
5586805b
RR
1202 datstrm.o \
1203 db.o \
1204 dbtable.o \
1205 dcbase.o \
1206 dlgcmn.o \
c4933157 1207 dobjcmn.o \
5586805b
RR
1208 docmdi.o \
1209 docview.o \
1210 dynarray.o \
1211 dynlib.o \
15b83243 1212 encconv.o \
5586805b
RR
1213 event.o \
1214 extended.o \
1215 ffile.o \
1216 file.o \
1217 fileconf.o \
1218 filefn.o \
1219 filesys.o \
5e014a0c 1220 fontcmn.o \
8487f887 1221 fontmap.o \
5586805b
RR
1222 framecmn.o \
1223 fs_inet.o \
1224 fs_zip.o \
1225 ftp.o \
1226 gdicmn.o \
1227 gifdecod.o \
1228 hash.o \
1229 helpbase.o \
1230 http.o \
5e014a0c 1231 imagall.o \
5586805b
RR
1232 imagbmp.o \
1233 image.o \
1234 imaggif.o \
1235 imagjpeg.o \
75ceb69d 1236 imagpcx.o \
5586805b
RR
1237 imagpng.o \
1238 imagpnm.o \
c7a2bf27 1239 imagtiff.o \
5586805b
RR
1240 intl.o \
1241 ipcbase.o \
1242 layout.o \
6c8a980f 1243 lboxcmn.o \
5586805b
RR
1244 list.o \
1245 log.o \
bf84b0be 1246 longlong.o \
5586805b 1247 memory.o \
3dfac970 1248 menucmn.o \
5586805b
RR
1249 mimetype.o \
1250 module.o \
1251 mstream.o \
1252 object.o \
1253 objstrm.o \
5586805b
RR
1254 paper.o \
1255 prntbase.o \
1256 process.o \
1257 protocol.o \
1258 resource.o \
1259 sckaddr.o \
1260 sckfile.o \
1261 sckipc.o \
1262 sckstrm.o \
ae8f5769 1263 serbase.o \
5586805b
RR
1264 sizer.o \
1265 socket.o \
1266 strconv.o \
1267 stream.o \
1268 string.o \
1269 tbarbase.o \
5586805b
RR
1270 textcmn.o \
1271 textfile.o \
5586805b
RR
1272 timercmn.o \
1273 tokenzr.o \
1274 txtstrm.o \
1275 unzip.o \
1276 url.o \
1277 utilscmn.o \
1278 valgen.o \
1279 validate.o \
1280 valtext.o \
1281 variant.o \
1282 wfstream.o \
1283 wincmn.o \
1284 wxchar.o \
1285 wxexpr.o \
1286 zipstrm.o \
1287 zstream.o
1288
1289MOTIF_COMMONDEPS = \
1290 parser.d \
1dd989e1 1291 appcmn.d \
5586805b 1292 choiccmn.d \
b068c4e8 1293 clipcmn.d \
2a36259f 1294 cmdline.d \
5586805b
RR
1295 cmndata.d \
1296 config.d \
1297 ctrlcmn.d \
6c8a980f 1298 ctrlsub.d \
bf84b0be 1299 datetime.d \
5586805b
RR
1300 datstrm.d \
1301 db.d \
1302 dbtable.d \
1303 dcbase.d \
1304 dlgcmn.d \
c4933157 1305 dobjcmn.d \
5586805b
RR
1306 docmdi.d \
1307 docview.d \
1308 dynarray.d \
1309 dynlib.d \
15b83243 1310 encconv.d \
5586805b
RR
1311 event.d \
1312 extended.d \
1313 ffile.d \
1314 file.d \
1315 fileconf.d \
1316 filefn.d \
1317 filesys.d \
5e014a0c 1318 fontcmn.d \
8487f887 1319 fontmap.d \
5586805b
RR
1320 framecmn.d \
1321 fs_inet.d \
1322 fs_zip.d \
1323 ftp.d \
1324 gdicmn.d \
1325 gifdecod.d \
1326 hash.d \
1327 helpbase.d \
1328 http.d \
5e014a0c 1329 imagall.d \
5586805b
RR
1330 imagbmp.d \
1331 image.d \
1332 imaggif.d \
1333 imagjpeg.d \
75ceb69d 1334 imagpcx.d \
5586805b
RR
1335 imagpng.d \
1336 imagpnm.d \
c7a2bf27 1337 imagtiff.d \
5586805b
RR
1338 intl.d \
1339 ipcbase.d \
1340 layout.d \
6c8a980f 1341 lboxcmn.d \
5586805b
RR
1342 list.d \
1343 log.d \
bf84b0be 1344 longlong.d \
5586805b 1345 memory.d \
3dfac970 1346 menucmn.d \
5586805b
RR
1347 mimetype.d \
1348 module.d \
1349 mstream.d \
1350 object.d \
1351 objstrm.d \
5586805b
RR
1352 paper.d \
1353 prntbase.d \
1354 process.d \
1355 protocol.d \
1356 resource.d \
1357 sckaddr.d \
1358 sckfile.d \
1359 sckipc.d \
1360 sckstrm.d \
ae8f5769 1361 serbase.d \
5586805b
RR
1362 sizer.d \
1363 socket.d \
1364 strconv.d \
1365 stream.d \
1366 string.d \
1367 tbarbase.d \
5586805b
RR
1368 textcmn.d \
1369 textfile.d \
5586805b
RR
1370 timercmn.d \
1371 tokenzr.d \
1372 txtstrm.d \
1373 unzip.d \
1374 url.d \
1375 utilscmn.d \
1376 valgen.d \
1377 validate.d \
1378 valtext.d \
1379 variant.d \
1380 wfstream.d \
1381 wincmn.d \
1382 wxchar.d \
1383 wxexpr.d \
1384 zipstrm.d \
1385 zstream.d
ad9edf45
RR
1386
1387MOTIF_GUIOBJS = \
5586805b
RR
1388 xmcombo.o \
1389 accel.o \
1390 app.o \
1391 bitmap.o \
1392 bmpbuttn.o \
1393 brush.o \
1394 button.o \
1395 checkbox.o \
d84b1219 1396 checklst.o \
5586805b
RR
1397 choice.o \
1398 clipbrd.o \
1399 colour.o \
1400 combobox.o \
1401 control.o \
1402 cursor.o \
1403 data.o \
1404 dataobj.o \
1405 dc.o \
1406 dcclient.o \
1407 dcmemory.o \
1408 dcscreen.o \
1409 dialog.o \
1410 filedlg.o \
1411 font.o \
1412 frame.o \
1413 gauge.o \
1414 gdiobj.o \
1415 gsockmot.o \
1416 icon.o \
1417 listbox.o \
1418 main.o \
1419 mdi.o \
1420 menu.o \
1421 menuitem.o \
1422 minifram.o \
1423 msgdlg.o \
1424 palette.o \
1425 pen.o \
1426 radiobox.o \
1427 radiobut.o \
1428 region.o \
1429 scrolbar.o \
1430 settings.o \
1431 slider.o \
d84b1219 1432 spinbutt.o \
5586805b
RR
1433 statbmp.o \
1434 statbox.o \
1435 stattext.o \
1436 textctrl.o \
1437 timer.o \
1438 toolbar.o \
1439 utils.o \
1440 window.o
1441
1442MOTIF_GUIDEPS = \
1443 xmcombo.d \
1444 accel.d \
1445 app.d \
1446 bitmap.d \
1447 bmpbuttn.d \
1448 brush.d \
1449 button.d \
1450 checkbox.d \
d84b1219 1451 checklst.d \
5586805b
RR
1452 choice.d \
1453 clipbrd.d \
1454 colour.d \
1455 combobox.d \
1456 control.d \
1457 cursor.d \
1458 data.d \
1459 dataobj.d \
1460 dc.d \
1461 dcclient.d \
1462 dcmemory.d \
1463 dcscreen.d \
1464 dialog.d \
1465 filedlg.d \
1466 font.d \
1467 frame.d \
1468 gauge.d \
1469 gdiobj.d \
1470 gsockmot.d \
1471 icon.d \
1472 listbox.d \
1473 main.d \
1474 mdi.d \
1475 menu.d \
1476 menuitem.d \
1477 minifram.d \
1478 msgdlg.d \
1479 palette.d \
1480 pen.d \
1481 radiobox.d \
1482 radiobut.d \
1483 region.d \
1484 scrolbar.d \
1485 settings.d \
1486 slider.d \
d84b1219 1487 spinbutt.d \
5586805b
RR
1488 statbmp.d \
1489 statbox.d \
1490 stattext.d \
1491 textctrl.d \
1492 timer.d \
1493 toolbar.d \
1494 utils.d \
1495 window.d
ad9edf45 1496
e4b4d60e 1497MSW_GENERICOBJS = \
5586805b 1498 busyinfo.o \
9d9b7755 1499 calctrl.o \
5586805b
RR
1500 choicdgg.o \
1501 dirdlgg.o \
f85afd4e 1502 grid.o \
5586805b 1503 laywin.o \
dd85fc6b 1504 logg.o \
5586805b
RR
1505 numdlgg.o \
1506 panelg.o \
1507 progdlgg.o \
1508 prop.o \
1509 propform.o \
1510 proplist.o \
1511 sashwin.o \
1512 scrolwin.o \
1513 splitter.o \
1514 statusbr.o \
bf84b0be 1515 tbarsmpl.o \
5586805b
RR
1516 textdlgg.o \
1517 tipdlg.o \
1518 wizard.o
1519
1520MSW_GENERICDEPS = \
1521 busyinfo.d \
9d9b7755 1522 calctrl.d \
5586805b
RR
1523 choicdgg.d \
1524 dirdlgg.d \
f85afd4e 1525 grid.d \
5586805b 1526 laywin.d \
dd85fc6b 1527 logg.d \
5586805b
RR
1528 numdlgg.d \
1529 panelg.d \
1530 progdlgg.d \
1531 prop.d \
1532 propform.d \
1533 proplist.d \
1534 sashwin.d \
1535 scrolwin.d \
1536 splitter.d \
1537 statusbr.d \
bf84b0be 1538 tbarsmpl.d \
5586805b
RR
1539 textdlgg.d \
1540 tipdlg.d \
1541 wizard.d
e4b4d60e
RR
1542
1543MSW_COMMONOBJS = \
80d895cd 1544 parser.o \
1dd989e1 1545 appcmn.o \
5586805b 1546 choiccmn.o \
b068c4e8 1547 clipcmn.o \
2a36259f 1548 cmdline.o \
5586805b
RR
1549 cmndata.o \
1550 config.o \
1551 ctrlcmn.o \
6c8a980f 1552 ctrlsub.o \
bf84b0be 1553 datetime.o \
5586805b
RR
1554 datstrm.o \
1555 db.o \
1556 dbtable.o \
1557 dcbase.o \
1558 dlgcmn.o \
c4933157 1559 dobjcmn.o \
5586805b
RR
1560 docmdi.o \
1561 docview.o \
1562 dynarray.o \
1563 dynlib.o \
15b83243 1564 encconv.o \
5586805b
RR
1565 event.o \
1566 extended.o \
1567 ffile.o \
1568 file.o \
1569 fileconf.o \
1570 filefn.o \
1571 filesys.o \
5e014a0c 1572 fontcmn.o \
8487f887 1573 fontmap.o \
5586805b
RR
1574 framecmn.o \
1575 fs_inet.o \
1576 fs_zip.o \
1577 ftp.o \
1578 gdicmn.o \
1579 gifdecod.o \
1580 hash.o \
1581 helpbase.o \
1582 http.o \
5e014a0c 1583 imagall.o \
5586805b
RR
1584 imagbmp.o \
1585 image.o \
1586 imaggif.o \
1587 imagjpeg.o \
75ceb69d 1588 imagpcx.o \
5586805b
RR
1589 imagpng.o \
1590 imagpnm.o \
c7a2bf27 1591 imagtiff.o \
5586805b
RR
1592 intl.o \
1593 ipcbase.o \
1594 layout.o \
6c8a980f 1595 lboxcmn.o \
5586805b
RR
1596 list.o \
1597 log.o \
bf84b0be 1598 longlong.o \
5586805b 1599 memory.o \
3dfac970 1600 menucmn.o \
5586805b
RR
1601 mimetype.o \
1602 module.o \
1603 mstream.o \
1604 object.o \
1605 objstrm.o \
37667812 1606 odbc.o \
5586805b
RR
1607 paper.o \
1608 prntbase.o \
1609 process.o \
1610 protocol.o \
1611 resource.o \
1612 sckaddr.o \
1613 sckfile.o \
1614 sckipc.o \
1615 sckstrm.o \
ae8f5769 1616 serbase.o \
5586805b
RR
1617 sizer.o \
1618 socket.o \
1619 strconv.o \
1620 stream.o \
1621 string.o \
1622 tbarbase.o \
1623 textcmn.o \
1624 textfile.o \
5586805b
RR
1625 timercmn.o \
1626 tokenzr.o \
1627 txtstrm.o \
1628 unzip.o \
1629 url.o \
1630 utilscmn.o \
1631 valgen.o \
1632 validate.o \
1633 valtext.o \
1634 variant.o \
1635 wfstream.o \
1636 wincmn.o \
1637 wxchar.o \
1638 wxexpr.o \
1639 zipstrm.o \
1640 zstream.o
1641
1642MSW_COMMONDEPS = \
80d895cd 1643 parser.d \
1dd989e1 1644 appcmn.d \
5586805b 1645 choiccmn.d \
b068c4e8 1646 clipcmn.d \
2a36259f 1647 cmdline.d \
5586805b
RR
1648 cmndata.d \
1649 config.d \
1650 ctrlcmn.d \
6c8a980f 1651 ctrlsub.d \
bf84b0be 1652 datetime.d \
5586805b
RR
1653 datstrm.d \
1654 db.d \
1655 dbtable.d \
1656 dcbase.d \
1657 dlgcmn.d \
c4933157 1658 dobjcmn.d \
5586805b
RR
1659 docmdi.d \
1660 docview.d \
1661 dynarray.d \
1662 dynlib.d \
15b83243 1663 encconv.d \
5586805b
RR
1664 event.d \
1665 extended.d \
1666 ffile.d \
1667 file.d \
1668 fileconf.d \
1669 filefn.d \
1670 filesys.d \
5e014a0c 1671 fontcmn.d \
8487f887 1672 fontmap.d \
5586805b
RR
1673 framecmn.d \
1674 fs_inet.d \
1675 fs_zip.d \
1676 ftp.d \
1677 gdicmn.d \
1678 gifdecod.d \
1679 hash.d \
1680 helpbase.d \
1681 http.d \
5e014a0c 1682 imagall.d \
5586805b
RR
1683 imagbmp.d \
1684 image.d \
1685 imaggif.d \
1686 imagjpeg.d \
75ceb69d 1687 imagpcx.d \
5586805b
RR
1688 imagpng.d \
1689 imagpnm.d \
c7a2bf27 1690 imagtiff.d \
5586805b
RR
1691 intl.d \
1692 ipcbase.d \
1693 layout.d \
6c8a980f 1694 lboxcmn.d \
5586805b
RR
1695 list.d \
1696 log.d \
bf84b0be 1697 longlong.d \
5586805b 1698 memory.d \
3dfac970 1699 menucmn.d \
5586805b
RR
1700 mimetype.d \
1701 module.d \
1702 mstream.d \
1703 object.d \
1704 objstrm.d \
37667812 1705 odbc.d \
5586805b
RR
1706 paper.d \
1707 prntbase.d \
1708 process.d \
1709 protocol.d \
1710 resource.d \
1711 sckaddr.d \
1712 sckfile.d \
1713 sckipc.d \
1714 sckstrm.d \
ae8f5769 1715 serbase.d \
5586805b
RR
1716 sizer.d \
1717 socket.d \
1718 strconv.d \
1719 stream.d \
1720 string.d \
1721 tbarbase.d \
1722 textcmn.d \
1723 textfile.d \
5586805b
RR
1724 timercmn.d \
1725 tokenzr.d \
1726 txtstrm.d \
1727 unzip.d \
1728 url.d \
1729 utilscmn.d \
1730 valgen.d \
1731 validate.d \
1732 valtext.d \
1733 variant.d \
1734 wfstream.d \
1735 wincmn.d \
1736 wxchar.d \
1737 wxexpr.d \
1738 zipstrm.d \
1739 zstream.d
e4b4d60e
RR
1740
1741MSW_GUIOBJS = \
5586805b
RR
1742 accel.o \
1743 app.o \
1744 bitmap.o \
1745 bmpbuttn.o \
1746 brush.o \
1747 button.o \
1748 caret.o \
1749 checkbox.o \
1750 checklst.o \
1751 choice.o \
1752 clipbrd.o \
1753 colordlg.o \
1754 colour.o \
1755 combobox.o \
1756 control.o \
1757 curico.o \
1758 cursor.o \
1759 data.o \
1760 dc.o \
1761 dcclient.o \
1762 dcmemory.o \
1763 dcprint.o \
1764 dcscreen.o \
1765 dde.o \
1766 dialog.o \
c7a2bf27 1767 dialup.o \
5586805b
RR
1768 dib.o \
1769 dibutils.o \
e694c22c 1770 dir.o \
5586805b
RR
1771 dragimag.o \
1772 filedlg.o \
1773 font.o \
1774 fontdlg.o \
4b59bea3 1775 fontenum.o \
8487f887 1776 fontutil.o \
5586805b
RR
1777 frame.o \
1778 gauge95.o \
f048e32f 1779 gdiimage.o \
5586805b 1780 gdiobj.o \
8ec2b484 1781 gsocket.o \
5586805b
RR
1782 helpwin.o \
1783 icon.o \
1784 imaglist.o \
1785 joystick.o \
1786 listbox.o \
1787 listctrl.o \
1788 main.o \
1789 mdi.o \
1790 menu.o \
1791 menuitem.o \
1792 metafile.o \
1793 minifram.o \
1794 msgdlg.o \
1795 nativdlg.o \
1796 notebook.o \
1797 ownerdrw.o \
1798 palette.o \
1799 pen.o \
1800 penwin.o \
5586805b
RR
1801 printdlg.o \
1802 printwin.o \
1803 radiobox.o \
1804 radiobut.o \
1805 regconf.o \
1806 region.o \
1807 registry.o \
1808 scrolbar.o \
1809 settings.o \
1810 slider95.o \
1811 spinbutt.o \
791a2102 1812 spinctrl.o \
5586805b
RR
1813 statbmp.o \
1814 statbox.o \
1815 statbr95.o \
1816 statline.o \
1817 stattext.o \
1818 tabctrl.o \
1819 taskbar.o \
1820 tbar95.o \
1821 textctrl.o \
1822 thread.o \
1823 timer.o \
1824 tooltip.o \
1825 treectrl.o \
1826 utils.o \
1827 utilsexc.o \
1828 wave.o \
1829 window.o \
1830 xpmhand.o
1831
1832MSW_GUIDEPS = \
1833 accel.d \
1834 app.d \
1835 bitmap.d \
1836 bmpbuttn.d \
1837 brush.d \
1838 button.d \
1839 caret.d \
1840 checkbox.d \
1841 checklst.d \
1842 choice.d \
1843 clipbrd.d \
1844 colordlg.d \
1845 colour.d \
1846 combobox.d \
1847 control.d \
1848 curico.d \
1849 cursor.d \
1850 data.d \
1851 dc.d \
1852 dcclient.d \
1853 dcmemory.d \
1854 dcprint.d \
1855 dcscreen.d \
1856 dde.d \
1857 dialog.d \
c7a2bf27 1858 dialup.d \
5586805b
RR
1859 dib.d \
1860 dibutils.d \
e694c22c 1861 dir.d \
5586805b
RR
1862 dragimag.d \
1863 filedlg.d \
1864 font.d \
1865 fontdlg.d \
4b59bea3 1866 fontenum.d \
8487f887 1867 fontutil.d \
5586805b
RR
1868 frame.d \
1869 gauge95.d \
f048e32f 1870 gdiimage.d \
5586805b 1871 gdiobj.d \
8ec2b484 1872 gsocket.d \
5586805b
RR
1873 helpwin.d \
1874 icon.d \
1875 imaglist.d \
1876 joystick.d \
1877 listbox.d \
1878 listctrl.d \
1879 main.d \
1880 mdi.d \
1881 menu.d \
1882 menuitem.d \
1883 metafile.d \
1884 minifram.d \
1885 msgdlg.d \
1886 nativdlg.d \
1887 notebook.d \
1888 ownerdrw.d \
1889 palette.d \
1890 pen.d \
1891 penwin.d \
5586805b
RR
1892 printdlg.d \
1893 printwin.d \
1894 radiobox.d \
1895 radiobut.d \
1896 regconf.d \
1897 region.d \
1898 registry.d \
1899 scrolbar.d \
1900 settings.d \
1901 slider95.d \
1902 spinbutt.d \
791a2102 1903 spinctrl.d \
5586805b
RR
1904 statbmp.d \
1905 statbox.d \
1906 statbr95.d \
1907 statline.d \
1908 stattext.d \
1909 tabctrl.d \
1910 taskbar.d \
1911 tbar95.d \
1912 textctrl.d \
1913 thread.d \
1914 timer.d \
1915 tooltip.d \
1916 treectrl.d \
1917 utils.d \
1918 utilsexc.d \
1919 wave.d \
1920 window.d \
1921 xpmhand.d
e4b4d60e 1922
9260520f
VZ
1923PM_GENERICOBJS = \
1924 busyinfo.o \
1925 calctrl.o \
1926 caret.o \
1927 choicdgg.o \
1928 colrdlgg.o \
1929 dcpsg.o \
1930 grid.o \
1931 helpext.o \
1932 helphtml.o \
1933 helpwxht.o \
1934 helpxlp.o \
1935 imaglist.o \
1936 laywin.o \
1937 listctrl.o \
1938 logg.o \
1939 msgdlgg.o \
1940 numdlgg.o \
1941 panelg.o \
1942 printps.o \
1943 prntdlgg.o \
1944 progdlgg.o \
1945 prop.o \
1946 propform.o \
1947 proplist.o \
1948 sashwin.o \
1949 scrolwin.o \
1950 splitter.o \
1951 statusbr.o \
1952 tbarsmpl.o \
1953 textdlgg.o \
1954 tipdlg.o \
1955 treectrl.o \
1956 wizard.o
1957
1958PM_GENERICDEPS = \
1959 busyinfo.d \
1960 calctrl.d \
1961 caret.d \
1962 choicdgg.d \
1963 colrdlgg.d \
1964 dcpsg.d \
1965 grid.d \
1966 helpext.d \
1967 helphtml.d \
1968 helpwxht.d \
1969 helpxlp.d \
1970 imaglist.d \
1971 laywin.d \
1972 listctrl.d \
1973 logg.d \
1974 msgdlgg.d \
1975 numdlgg.d \
1976 panelg.d \
1977 printps.d \
1978 prntdlgg.d \
1979 progdlgg.d \
1980 prop.d \
1981 propform.d \
1982 proplist.d \
1983 sashwin.d \
1984 scrolwin.d \
1985 splitter.d \
1986 statusbr.d \
1987 tbarsmpl.d \
1988 textdlgg.d \
1989 tipdlg.d \
1990 treectrl.d \
1991 wizard.d
1992
1993PM_COMMONOBJS = \
1994 parser.o \
1995 appcmn.o \
1996 choiccmn.o \
1997 clipcmn.o \
1998 cmdline.o \
1999 cmndata.o \
2000 config.o \
2001 ctrlcmn.o \
2002 ctrlsub.o \
2003 datetime.o \
2004 datstrm.o \
2005 db.o \
2006 dbtable.o \
2007 dcbase.o \
2008 dlgcmn.o \
2009 dobjcmn.o \
2010 docmdi.o \
2011 docview.o \
2012 dynarray.o \
2013 dynlib.o \
2014 encconv.o \
2015 event.o \
2016 extended.o \
2017 ffile.o \
2018 file.o \
2019 fileconf.o \
2020 filefn.o \
2021 filesys.o \
2022 fontcmn.o \
2023 fontmap.o \
2024 framecmn.o \
2025 fs_inet.o \
2026 fs_zip.o \
2027 ftp.o \
2028 gdicmn.o \
2029 gifdecod.o \
2030 hash.o \
2031 helpbase.o \
2032 http.o \
2033 imagall.o \
2034 imagbmp.o \
2035 image.o \
2036 imaggif.o \
2037 imagjpeg.o \
2038 imagpcx.o \
2039 imagpng.o \
2040 imagpnm.o \
2041 imagtiff.o \
2042 intl.o \
2043 ipcbase.o \
2044 layout.o \
2045 lboxcmn.o \
2046 list.o \
2047 log.o \
2048 longlong.o \
2049 memory.o \
2050 menucmn.o \
2051 mimetype.o \
2052 module.o \
2053 mstream.o \
2054 object.o \
2055 objstrm.o \
2056 odbc.o \
2057 paper.o \
2058 prntbase.o \
2059 process.o \
2060 protocol.o \
2061 resource.o \
2062 sckaddr.o \
2063 sckfile.o \
2064 sckipc.o \
2065 sckstrm.o \
2066 serbase.o \
2067 sizer.o \
2068 socket.o \
2069 strconv.o \
2070 stream.o \
2071 string.o \
2072 tbarbase.o \
2073 textcmn.o \
2074 textfile.o \
2075 timercmn.o \
2076 tokenzr.o \
2077 txtstrm.o \
2078 unzip.o \
2079 url.o \
2080 utilscmn.o \
2081 valgen.o \
2082 validate.o \
2083 valtext.o \
2084 variant.o \
2085 wfstream.o \
2086 wincmn.o \
2087 wxchar.o \
2088 wxexpr.o \
2089 zipstrm.o \
2090 zstream.o
2091
2092PM_COMMONDEPS = \
2093 parser.d \
2094 appcmn.d \
2095 choiccmn.d \
2096 clipcmn.d \
2097 cmdline.d \
2098 cmndata.d \
2099 config.d \
2100 ctrlcmn.d \
2101 ctrlsub.d \
2102 datetime.d \
2103 datstrm.d \
2104 db.d \
2105 dbtable.d \
2106 dcbase.d \
2107 dlgcmn.d \
2108 dobjcmn.d \
2109 docmdi.d \
2110 docview.d \
2111 dynarray.d \
2112 dynlib.d \
2113 encconv.d \
2114 event.d \
2115 extended.d \
2116 ffile.d \
2117 file.d \
2118 fileconf.d \
2119 filefn.d \
2120 filesys.d \
2121 fontcmn.d \
2122 fontmap.d \
2123 framecmn.d \
2124 fs_inet.d \
2125 fs_zip.d \
2126 ftp.d \
2127 gdicmn.d \
2128 gifdecod.d \
2129 hash.d \
2130 helpbase.d \
2131 http.d \
2132 imagall.d \
2133 imagbmp.d \
2134 image.d \
2135 imaggif.d \
2136 imagjpeg.d \
2137 imagpcx.d \
2138 imagpng.d \
2139 imagpnm.d \
2140 imagtiff.d \
2141 intl.d \
2142 ipcbase.d \
2143 layout.d \
2144 lboxcmn.d \
2145 list.d \
2146 log.d \
2147 longlong.d \
2148 memory.d \
2149 menucmn.d \
2150 mimetype.d \
2151 module.d \
2152 mstream.d \
2153 object.d \
2154 objstrm.d \
2155 odbc.d \
2156 paper.d \
2157 prntbase.d \
2158 process.d \
2159 protocol.d \
2160 resource.d \
2161 sckaddr.d \
2162 sckfile.d \
2163 sckipc.d \
2164 sckstrm.d \
2165 serbase.d \
2166 sizer.d \
2167 socket.d \
2168 strconv.d \
2169 stream.d \
2170 string.d \
2171 tbarbase.d \
2172 textcmn.d \
2173 textfile.d \
2174 timercmn.d \
2175 tokenzr.d \
2176 txtstrm.d \
2177 unzip.d \
2178 url.d \
2179 utilscmn.d \
2180 valgen.d \
2181 validate.d \
2182 valtext.d \
2183 variant.d \
2184 wfstream.d \
2185 wincmn.d \
2186 wxchar.d \
2187 wxexpr.d \
2188 zipstrm.d \
2189 zstream.d
2190
2191PM_GUIOBJS = \
2192 accel.o \
2193 app.o \
2194 bitmap.o \
2195 bmpbuttn.o \
2196 brush.o \
2197 button.o \
2198 checkbox.o \
2199 checklst.o \
2200 choice.o \
2201 clipbrd.o \
2202 colour.o \
2203 combobox.o \
2204 control.o \
2205 cursor.o \
2206 data.o \
2207 dataobj.o \
2208 dc.o \
2209 dcclient.o \
2210 dcmemory.o \
2211 dcprint.o \
2212 dcscreen.o \
2213 dialog.o \
2214 dirdlg.o \
2215 dnd.o \
2216 filedlg.o \
2217 font.o \
2218 fontdlg.o \
2219 frame.o \
2220 gauge.o \
2221 gdiimage.o \
2222 gdiobj.o \
2223 gsocket.o \
2224 helpwin.o \
2225 icon.o \
2226 iniconf.o \
2227 joystick.o \
2228 listbox.o \
2229 main.o \
2230 mdi.o \
2231 menu.o \
2232 menuitem.o \
2233 metafile.o \
2234 minifram.o \
2235 msgdlg.o \
2236 nativdlg.o \
2237 notebook.o \
2238 ownerdrw.o \
2239 palette.o \
2240 pen.o \
2241 print.o \
2242 radiobox.o \
2243 radiobut.o \
2244 region.o \
2245 scrolbar.o \
2246 settings.o \
2247 slider.o \
2248 spinbutt.o \
2249 spinctrl.o \
2250 statbmp.o \
2251 statbox.o \
2252 statline.o \
2253 stattext.o \
2254 tabctrl.o \
2255 taskbar.o \
2256 textctrl.o \
2257 thread.o \
2258 timer.o \
2259 toolbar.o \
2260 tooltip.o \
2261 utils.o \
2262 utilsexc.o \
2263 wave.o \
2264 window.o
2265
2266PM_GUIDEPS = \
2267 accel.d \
2268 app.d \
2269 bitmap.d \
2270 bmpbuttn.d \
2271 brush.d \
2272 button.d \
2273 checkbox.d \
2274 checklst.d \
2275 choice.d \
2276 clipbrd.d \
2277 colour.d \
2278 combobox.d \
2279 control.d \
2280 cursor.d \
2281 data.d \
2282 dataobj.d \
2283 dc.d \
2284 dcclient.d \
2285 dcmemory.d \
2286 dcprint.d \
2287 dcscreen.d \
2288 dialog.d \
2289 dirdlg.d \
2290 dnd.d \
2291 filedlg.d \
2292 font.d \
2293 fontdlg.d \
2294 frame.d \
2295 gauge.d \
2296 gdiimage.d \
2297 gdiobj.d \
2298 gsocket.d \
2299 helpwin.d \
2300 icon.d \
2301 iniconf.d \
2302 joystick.d \
2303 listbox.d \
2304 main.d \
2305 mdi.d \
2306 menu.d \
2307 menuitem.d \
2308 metafile.d \
2309 minifram.d \
2310 msgdlg.d \
2311 nativdlg.d \
2312 notebook.d \
2313 ownerdrw.d \
2314 palette.d \
2315 pen.d \
2316 print.d \
2317 radiobox.d \
2318 radiobut.d \
2319 region.d \
2320 scrolbar.d \
2321 settings.d \
2322 slider.d \
2323 spinbutt.d \
2324 spinctrl.d \
2325 statbmp.d \
2326 statbox.d \
2327 statline.d \
2328 stattext.d \
2329 tabctrl.d \
2330 taskbar.d \
2331 textctrl.d \
2332 thread.d \
2333 timer.d \
2334 toolbar.d \
2335 tooltip.d \
2336 utils.d \
2337 utilsexc.d \
2338 wave.d \
2339 window.d
2340
37667812 2341BASE_OBJS = \
791a2102 2342 init.o \
1dd989e1 2343 appcmn.o \
2a36259f 2344 cmdline.o \
37667812 2345 config.o \
bf84b0be 2346 datetime.o \
37667812
VZ
2347 dynarray.o \
2348 dynlib.o \
2349 event.o \
2350 extended.o \
2351 ffile.o \
2352 file.o \
2353 fileconf.o \
2354 filefn.o \
2355 filesys.o \
2356 hash.o \
37667812
VZ
2357 intl.o \
2358 list.o \
2359 log.o \
bf84b0be 2360 longlong.o \
37667812
VZ
2361 mimetype.o \
2362 module.o \
2363 object.o \
2364 process.o \
2365 strconv.o \
2366 stream.o \
2367 string.o \
2368 textfile.o \
37667812
VZ
2369 timercmn.o \
2370 tokenzr.o \
2371 txtstrm.o \
2372 utilscmn.o \
2373 variant.o \
e612f101 2374 wfstream.o \
37667812 2375 wxchar.o \
e694c22c 2376 dir.o \
c7a2bf27 2377 threadpsx.o \
37667812
VZ
2378 utilsunx.o
2379
2380BASE_DEPS = \
791a2102 2381 init.d \
1dd989e1 2382 appcmn.d \
2a36259f 2383 cmdline.d \
37667812 2384 config.d \
bf84b0be 2385 datetime.d \
37667812
VZ
2386 dynarray.d \
2387 dynlib.d \
2388 event.d \
2389 extended.d \
2390 ffile.d \
2391 file.d \
2392 fileconf.d \
2393 filefn.d \
2394 filesys.d \
2395 hash.d \
37667812
VZ
2396 intl.d \
2397 list.d \
2398 log.d \
bf84b0be 2399 longlong.d \
37667812
VZ
2400 mimetype.d \
2401 module.d \
2402 object.d \
2403 process.d \
2404 strconv.d \
2405 stream.d \
2406 string.d \
2407 textfile.d \
37667812
VZ
2408 timercmn.d \
2409 tokenzr.d \
2410 txtstrm.d \
2411 utilscmn.d \
2412 variant.d \
e612f101 2413 wfstream.d \
37667812 2414 wxchar.d \
e694c22c 2415 dir.d \
c7a2bf27 2416 threadpsx.d \
37667812
VZ
2417 utilsunx.d
2418
ad9edf45 2419HTMLOBJS = \
8ec2b484
HH
2420 helpctrl.o \
2421 helpdata.o \
2422 helpfrm.o \
5586805b 2423 htmlcell.o \
69941f05
VS
2424 htmlfilt.o \
2425 htmlpars.o \
5586805b
RR
2426 htmltag.o \
2427 htmlwin.o \
3ce369e6 2428 htmprint.o \
336e2d44 2429 m_dflist.o \
69941f05
VS
2430 m_fonts.o \
2431 m_hline.o \
2432 m_image.o \
2433 m_layout.o \
2434 m_links.o \
2435 m_list.o \
2436 m_pre.o \
2437 m_tables.o \
69941f05 2438 winpars.o
5586805b
RR
2439
2440HTMLDEPS = \
8ec2b484
HH
2441 helpctrl.d \
2442 helpdata.d \
2443 helpfrm.d \
5586805b 2444 htmlcell.d \
69941f05
VS
2445 htmlfilt.d \
2446 htmlpars.d \
5586805b
RR
2447 htmltag.d \
2448 htmlwin.d \
3ce369e6 2449 htmprint.d \
336e2d44 2450 m_dflist.d \
69941f05
VS
2451 m_fonts.d \
2452 m_hline.d \
2453 m_image.d \
2454 m_layout.d \
2455 m_links.d \
2456 m_list.d \
2457 m_pre.d \
2458 m_tables.d \
69941f05 2459 winpars.d
ad9edf45 2460
37667812 2461UNIX_OBJS = \
275abf24 2462 dialup.o \
e694c22c 2463 dir.o \
3dfac970 2464 fontenum.o \
8487f887 2465 fontutil.o \
c5342938 2466 gsocket.o \
5586805b
RR
2467 threadpsx.o \
2468 utilsunx.o
2469
37667812 2470UNIX_DEPS = \
275abf24 2471 dialup.d \
e694c22c 2472 dir.d \
3dfac970 2473 fontenum.d \
8487f887 2474 fontutil.d \
c5342938 2475 gsocket.d \
5586805b
RR
2476 threadpsx.d \
2477 utilsunx.d
ad9edf45
RR
2478
2479ZLIBOBJS = \
5586805b
RR
2480 adler32.o \
2481 compress.o \
2482 crc32.o \
2483 gzio.o \
2484 uncompr.o \
2485 deflate.o \
2486 trees.o \
2487 zutil.o \
2488 inflate.o \
2489 infblock.o \
2490 inftrees.o \
2491 infcodes.o \
2492 infutil.o \
2493 inffast.o
ad9edf45
RR
2494
2495PNGOBJS = \
5586805b
RR
2496 png.o \
2497 pngread.o \
2498 pngrtran.o \
2499 pngrutil.o \
2500 pngpread.o \
2501 pngtrans.o \
2502 pngwrite.o \
2503 pngwtran.o \
2504 pngwutil.o \
2505 pngerror.o \
2506 pngmem.o \
2507 pngwio.o \
2508 pngrio.o \
2509 pngget.o \
2510 pngset.o
ad9edf45
RR
2511
2512
2513JPEGOBJS = \
5586805b
RR
2514 jcomapi.o \
2515 jutils.o \
2516 jerror.o \
2517 jmemmgr.o \
2518 jmemnobs.o \
2519 jcapimin.o \
2520 jcapistd.o \
2521 jctrans.o \
2522 jcparam.o \
2523 jdatadst.o \
2524 jcinit.o \
2525 jcmaster.o \
2526 jcmarker.o \
2527 jcmainct.o \
2528 jcprepct.o \
2529 jccoefct.o \
2530 jccolor.o \
2531 jcsample.o \
2532 jchuff.o \
2533 jcphuff.o \
2534 jcdctmgr.o \
2535 jfdctfst.o \
2536 jfdctflt.o \
2537 jfdctint.o \
2538 jdapimin.o \
2539 jdapistd.o \
2540 jdtrans.o \
2541 jdatasrc.o \
2542 jdmaster.o \
2543 jdinput.o \
2544 jdmarker.o \
2545 jdhuff.o \
2546 jdphuff.o \
2547 jdmainct.o \
2548 jdcoefct.o \
2549 jdpostct.o \
2550 jddctmgr.o \
2551 jidctfst.o \
2552 jidctflt.o \
2553 jidctint.o \
2554 jidctred.o \
2555 jdsample.o \
2556 jdcolor.o \
2557 jquant1.o \
2558 jquant2.o \
2559 jdmerge.o
ad9edf45 2560
c7a2bf27
RR
2561TIFFOBJS = \
2562 tif_aux.o \
2563 tif_close.o \
2564 tif_codec.o \
2565 tif_compress.o \
2566 tif_dir.o \
2567 tif_dirinfo.o \
2568 tif_dirread.o \
2569 tif_dirwrite.o \
2570 tif_dumpmode.o \
2571 tif_error.o \
2572 tif_fax3.o \
2573 tif_fax3sm.o \
2574 tif_getimage.o \
2575 tif_jpeg.o \
2576 tif_flush.o \
2577 tif_lzw.o \
b47c832e 2578 tif_luv.o \
c7a2bf27
RR
2579 tif_next.o \
2580 tif_open.o \
2581 tif_packbits.o \
2582 tif_pixarlog.o \
2583 tif_predict.o \
2584 tif_print.o \
2585 tif_read.o \
2586 tif_swab.o \
2587 tif_strip.o \
2588 tif_thunder.o \
2589 tif_tile.o \
2590 tif_unix.o \
2591 tif_version.o \
2592 tif_warning.o \
2593 tif_write.o \
2594 tif_zip.o
2595
a0c79abb 2596IODBC_OBJS = \
e115e771
RR
2597 catalog.o \
2598 connect.o \
2599 dlf.o \
2600 dlproc.o \
2601 execute.o \
2602 fetch.o \
2603 hdbc.o \
2604 henv.o \
2605 herr.o \
2606 hstmt.o \
2607 info.o \
2608 itrace.o \
2609 misc.o \
2610 prepare.o \
2611 result.o
2612
37667812
VZ
2613GUIOBJS = @GUIOBJS@
2614GUIDEPS = @GUIDEPS@
2615GUIHEADERS = @GUIHEADERS@
2616COMMONOBJS = @COMMONOBJS@
2617COMMONDEPS = @COMMONDEPS@
2618GENERICOBJS = @GENERICOBJS@
2619GENERICDEPS = @GENERICDEPS@
2620UNIXOBJS = @UNIXOBJS@
2621UNIXDEPS = @UNIXDEPS@
a0c79abb 2622IODBCOBJS = @IODBCOBJS@
f85afd4e 2623
a0c79abb 2624OBJECTS = @ALL_OBJECTS@
f85afd4e 2625
37667812 2626DEPFILES = @ALL_DEPFILES@
f85afd4e 2627
37667812 2628HEADERS = @ALL_HEADERS@
f85afd4e 2629
1d62a8b4
RR
2630BURNT_LIBRARY_NAME = @BURNT_LIBRARY_NAME@
2631
de87c353 2632all: @WX_ALL@
ad9edf45
RR
2633
2634@WX_LIBRARY_NAME_STATIC@: $(OBJECTS)
4130b487 2635 @$(INSTALL) -d ./lib
ad9edf45
RR
2636 $(AR) $(AROPTIONS) ./lib/$@ $(OBJECTS)
2637 $(RANLIB) ./lib/$@
2638
2639@WX_LIBRARY_NAME_SHARED@: $(OBJECTS)
4130b487 2640 @$(INSTALL) -d ./lib
1d62a8b4 2641 $(SHARED_LD) ./lib/$@ $(BURNT_LIBRARY_NAME) $(OBJECTS) $(EXTRALIBS)
af563b66 2642
de87c353 2643CREATE_LINKS: @WX_LIBRARY_NAME_SHARED@
4130b487
RR
2644 @$(RM) ./lib/@WX_LIBRARY_LINK1@
2645 @$(RM) ./lib/@WX_LIBRARY_LINK2@
2646 @$(RM) ./lib/@WX_LIBRARY_LINK3@
ad9edf45
RR
2647 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK1@
2648 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK2@
2649 $(LN_S) @WX_TARGET_LIBRARY@ ./lib/@WX_LIBRARY_LINK3@
af563b66 2650
de87c353 2651CREATE_INSTALLED_LINKS: $(libdir)/@WX_LIBRARY_NAME_SHARED@
5586805b
RR
2652 $(RM) $(libdir)/@WX_LIBRARY_LINK1@
2653 $(RM) $(libdir)/@WX_LIBRARY_LINK2@
2654 $(RM) $(libdir)/@WX_LIBRARY_LINK3@
de87c353
RR
2655 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK1@
2656 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK2@
2657 $(LN_S) @WX_LIBRARY_NAME_SHARED@ $(libdir)/@WX_LIBRARY_LINK3@
af563b66 2658
257980e6 2659$(OBJECTS): $(WXDIR)/include/wx/defs.h $(WXDIR)/include/wx/object.h
ad9edf45
RR
2660
2661parser.o: parser.c lexer.c
8636aed8 2662 $(CCLEX) -c $(CFLAGS) $(PICFLAGS) -o $@ parser.c
ad9edf45
RR
2663
2664parser.c: $(COMMDIR)/parser.y lexer.c
2665 $(YACC) $(COMMDIR)/parser.y
2666 @sed -e "s;$(COMMDIR)/y.tab.c;parser.y;g" < y.tab.c | \
2667 sed -e "s/BUFSIZ/5000/g" | \
2668 sed -e "s/YYLMAX 200/YYLMAX 5000/g" | \
2669 sed -e "s/yy/PROIO_yy/g" | \
2670 sed -e "s/input/PROIO_input/g" | \
2671 sed -e "s/unput/PROIO_unput/g" > parser.c
2672 @$(RM) y.tab.c
2673
2674lexer.c: $(COMMDIR)/lexer.l
2675 $(LEX) $(COMMDIR)/lexer.l
9260520f 2676 @sed -e "s;$(COMMDIR)/@LEX_STEM@.c;lexer.l;g" < @LEX_STEM@.c | \
ad9edf45
RR
2677 sed -e "s/yy/PROIO_yy/g" | \
2678 sed -e "s/input/PROIO_input/g" | \
2679 sed -e "s/unput/PROIO_unput/g" > lexer.c
9260520f 2680 @$(RM) @LEX_STEM@.c
ad9edf45 2681
5586805b
RR
2682-include $(DEPFILES)
2683
dad6c0ea
VZ
2684afminstall:
2685 $(INSTALL) -d $(datadir)
2686 $(INSTALL) -d $(datadir)/wx
2687 $(INSTALL) -d $(datadir)/wx/afm
2688 $(INSTALL) -d $(datadir)/wx/gs_afm
2689 $(INSTALL_DATA) $(top_srcdir)/misc/afm/*.afm $(datadir)/wx/afm
2690 $(INSTALL_DATA) $(top_srcdir)/misc/gs_afm/*.afm $(datadir)/wx/gs_afm
2691
257980e6 2692preinstall: $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(top_builddir)/wx-config
ad9edf45
RR
2693 @echo " "
2694 @echo " Installing wxWindows..."
2695 @echo " "
2696
8b17ba72
RR
2697 $(INSTALL) -d $(prefix)
2698 $(INSTALL) -d $(bindir)
2699 $(INSTALL) -d $(libdir)
2700
ad9edf45
RR
2701 $(INSTALL_SCRIPT) $(top_builddir)/wx-config $(bindir)/wx-config
2702 $(INSTALL_PROGRAM) $(top_builddir)/lib/@WX_TARGET_LIBRARY@ $(libdir)/@WX_TARGET_LIBRARY@
8b17ba72
RR
2703
2704 $(INSTALL) -d $(libdir)/wx
2705 $(INSTALL) -d $(libdir)/wx/include
2706 $(INSTALL) -d $(libdir)/wx/include/wx
2707 $(INSTALL) -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@
257980e6 2708 $(INSTALL_DATA) $(top_builddir)/include/wx/@TOOLKIT_DIR@/setup.h $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
af563b66 2709
8b17ba72 2710 $(INSTALL) -d $(includedir)/wx
9260520f
VZ
2711 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/@TOOLKIT_DIR@; fi
2712 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/html; fi
2713 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/protocol; fi
2714 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/unix; fi
2715 @if test "$(USE_GUI)" = 1; then $(INSTALL) -d $(includedir)/wx/generic; fi
ad9edf45
RR
2716 @list='$(HEADERS)'; for p in $$list; do \
2717 $(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p; \
2718 echo "$(INSTALL_DATA) $(top_srcdir)/include/wx/$$p $(includedir)/wx/$$p"; \
2719 done
9260520f 2720
ad9edf45 2721write_message:
549c6f67 2722 @echo " "
ad9edf45 2723 @echo " The installation of wxWindows is finished. On certain"
c09ab26a
RR
2724 @echo " platforms (e.g. Linux) you'll now have to run ldconfig"
2725 @echo " if you installed a shared library."
ad9edf45
RR
2726 @echo " "
2727 @echo " wxWindows comes with no guarantees and doesn't claim"
2728 @echo " to be suitable for any purpose."
2729 @echo " "
2730 @echo " Read the wxWindows Licence on licencing conditions."
2731 @echo " "
2732
dad6c0ea 2733install: preinstall @AFMINSTALL@ @WX_ALL_INSTALLED@ write_message
ad9edf45
RR
2734
2735uninstall:
2736 @echo " "
2737 @echo " Uninstalling wxWindows..."
2738 @echo " "
2739 @echo " Removing library..."
8b17ba72
RR
2740 @$(RM) $(libdir)/@WX_TARGET_LIBRARY@
2741 @$(RM) $(libdir)/@WX_LIBRARY_LINK1@
2742 @$(RM) $(libdir)/@WX_LIBRARY_LINK2@
2743 @$(RM) $(libdir)/@WX_LIBRARY_LINK3@
ad9edf45 2744 @echo " Removing helper files..."
8b17ba72
RR
2745 @$(RM) $(libdir)/wx/include/wx/@TOOLKIT_DIR@/setup.h
2746 @$(RM) $(bindir)/wx-config
a6f3598d
RR
2747 @$(RM) $(datadir)/wx/afm/*
2748 @$(RM) $(datadir)/wx/gs_afm/*
2749 @rmdir $(datadir)/wx/gs_afm
2750 @rmdir $(datadir)/wx/afm
2751 @rmdir $(datadir)/wx
ad9edf45
RR
2752 @echo " Removing headers..."
2753 @list='$(HEADERS)'; for p in $$list; do \
8b17ba72 2754 $(RM) $(includedir)/wx/$$p; \
ad9edf45
RR
2755 done
2756 @echo " Removing directories..."
2757 @if test -d $(libdir)/wx/include/wx/@TOOLKIT_DIR@; then rmdir $(libdir)/wx/include/wx/@TOOLKIT_DIR@; fi
2758 @if test -d $(libdir)/wx/include/wx; then rmdir $(libdir)/wx/include/wx; fi
2759 @if test -d $(libdir)/wx/include; then rmdir $(libdir)/wx/include; fi
2760 @if test -d $(libdir)/wx; then rmdir $(libdir)/wx; fi
2761 @if test -d $(includedir)/wx/gtk; then rmdir $(includedir)/wx/gtk; fi
2762 @if test -d $(includedir)/wx/motif; then rmdir $(includedir)/wx/motif; fi
a6f3598d 2763 @if test -d $(includedir)/wx/msw; then rmdir $(includedir)/wx/msw; fi
ad9edf45
RR
2764 @if test -d $(includedir)/wx/html; then rmdir $(includedir)/wx/html; fi
2765 @if test -d $(includedir)/wx/unix; then rmdir $(includedir)/wx/unix; fi
2766 @if test -d $(includedir)/wx/generic; then rmdir $(includedir)/wx/generic; fi
2767 @if test -d $(includedir)/wx/protocol; then rmdir $(includedir)/wx/protocol; fi
2768 @if test -d $(includedir)/wx; then rmdir $(includedir)/wx; fi
2769
4cb122de 2770ALL_DIST:
a4aad961
RR
2771 mkdir _dist_dir
2772 mkdir $(DISTDIR)
2773 cp $(WXDIR)/wx$(TOOLKIT).spec $(DISTDIR)
257980e6 2774 cp $(WXDIR)/configure.in $(DISTDIR)
a4aad961
RR
2775 cp $(WXDIR)/configure $(DISTDIR)
2776 cp $(WXDIR)/config.sub $(DISTDIR)
2777 cp $(WXDIR)/config.guess $(DISTDIR)
2778 cp $(WXDIR)/install-sh $(DISTDIR)
2779 cp $(WXDIR)/mkinstalldirs $(DISTDIR)
2780 cp $(WXDIR)/wx-config.in $(DISTDIR)
2781 cp $(WXDIR)/setup.h.in $(DISTDIR)
2782 cp $(WXDIR)/Makefile.in $(DISTDIR)
2783 cp $(DOCDIR)/lgpl.txt $(DISTDIR)/COPYING.LIB
2784 cp $(DOCDIR)/licence.txt $(DISTDIR)/LICENCE.txt
2785 cp $(DOCDIR)/symbols.txt $(DISTDIR)/SYMBOLS.txt
2786 cp $(DOCDIR)/$(TOOLKITDIR)/install.txt $(DISTDIR)/INSTALL.txt
2787 cp $(DOCDIR)/$(TOOLKITDIR)/changes.txt $(DISTDIR)/CHANGES.txt
2788 cp $(DOCDIR)/$(TOOLKITDIR)/readme.txt $(DISTDIR)/README.txt
2789 cp $(DOCDIR)/$(TOOLKITDIR)/todo.txt $(DISTDIR)/TODO.txt
2790 mkdir $(DISTDIR)/include
2791 mkdir $(DISTDIR)/include/wx
2792 mkdir $(DISTDIR)/include/wx/$(TOOLKITDIR)
2793 mkdir $(DISTDIR)/include/wx/generic
2794 mkdir $(DISTDIR)/include/wx/html
2795 mkdir $(DISTDIR)/include/wx/unix
2796 mkdir $(DISTDIR)/include/wx/protocol
2797 cp $(INCDIR)/wx/*.h $(DISTDIR)/include/wx
1e8d2f69 2798 cp $(INCDIR)/wx/*.inl $(DISTDIR)/include/wx
a4aad961
RR
2799 cp $(INCDIR)/wx/*.cpp $(DISTDIR)/include/wx
2800 cp $(INCDIR)/wx/generic/*.h $(DISTDIR)/include/wx/generic
2801 cp $(INCDIR)/wx/generic/*.xpm $(DISTDIR)/include/wx/generic
2802 cp $(INCDIR)/wx/html/*.h $(DISTDIR)/include/wx/html
2803 cp $(INCDIR)/wx/unix/*.h $(DISTDIR)/include/wx/unix
2804 cp $(INCDIR)/wx/protocol/*.h $(DISTDIR)/include/wx/protocol
4cb122de
RR
2805 mkdir $(DISTDIR)/src
2806 mkdir $(DISTDIR)/src/common
2807 mkdir $(DISTDIR)/src/generic
2808 mkdir $(DISTDIR)/src/html
2809 mkdir $(DISTDIR)/src/html/bitmaps
2810 mkdir $(DISTDIR)/src/$(TOOLKITDIR)
2811 mkdir $(DISTDIR)/src/unix
2812 mkdir $(DISTDIR)/src/png
2813 mkdir $(DISTDIR)/src/jpeg
1d62a8b4 2814 mkdir $(DISTDIR)/src/tiff
4cb122de 2815 mkdir $(DISTDIR)/src/zlib
c09ab26a 2816 mkdir $(DISTDIR)/src/iodbc
4cb122de
RR
2817 cp $(SRCDIR)/*.in $(DISTDIR)/src
2818 cp $(COMMDIR)/*.cpp $(DISTDIR)/src/common
2819 cp $(COMMDIR)/*.c $(DISTDIR)/src/common
2820 cp $(COMMDIR)/*.inc $(DISTDIR)/src/common
2821 cp $(COMMDIR)/*.l $(DISTDIR)/src/common
2822 cp $(COMMDIR)/*.h $(DISTDIR)/src/common
2823 cp $(COMMDIR)/*.y $(DISTDIR)/src/common
2824 cp $(GENDIR)/*.cpp $(DISTDIR)/src/generic
2825 cp $(HTMLDIR)/*.cpp $(DISTDIR)/src/html
4cb122de 2826 cp $(HTMLDIR)/bitmaps/*.xpm $(DISTDIR)/src/html/bitmaps
4cb122de
RR
2827 cp $(UNIXDIR)/*.c $(DISTDIR)/src/unix
2828 cp $(UNIXDIR)/*.cpp $(DISTDIR)/src/unix
2829 cp $(PNGDIR)/*.h $(DISTDIR)/src/png
2830 cp $(PNGDIR)/*.c $(DISTDIR)/src/png
2831 cp $(PNGDIR)/README $(DISTDIR)/src/png
2832 cp $(ZLIBDIR)/*.h $(DISTDIR)/src/zlib
2833 cp $(ZLIBDIR)/*.c $(DISTDIR)/src/zlib
2834 cp $(ZLIBDIR)/README $(DISTDIR)/src/zlib
2835 cp $(JPEGDIR)/*.h $(DISTDIR)/src/jpeg
2836 cp $(JPEGDIR)/*.c $(DISTDIR)/src/jpeg
2837 cp $(JPEGDIR)/README $(DISTDIR)/src/jpeg
1d62a8b4
RR
2838 cp $(TIFFDIR)/*.h $(DISTDIR)/src/tiff
2839 cp $(TIFFDIR)/*.c $(DISTDIR)/src/tiff
2840 cp $(TIFFDIR)/README $(DISTDIR)/src/tiff
c09ab26a
RR
2841 cp $(ODBCDIR)/*.h $(DISTDIR)/src/iodbc
2842 cp $(ODBCDIR)/*.c $(DISTDIR)/src/iodbc
2843 cp $(ODBCDIR)/*.ci $(DISTDIR)/src/iodbc
2844 cp $(ODBCDIR)/*.exp $(DISTDIR)/src/iodbc
2845 cp $(ODBCDIR)/README $(DISTDIR)/src/iodbc
2846 cp $(ODBCDIR)/NEWS $(DISTDIR)/src/iodbc
2847 cp $(ODBCDIR)/Changes.log $(DISTDIR)/src/iodbc
a4aad961
RR
2848
2849GTK_DIST:
4cb122de 2850 cp $(WXDIR)/wxGTK.spec $(DISTDIR)
a4aad961 2851 cp $(INCDIR)/wx/gtk/*.h $(DISTDIR)/include/wx/gtk
4cb122de
RR
2852 cp $(INCDIR)/wx/gtk/*.xpm $(DISTDIR)/include/wx/gtk
2853 cp $(GTKDIR)/*.cpp $(DISTDIR)/src/gtk
2854 cp $(GTKDIR)/*.c $(DISTDIR)/src/gtk
2855 cp $(GTKDIR)/*.xbm $(DISTDIR)/src/gtk
a4aad961
RR
2856
2857MOTIF_DIST:
4cb122de 2858 cp $(WXDIR)/wxMOTIF.spec $(DISTDIR)
a4aad961 2859 cp $(INCDIR)/wx/motif/*.h $(DISTDIR)/include/wx/motif
4cb122de
RR
2860 cp $(MOTIFDIR)/*.cpp $(DISTDIR)/src/motif
2861 cp $(MOTIFDIR)/*.xbm $(DISTDIR)/src/motif
2862 mkdir $(DISTDIR)/src/motif/xmcombo
2863 cp $(MOTIFDIR)/xmcombo/*.c $(DISTDIR)/src/motif/xmcombo
2864 cp $(MOTIFDIR)/xmcombo/*.h $(DISTDIR)/src/motif/xmcombo
2865 cp $(MOTIFDIR)/xmcombo/copying.txt $(DISTDIR)/src/motif/xmcombo
a4aad961
RR
2866
2867MSW_DIST:
4cb122de 2868 cp $(WXDIR)/wxWINE.spec $(DISTDIR)
a4aad961
RR
2869 cp $(INCDIR)/wx/msw/*.h $(DISTDIR)/include/wx/msw
2870 cp $(INCDIR)/wx/msw/*.cur $(DISTDIR)/include/wx/msw
2871 cp $(INCDIR)/wx/msw/*.ico $(DISTDIR)/include/wx/msw
2872 cp $(INCDIR)/wx/msw/*.bmp $(DISTDIR)/include/wx/msw
2873 cp $(INCDIR)/wx/msw/*.rc $(DISTDIR)/include/wx/msw
4cb122de
RR
2874 cp $(MSWDIR)/*.cpp $(DISTDIR)/src/msw
2875 cp $(MSWDIR)/*.c $(DISTDIR)/src/msw
2876 cp $(MSWDIR)/*.def $(DISTDIR)/src/msw
2877 mkdir $(DISTDIR)/src/msw/ole
2878 cp $(MSWDIR)/ole/*.cpp $(DISTDIR)/src/msw/ole
2879
2880SAMPLES_DIST:
2881 mkdir $(DISTDIR)/samples
2882 cp $(SAMPDIR)/Makefile.in $(DISTDIR)/samples
e9093718 2883
4cb122de
RR
2884 mkdir $(DISTDIR)/samples/bombs
2885 cp $(SAMPDIR)/bombs/Makefile.in $(DISTDIR)/samples/bombs
c4fda16b 2886 cp $(SAMPDIR)/bombs/makefile.unx $(DISTDIR)/samples/bombs
4cb122de
RR
2887 cp $(SAMPDIR)/bombs/*.cpp $(DISTDIR)/samples/bombs
2888 cp $(SAMPDIR)/bombs/*.h $(DISTDIR)/samples/bombs
2889 cp $(SAMPDIR)/bombs/*.xpm $(DISTDIR)/samples/bombs
2890 cp $(SAMPDIR)/bombs/readme.txt $(DISTDIR)/samples/bombs
e9093718 2891
4cb122de
RR
2892 mkdir $(DISTDIR)/samples/caret
2893 cp $(SAMPDIR)/caret/Makefile.in $(DISTDIR)/samples/caret
c4fda16b 2894 cp $(SAMPDIR)/caret/makefile.unx $(DISTDIR)/samples/caret
4cb122de
RR
2895 cp $(SAMPDIR)/caret/*.cpp $(DISTDIR)/samples/caret
2896 cp $(SAMPDIR)/caret/*.xpm $(DISTDIR)/samples/caret
e9093718 2897
1e8d2f69
RR
2898 mkdir $(DISTDIR)/samples/calendar
2899 cp $(SAMPDIR)/calendar/Makefile.in $(DISTDIR)/samples/calendar
2900 cp $(SAMPDIR)/calendar/makefile.unx $(DISTDIR)/samples/calendar
2901 cp $(SAMPDIR)/calendar/*.cpp $(DISTDIR)/samples/calendar
2902
4cb122de
RR
2903 mkdir $(DISTDIR)/samples/config
2904 cp $(SAMPDIR)/config/Makefile.in $(DISTDIR)/samples/config
c4fda16b 2905 cp $(SAMPDIR)/config/makefile.unx $(DISTDIR)/samples/config
4cb122de 2906 cp $(SAMPDIR)/config/*.cpp $(DISTDIR)/samples/config
e9093718 2907
1e8d2f69
RR
2908 mkdir $(DISTDIR)/samples/console
2909 cp $(SAMPDIR)/console/Makefile.in $(DISTDIR)/samples/console
2910 cp $(SAMPDIR)/console/makefile.unx $(DISTDIR)/samples/console
2911 cp $(SAMPDIR)/console/*.cpp $(DISTDIR)/samples/console
2912
4cb122de
RR
2913 mkdir $(DISTDIR)/samples/controls
2914 mkdir $(DISTDIR)/samples/controls/icons
2915 cp $(SAMPDIR)/controls/Makefile.in $(DISTDIR)/samples/controls
c4fda16b 2916 cp $(SAMPDIR)/controls/makefile.unx $(DISTDIR)/samples/controls
4cb122de
RR
2917 cp $(SAMPDIR)/controls/*.cpp $(DISTDIR)/samples/controls
2918 cp $(SAMPDIR)/controls/*.xpm $(DISTDIR)/samples/controls
2919 cp $(SAMPDIR)/controls/icons/*.??? $(DISTDIR)/samples/controls/icons
e9093718 2920
4cb122de
RR
2921 mkdir $(DISTDIR)/samples/checklst
2922 cp $(SAMPDIR)/checklst/Makefile.in $(DISTDIR)/samples/checklst
c4fda16b 2923 cp $(SAMPDIR)/checklst/makefile.unx $(DISTDIR)/samples/checklst
4cb122de
RR
2924 cp $(SAMPDIR)/checklst/*.cpp $(DISTDIR)/samples/checklst
2925 cp $(SAMPDIR)/checklst/*.xpm $(DISTDIR)/samples/checklst
e9093718 2926
79144b8a
RR
2927 mkdir $(DISTDIR)/samples/db
2928 cp $(SAMPDIR)/db/Makefile.in $(DISTDIR)/samples/db
c4fda16b 2929 cp $(SAMPDIR)/db/makefile.unx $(DISTDIR)/samples/db
79144b8a
RR
2930 cp $(SAMPDIR)/db/*.cpp $(DISTDIR)/samples/db
2931 cp $(SAMPDIR)/db/*.h $(DISTDIR)/samples/db
2932 cp $(SAMPDIR)/db/*.xpm $(DISTDIR)/samples/db
e9093718 2933
641d87d8
RR
2934 mkdir $(DISTDIR)/samples/dialogs
2935 cp $(SAMPDIR)/dialogs/Makefile.in $(DISTDIR)/samples/dialogs
c4fda16b 2936 cp $(SAMPDIR)/dialogs/makefile.unx $(DISTDIR)/samples/dialogs
641d87d8
RR
2937 cp $(SAMPDIR)/dialogs/*.cpp $(DISTDIR)/samples/dialogs
2938 cp $(SAMPDIR)/dialogs/*.h $(DISTDIR)/samples/dialogs
2939 cp $(SAMPDIR)/dialogs/*.txt $(DISTDIR)/samples/dialogs
e9093718 2940
641d87d8
RR
2941 mkdir $(DISTDIR)/samples/dnd
2942 cp $(SAMPDIR)/dnd/Makefile.in $(DISTDIR)/samples/dnd
c4fda16b 2943 cp $(SAMPDIR)/dnd/makefile.unx $(DISTDIR)/samples/dnd
4b59bea3 2944 cp $(SAMPDIR)/dnd/*.wxr $(DISTDIR)/samples/dnd
641d87d8
RR
2945 cp $(SAMPDIR)/dnd/*.cpp $(DISTDIR)/samples/dnd
2946 cp $(SAMPDIR)/dnd/*.xpm $(DISTDIR)/samples/dnd
2947 cp $(SAMPDIR)/dnd/*.txt $(DISTDIR)/samples/dnd
2948 cp $(SAMPDIR)/dnd/*.png $(DISTDIR)/samples/dnd
e9093718 2949
641d87d8
RR
2950 mkdir $(DISTDIR)/samples/docview
2951 cp $(SAMPDIR)/docview/Makefile.in $(DISTDIR)/samples/docview
e9093718 2952 cp $(SAMPDIR)/docview/makefile.unx $(DISTDIR)/samples/docview
641d87d8
RR
2953 cp $(SAMPDIR)/docview/*.cpp $(DISTDIR)/samples/docview
2954 cp $(SAMPDIR)/docview/*.h $(DISTDIR)/samples/docview
2955 cp $(SAMPDIR)/docview/*.xpm $(DISTDIR)/samples/docview
e9093718 2956
641d87d8
RR
2957 mkdir $(DISTDIR)/samples/docvwmdi
2958 cp $(SAMPDIR)/docvwmdi/Makefile.in $(DISTDIR)/samples/docvwmdi
e9093718 2959 cp $(SAMPDIR)/docvwmdi/makefile.unx $(DISTDIR)/samples/docvwmdi
641d87d8
RR
2960 cp $(SAMPDIR)/docvwmdi/*.cpp $(DISTDIR)/samples/docvwmdi
2961 cp $(SAMPDIR)/docvwmdi/*.h $(DISTDIR)/samples/docvwmdi
e9093718 2962
641d87d8
RR
2963 mkdir $(DISTDIR)/samples/drawing
2964 cp $(SAMPDIR)/drawing/Makefile.in $(DISTDIR)/samples/drawing
e9093718 2965 cp $(SAMPDIR)/drawing/makefile.unx $(DISTDIR)/samples/drawing
641d87d8
RR
2966 cp $(SAMPDIR)/drawing/*.cpp $(DISTDIR)/samples/drawing
2967 cp $(SAMPDIR)/drawing/*.xpm $(DISTDIR)/samples/drawing
e9093718 2968
641d87d8
RR
2969 mkdir $(DISTDIR)/samples/dynamic
2970 cp $(SAMPDIR)/dynamic/Makefile.in $(DISTDIR)/samples/dynamic
e9093718 2971 cp $(SAMPDIR)/dynamic/makefile.unx $(DISTDIR)/samples/dynamic
641d87d8
RR
2972 cp $(SAMPDIR)/dynamic/*.cpp $(DISTDIR)/samples/dynamic
2973 cp $(SAMPDIR)/dynamic/*.xpm $(DISTDIR)/samples/dynamic
e9093718 2974
79144b8a
RR
2975 mkdir $(DISTDIR)/samples/forty
2976 cp $(SAMPDIR)/forty/Makefile.in $(DISTDIR)/samples/forty
e9093718 2977 cp $(SAMPDIR)/forty/makefile.unx $(DISTDIR)/samples/forty
63081513 2978 cp $(SAMPDIR)/forty/*.h $(DISTDIR)/samples/forty
79144b8a
RR
2979 cp $(SAMPDIR)/forty/*.cpp $(DISTDIR)/samples/forty
2980 cp $(SAMPDIR)/forty/*.xpm $(DISTDIR)/samples/forty
2981 cp $(SAMPDIR)/forty/*.xbm $(DISTDIR)/samples/forty
e9093718 2982
1e8d2f69
RR
2983 mkdir $(DISTDIR)/samples/font
2984 cp $(SAMPDIR)/font/Makefile.in $(DISTDIR)/samples/font
2985 cp $(SAMPDIR)/font/makefile.unx $(DISTDIR)/samples/font
2986 cp $(SAMPDIR)/font/*.cpp $(DISTDIR)/samples/font
2987
79144b8a
RR
2988 mkdir $(DISTDIR)/samples/fractal
2989 cp $(SAMPDIR)/fractal/Makefile.in $(DISTDIR)/samples/fractal
e9093718 2990 cp $(SAMPDIR)/fractal/makefile.unx $(DISTDIR)/samples/fractal
79144b8a 2991 cp $(SAMPDIR)/fractal/*.cpp $(DISTDIR)/samples/fractal
e9093718 2992
1e8d2f69
RR
2993 mkdir $(DISTDIR)/samples/grid
2994 cp $(SAMPDIR)/grid/Makefile.in $(DISTDIR)/samples/grid
2995 cp $(SAMPDIR)/grid/makefile.unx $(DISTDIR)/samples/grid
2996 cp $(SAMPDIR)/grid/*.cpp $(DISTDIR)/samples/grid
2997
e9093718
RR
2998 mkdir $(DISTDIR)/samples/help
2999 mkdir $(DISTDIR)/samples/help/doc
3000 cp $(SAMPDIR)/help/Makefile.in $(DISTDIR)/samples/help
3001 cp $(SAMPDIR)/help/makefile.unx $(DISTDIR)/samples/help
3002 cp $(SAMPDIR)/help/*.cpp $(DISTDIR)/samples/help
3003 cp $(SAMPDIR)/help/*.xpm $(DISTDIR)/samples/help
3004 cp $(SAMPDIR)/help/doc/*.* $(DISTDIR)/samples/help/doc
3005
641d87d8
RR
3006 mkdir $(DISTDIR)/samples/html
3007 cp $(SAMPDIR)/html/Makefile.in $(DISTDIR)/samples/html
3008 mkdir $(DISTDIR)/samples/html/about
3009 cp $(SAMPDIR)/html/about/Makefile.in $(DISTDIR)/samples/html/about
3010 cp $(SAMPDIR)/html/about/*.cpp $(DISTDIR)/samples/html/about
3011 mkdir $(DISTDIR)/samples/html/about/data
3012 cp $(SAMPDIR)/html/about/data/*.htm $(DISTDIR)/samples/html/about/data
3013 cp $(SAMPDIR)/html/about/data/*.png $(DISTDIR)/samples/html/about/data
3014 mkdir $(DISTDIR)/samples/html/help
3015 cp $(SAMPDIR)/html/help/Makefile.in $(DISTDIR)/samples/html/help
3016 cp $(SAMPDIR)/html/help/*.cpp $(DISTDIR)/samples/html/help
3017 mkdir $(DISTDIR)/samples/html/help/helpfiles
3018 cp $(SAMPDIR)/html/help/helpfiles/*.??? $(DISTDIR)/samples/html/help/helpfiles
fc9c7c09
RR
3019 mkdir $(DISTDIR)/samples/html/helpview
3020 cp $(SAMPDIR)/html/helpview/Makefile.in $(DISTDIR)/samples/html/helpview
3021 cp $(SAMPDIR)/html/helpview/*.cpp $(DISTDIR)/samples/html/helpview
3022 cp $(SAMPDIR)/html/helpview/*.zip $(DISTDIR)/samples/html/helpview
641d87d8
RR
3023 mkdir $(DISTDIR)/samples/html/printing
3024 cp $(SAMPDIR)/html/printing/Makefile.in $(DISTDIR)/samples/html/printing
641d87d8 3025 cp $(SAMPDIR)/html/printing/*.cpp $(DISTDIR)/samples/html/printing
641d87d8
RR
3026 cp $(SAMPDIR)/html/printing/*.htm $(DISTDIR)/samples/html/printing
3027 mkdir $(DISTDIR)/samples/html/test
3028 cp $(SAMPDIR)/html/test/Makefile.in $(DISTDIR)/samples/html/test
3029 cp $(SAMPDIR)/html/test/*.cpp $(DISTDIR)/samples/html/test
3030 cp $(SAMPDIR)/html/test/*.bmp $(DISTDIR)/samples/html/test
3031 cp $(SAMPDIR)/html/test/*.png $(DISTDIR)/samples/html/test
3032 cp $(SAMPDIR)/html/test/*.htm $(DISTDIR)/samples/html/test
3033 cp $(SAMPDIR)/html/test/*.html $(DISTDIR)/samples/html/test
3034 mkdir $(DISTDIR)/samples/html/virtual
3035 cp $(SAMPDIR)/html/virtual/Makefile.in $(DISTDIR)/samples/html/virtual
3036 cp $(SAMPDIR)/html/virtual/*.cpp $(DISTDIR)/samples/html/virtual
3037 cp $(SAMPDIR)/html/virtual/*.htm $(DISTDIR)/samples/html/virtual
3038 mkdir $(DISTDIR)/samples/html/widget
3039 cp $(SAMPDIR)/html/widget/Makefile.in $(DISTDIR)/samples/html/widget
3040 cp $(SAMPDIR)/html/widget/*.cpp $(DISTDIR)/samples/html/widget
3041 cp $(SAMPDIR)/html/widget/*.htm $(DISTDIR)/samples/html/widget
3042 mkdir $(DISTDIR)/samples/html/zip
3043 cp $(SAMPDIR)/html/zip/Makefile.in $(DISTDIR)/samples/html/zip
3044 cp $(SAMPDIR)/html/zip/*.cpp $(DISTDIR)/samples/html/zip
3045 cp $(SAMPDIR)/html/zip/*.htm $(DISTDIR)/samples/html/zip
3046 cp $(SAMPDIR)/html/zip/*.zip $(DISTDIR)/samples/html/zip
e9093718 3047
641d87d8
RR
3048 mkdir $(DISTDIR)/samples/image
3049 cp $(SAMPDIR)/image/Makefile.in $(DISTDIR)/samples/image
e9093718 3050 cp $(SAMPDIR)/image/makefile.unx $(DISTDIR)/samples/image
641d87d8
RR
3051 cp $(SAMPDIR)/image/*.cpp $(DISTDIR)/samples/image
3052 cp $(SAMPDIR)/image/horse.* $(DISTDIR)/samples/image
1e8d2f69
RR
3053 cp $(SAMPDIR)/image/smile.xbm $(DISTDIR)/samples/image
3054
c09ab26a
RR
3055 mkdir $(DISTDIR)/samples/internat
3056 mkdir $(DISTDIR)/samples/internat/de
3057 mkdir $(DISTDIR)/samples/internat/fr
3058 cp $(SAMPDIR)/internat/Makefile.in $(DISTDIR)/samples/internat
e9093718 3059 cp $(SAMPDIR)/internat/makefile.unx $(DISTDIR)/samples/internat
c09ab26a
RR
3060 cp $(SAMPDIR)/internat/*.cpp $(DISTDIR)/samples/internat
3061 cp $(SAMPDIR)/internat/*.xpm $(DISTDIR)/samples/internat
3062 cp $(SAMPDIR)/internat/*.txt $(DISTDIR)/samples/internat
3063 cp $(SAMPDIR)/internat/*.po $(DISTDIR)/samples/internat
3064 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
3065 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
3066 cp $(SAMPDIR)/internat/fr/*.po $(DISTDIR)/samples/internat/fr
3067 cp $(SAMPDIR)/internat/de/*.mo $(DISTDIR)/samples/internat/de
e9093718 3068
641d87d8
RR
3069 mkdir $(DISTDIR)/samples/layout
3070 cp $(SAMPDIR)/layout/Makefile.in $(DISTDIR)/samples/layout
e9093718 3071 cp $(SAMPDIR)/layout/makefile.unx $(DISTDIR)/samples/layout
641d87d8
RR
3072 cp $(SAMPDIR)/layout/*.cpp $(DISTDIR)/samples/layout
3073 cp $(SAMPDIR)/layout/*.h $(DISTDIR)/samples/layout
e9093718 3074
1e8d2f69
RR
3075 mkdir $(DISTDIR)/samples/life
3076 mkdir $(DISTDIR)/samples/life/bitmaps
3077 cp $(SAMPDIR)/life/Makefile.in $(DISTDIR)/samples/life
3078 cp $(SAMPDIR)/life/makefile.unx $(DISTDIR)/samples/life
3079 cp $(SAMPDIR)/life/*.cpp $(DISTDIR)/samples/life
3080 cp $(SAMPDIR)/life/*.xpm $(DISTDIR)/samples/life
3081 cp $(SAMPDIR)/life/bitmaps/*.xpm $(DISTDIR)/samples/life/bitmaps
3082
641d87d8 3083 mkdir $(DISTDIR)/samples/listctrl
e9093718 3084 mkdir $(DISTDIR)/samples/listctrl/bitmaps
641d87d8 3085 cp $(SAMPDIR)/listctrl/Makefile.in $(DISTDIR)/samples/listctrl
e9093718 3086 cp $(SAMPDIR)/listctrl/makefile.unx $(DISTDIR)/samples/listctrl
641d87d8
RR
3087 cp $(SAMPDIR)/listctrl/*.cpp $(DISTDIR)/samples/listctrl
3088 cp $(SAMPDIR)/listctrl/*.h $(DISTDIR)/samples/listctrl
3089 cp $(SAMPDIR)/listctrl/*.xpm $(DISTDIR)/samples/listctrl
d8d474af 3090 cp $(SAMPDIR)/listctrl/bitmaps/*.xpm $(DISTDIR)/samples/listctrl/bitmaps
e9093718 3091
641d87d8 3092 mkdir $(DISTDIR)/samples/mdi
e9093718 3093 mkdir $(DISTDIR)/samples/mdi/bitmaps
641d87d8 3094 cp $(SAMPDIR)/mdi/Makefile.in $(DISTDIR)/samples/mdi
e9093718 3095 cp $(SAMPDIR)/mdi/makefile.unx $(DISTDIR)/samples/mdi
641d87d8
RR
3096 cp $(SAMPDIR)/mdi/*.cpp $(DISTDIR)/samples/mdi
3097 cp $(SAMPDIR)/mdi/*.h $(DISTDIR)/samples/mdi
3098 cp $(SAMPDIR)/mdi/*.xpm $(DISTDIR)/samples/mdi
d8d474af 3099 cp $(SAMPDIR)/mdi/bitmaps/*.xpm $(DISTDIR)/samples/mdi/bitmaps
e9093718
RR
3100
3101 mkdir $(DISTDIR)/samples/memcheck
3102 cp $(SAMPDIR)/memcheck/Makefile.in $(DISTDIR)/samples/memcheck
3103 cp $(SAMPDIR)/memcheck/makefile.unx $(DISTDIR)/samples/memcheck
3104 cp $(SAMPDIR)/memcheck/*.cpp $(DISTDIR)/samples/memcheck
3105 cp $(SAMPDIR)/memcheck/*.xpm $(DISTDIR)/samples/memcheck
3106
3107 mkdir $(DISTDIR)/samples/menu
3108 cp $(SAMPDIR)/menu/Makefile.in $(DISTDIR)/samples/menu
3109 cp $(SAMPDIR)/menu/makefile.unx $(DISTDIR)/samples/menu
3110 cp $(SAMPDIR)/menu/*.cpp $(DISTDIR)/samples/menu
3111
641d87d8 3112 mkdir $(DISTDIR)/samples/minifram
e9093718 3113 mkdir $(DISTDIR)/samples/minifram/bitmaps
641d87d8 3114 cp $(SAMPDIR)/minifram/Makefile.in $(DISTDIR)/samples/minifram
e9093718 3115 cp $(SAMPDIR)/minifram/makefile.unx $(DISTDIR)/samples/minifram
641d87d8
RR
3116 cp $(SAMPDIR)/minifram/*.cpp $(DISTDIR)/samples/minifram
3117 cp $(SAMPDIR)/minifram/*.h $(DISTDIR)/samples/minifram
3118 cp $(SAMPDIR)/minifram/*.xpm $(DISTDIR)/samples/minifram
d8d474af 3119 cp $(SAMPDIR)/minifram/bitmaps/*.xpm $(DISTDIR)/samples/minifram/bitmaps
e9093718 3120
641d87d8
RR
3121 mkdir $(DISTDIR)/samples/minimal
3122 cp $(SAMPDIR)/minimal/Makefile.in $(DISTDIR)/samples/minimal
e9093718 3123 cp $(SAMPDIR)/minimal/makefile.unx $(DISTDIR)/samples/minimal
641d87d8
RR
3124 cp $(SAMPDIR)/minimal/*.cpp $(DISTDIR)/samples/minimal
3125 cp $(SAMPDIR)/minimal/*.xpm $(DISTDIR)/samples/minimal
e9093718 3126
d8d474af
RR
3127 mkdir $(DISTDIR)/samples/nettest
3128 cp $(SAMPDIR)/nettest/Makefile.in $(DISTDIR)/samples/nettest
1e8d2f69 3129 cp $(SAMPDIR)/nettest/makefile.unx $(DISTDIR)/samples/nettest
d8d474af 3130 cp $(SAMPDIR)/nettest/*.cpp $(DISTDIR)/samples/nettest
e9093718 3131
f85afd4e
MB
3132 mkdir $(DISTDIR)/samples/newgrid
3133 cp $(SAMPDIR)/newgrid/Makefile.in $(DISTDIR)/samples/newgrid
1e8d2f69 3134 cp $(SAMPDIR)/newgrid/makefile.unx $(DISTDIR)/samples/newgrid
f85afd4e
MB
3135 cp $(SAMPDIR)/newgrid/*.cpp $(DISTDIR)/samples/newgrid
3136 cp $(SAMPDIR)/newgrid/*.h $(DISTDIR)/samples/newgrid
e9093718 3137
641d87d8
RR
3138 mkdir $(DISTDIR)/samples/notebook
3139 cp $(SAMPDIR)/notebook/Makefile.in $(DISTDIR)/samples/notebook
1e8d2f69 3140 cp $(SAMPDIR)/notebook/makefile.unx $(DISTDIR)/samples/notebook
641d87d8
RR
3141 cp $(SAMPDIR)/notebook/*.cpp $(DISTDIR)/samples/notebook
3142 cp $(SAMPDIR)/notebook/*.h $(DISTDIR)/samples/notebook
e9093718 3143
79144b8a
RR
3144 mkdir $(DISTDIR)/samples/png
3145 cp $(SAMPDIR)/png/Makefile.in $(DISTDIR)/samples/png
1e8d2f69 3146 cp $(SAMPDIR)/png/makefile.unx $(DISTDIR)/samples/png
79144b8a
RR
3147 cp $(SAMPDIR)/png/*.cpp $(DISTDIR)/samples/png
3148 cp $(SAMPDIR)/png/*.h $(DISTDIR)/samples/png
3149 cp $(SAMPDIR)/png/*.png $(DISTDIR)/samples/png
e9093718 3150
1e8d2f69
RR
3151 mkdir $(DISTDIR)/samples/printing
3152 cp $(SAMPDIR)/printing/Makefile.in $(DISTDIR)/samples/printing
3153 cp $(SAMPDIR)/printing/makefile.unx $(DISTDIR)/samples/printing
3154 cp $(SAMPDIR)/printing/*.cpp $(DISTDIR)/samples/printing
3155 cp $(SAMPDIR)/printing/*.h $(DISTDIR)/samples/printing
3156 cp $(SAMPDIR)/printing/*.xpm $(DISTDIR)/samples/printing
3157 cp $(SAMPDIR)/printing/*.xbm $(DISTDIR)/samples/printing
3158
3fd528b9
RR
3159 mkdir $(DISTDIR)/samples/resource
3160 cp $(SAMPDIR)/resource/Makefile.in $(DISTDIR)/samples/resource
1e8d2f69 3161 cp $(SAMPDIR)/resource/makefile.unx $(DISTDIR)/samples/resource
3fd528b9
RR
3162 cp $(SAMPDIR)/resource/*.cpp $(DISTDIR)/samples/resource
3163 cp $(SAMPDIR)/resource/*.h $(DISTDIR)/samples/resource
3164 cp $(SAMPDIR)/resource/*.wxr $(DISTDIR)/samples/resource
e9093718 3165
3fd528b9
RR
3166 mkdir $(DISTDIR)/samples/richedit
3167 cp $(SAMPDIR)/richedit/Makefile.in $(DISTDIR)/samples/richedit
3168 cp $(SAMPDIR)/richedit/*.cpp $(DISTDIR)/samples/richedit
3169 cp $(SAMPDIR)/richedit/*.h $(DISTDIR)/samples/richedit
3170 cp $(SAMPDIR)/richedit/*.xpm $(DISTDIR)/samples/richedit
3171 cp $(SAMPDIR)/richedit/README $(DISTDIR)/samples/richedit
3172 cp $(SAMPDIR)/richedit/TODO $(DISTDIR)/samples/richedit
1e8d2f69 3173
641d87d8
RR
3174 mkdir $(DISTDIR)/samples/proplist
3175 cp $(SAMPDIR)/proplist/Makefile.in $(DISTDIR)/samples/proplist
3176 cp $(SAMPDIR)/proplist/*.cpp $(DISTDIR)/samples/proplist
3177 cp $(SAMPDIR)/proplist/*.h $(DISTDIR)/samples/proplist
1e8d2f69 3178
ba0e7d41
RR
3179 mkdir $(DISTDIR)/samples/propsize
3180 cp $(SAMPDIR)/propsize/Makefile.in $(DISTDIR)/samples/propsize
3181 cp $(SAMPDIR)/propsize/*.cpp $(DISTDIR)/samples/propsize
3182 cp $(SAMPDIR)/propsize/*.xpm $(DISTDIR)/samples/propsize
1e8d2f69 3183
641d87d8
RR
3184 mkdir $(DISTDIR)/samples/sashtest
3185 cp $(SAMPDIR)/sashtest/Makefile.in $(DISTDIR)/samples/sashtest
3186 cp $(SAMPDIR)/sashtest/*.cpp $(DISTDIR)/samples/sashtest
3187 cp $(SAMPDIR)/sashtest/*.h $(DISTDIR)/samples/sashtest
1e8d2f69 3188
641d87d8
RR
3189 mkdir $(DISTDIR)/samples/scroll
3190 cp $(SAMPDIR)/scroll/Makefile.in $(DISTDIR)/samples/scroll
1e8d2f69 3191 cp $(SAMPDIR)/scroll/makefile.unx $(DISTDIR)/samples/scroll
641d87d8 3192 cp $(SAMPDIR)/scroll/*.cpp $(DISTDIR)/samples/scroll
1e8d2f69 3193
d8d474af
RR
3194 mkdir $(DISTDIR)/samples/scrollsub
3195 cp $(SAMPDIR)/scrollsub/Makefile.in $(DISTDIR)/samples/scrollsub
1e8d2f69 3196 cp $(SAMPDIR)/scrollsub/makefile.unx $(DISTDIR)/samples/scrollsub
d8d474af 3197 cp $(SAMPDIR)/scrollsub/*.cpp $(DISTDIR)/samples/scrollsub
1e8d2f69 3198
641d87d8 3199 mkdir $(DISTDIR)/samples/splitter
1e8d2f69 3200 cp $(SAMPDIR)/splitter/makefile.unx $(DISTDIR)/samples/splitter
641d87d8
RR
3201 cp $(SAMPDIR)/splitter/Makefile.in $(DISTDIR)/samples/splitter
3202 cp $(SAMPDIR)/splitter/*.cpp $(DISTDIR)/samples/splitter
1e8d2f69 3203
641d87d8
RR
3204 mkdir $(DISTDIR)/samples/text
3205 cp $(SAMPDIR)/text/Makefile.in $(DISTDIR)/samples/text
1e8d2f69 3206 cp $(SAMPDIR)/text/makefile.unx $(DISTDIR)/samples/text
641d87d8
RR
3207 cp $(SAMPDIR)/text/*.cpp $(DISTDIR)/samples/text
3208 cp $(SAMPDIR)/text/*.xpm $(DISTDIR)/samples/text
1e8d2f69 3209
641d87d8
RR
3210 mkdir $(DISTDIR)/samples/thread
3211 cp $(SAMPDIR)/thread/Makefile.in $(DISTDIR)/samples/thread
1e8d2f69 3212 cp $(SAMPDIR)/thread/makefile.unx $(DISTDIR)/samples/thread
641d87d8 3213 cp $(SAMPDIR)/thread/*.cpp $(DISTDIR)/samples/thread
1e8d2f69 3214
641d87d8
RR
3215 mkdir $(DISTDIR)/samples/toolbar
3216 cp $(SAMPDIR)/toolbar/Makefile.in $(DISTDIR)/samples/toolbar
3217 cp $(SAMPDIR)/toolbar/*.cpp $(DISTDIR)/samples/toolbar
641d87d8 3218 cp $(SAMPDIR)/toolbar/*.xpm $(DISTDIR)/samples/toolbar
d8d474af
RR
3219 mkdir $(DISTDIR)/samples/toolbar/bitmaps
3220 cp $(SAMPDIR)/toolbar/bitmaps/*.xpm $(DISTDIR)/samples/toolbar/bitmaps
1e8d2f69 3221
641d87d8
RR
3222 mkdir $(DISTDIR)/samples/treectrl
3223 cp $(SAMPDIR)/treectrl/Makefile.in $(DISTDIR)/samples/treectrl
3224 cp $(SAMPDIR)/treectrl/*.cpp $(DISTDIR)/samples/treectrl
3225 cp $(SAMPDIR)/treectrl/*.h $(DISTDIR)/samples/treectrl
3226 cp $(SAMPDIR)/treectrl/*.xpm $(DISTDIR)/samples/treectrl
1e8d2f69 3227
641d87d8
RR
3228 mkdir $(DISTDIR)/samples/typetest
3229 cp $(SAMPDIR)/typetest/Makefile.in $(DISTDIR)/samples/typetest
3230 cp $(SAMPDIR)/typetest/*.cpp $(DISTDIR)/samples/typetest
3231 cp $(SAMPDIR)/typetest/*.h $(DISTDIR)/samples/typetest
3232 cp $(SAMPDIR)/typetest/*.xpm $(DISTDIR)/samples/typetest
1e8d2f69 3233
641d87d8
RR
3234 mkdir $(DISTDIR)/samples/validate
3235 cp $(SAMPDIR)/validate/Makefile.in $(DISTDIR)/samples/validate
3236 cp $(SAMPDIR)/validate/*.cpp $(DISTDIR)/samples/validate
3237 cp $(SAMPDIR)/validate/*.h $(DISTDIR)/samples/validate
3238 cp $(SAMPDIR)/validate/*.xpm $(DISTDIR)/samples/validate
1e8d2f69 3239
641d87d8
RR
3240 mkdir $(DISTDIR)/samples/wizard
3241 cp $(SAMPDIR)/wizard/Makefile.in $(DISTDIR)/samples/wizard
3242 cp $(SAMPDIR)/wizard/*.cpp $(DISTDIR)/samples/wizard
3243 cp $(SAMPDIR)/wizard/*.xpm $(DISTDIR)/samples/wizard
1e8d2f69 3244
641d87d8
RR
3245 mkdir $(DISTDIR)/samples/wxpoem
3246 cp $(SAMPDIR)/wxpoem/Makefile.in $(DISTDIR)/samples/wxpoem
3247 cp $(SAMPDIR)/wxpoem/*.cpp $(DISTDIR)/samples/wxpoem
3248 cp $(SAMPDIR)/wxpoem/*.xpm $(DISTDIR)/samples/wxpoem
3249 cp $(SAMPDIR)/wxpoem/*.dat $(DISTDIR)/samples/wxpoem
3250 cp $(SAMPDIR)/wxpoem/*.txt $(DISTDIR)/samples/wxpoem
1e8d2f69 3251
641d87d8
RR
3252 mkdir $(DISTDIR)/samples/wxsocket
3253 cp $(SAMPDIR)/wxsocket/Makefile.in $(DISTDIR)/samples/wxsocket
3254 cp $(SAMPDIR)/wxsocket/*.cpp $(DISTDIR)/samples/wxsocket
3255 cp $(SAMPDIR)/wxsocket/*.xpm $(DISTDIR)/samples/wxsocket
3256
3257UTILS_DIST:
3258 mkdir $(DISTDIR)/utils
3259 cp $(UTILSDIR)/Makefile.in $(DISTDIR)/utils
af563b66 3260
641d87d8 3261 mkdir $(DISTDIR)/utils/wxMMedia2
641d87d8 3262 mkdir $(DISTDIR)/utils/wxMMedia2/lib
c09ab26a
RR
3263 mkdir $(DISTDIR)/utils/wxMMedia2/sample
3264 cp $(UTILSDIR)/wxMMedia2/Makefile.in $(DISTDIR)/utils/wxMMedia2
641d87d8
RR
3265 cp $(UTILSDIR)/wxMMedia2/lib/Makefile.in $(DISTDIR)/utils/wxMMedia2/lib
3266 cp $(UTILSDIR)/wxMMedia2/lib/*.h $(DISTDIR)/utils/wxMMedia2/lib
3267 cp $(UTILSDIR)/wxMMedia2/lib/*.cpp $(DISTDIR)/utils/wxMMedia2/lib
3268 cp $(UTILSDIR)/wxMMedia2/lib/*.def $(DISTDIR)/utils/wxMMedia2/lib
641d87d8
RR
3269 cp $(UTILSDIR)/wxMMedia2/sample/Makefile.in $(DISTDIR)/utils/wxMMedia2/sample
3270 cp $(UTILSDIR)/wxMMedia2/sample/*.cpp $(DISTDIR)/utils/wxMMedia2/sample
af563b66 3271
641d87d8 3272 mkdir $(DISTDIR)/utils/glcanvas
c09ab26a 3273 mkdir $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
641d87d8
RR
3274 cp $(UTILSDIR)/glcanvas/Makefile.in $(DISTDIR)/utils/glcanvas
3275 cp $(UTILSDIR)/glcanvas/docs/notes.txt $(DISTDIR)/utils/glcanvas/NOTES.txt
641d87d8
RR
3276 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/Makefile.in $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
3277 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.h $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
3278 cp $(UTILSDIR)/glcanvas/$(TOOLKITDIR)/*.cpp $(DISTDIR)/utils/glcanvas/$(TOOLKITDIR)
af563b66 3279
c09ab26a
RR
3280 mkdir $(DISTDIR)/utils/ogl
3281 mkdir $(DISTDIR)/utils/ogl/src
3282 cp $(UTILSDIR)/ogl/Makefile.in $(DISTDIR)/utils/ogl
3283 cp $(UTILSDIR)/ogl/src/Makefile.in $(DISTDIR)/utils/ogl/src
3284 cp $(UTILSDIR)/ogl/src/*.h $(DISTDIR)/utils/ogl/src
3285 cp $(UTILSDIR)/ogl/src/*.cpp $(DISTDIR)/utils/ogl/src
af563b66 3286
a6f3598d
RR
3287MISC_DIST:
3288 mkdir $(DISTDIR)/misc
3289 mkdir $(DISTDIR)/misc/afm
3290 cp $(MISCDIR)/afm/*.afm $(DISTDIR)/misc/afm
3291 mkdir $(DISTDIR)/misc/gs_afm
3292 cp $(MISCDIR)/gs_afm/*.afm $(DISTDIR)/misc/gs_afm
af563b66 3293
a6f3598d 3294dist: ALL_DIST @GUIDIST@ SAMPLES_DIST UTILS_DIST MISC_DIST
a4aad961 3295 cd _dist_dir; tar ch wx$(TOOLKIT) | gzip -f9 > $(WXARCHIVE); mv $(WXARCHIVE) ..
ba0e7d41
RR
3296 mv _dist_dir/wx$(TOOLKIT)/samples _dist_dir/wx$(TOOLKIT)/wxSamples
3297 cd _dist_dir/wx$(TOOLKIT); tar ch wxSamples | gzip -f9 > $(WXSAMPLES); mv $(WXSAMPLES) ../..
8b17ba72 3298 $(RM) -r _dist_dir
a4aad961 3299
ad9edf45 3300clean:
8b17ba72 3301 $(RM) *.o
5586805b 3302 $(RM) *.d
8b17ba72
RR
3303 $(RM) parser.c
3304 $(RM) lexer.c
223cb5ed 3305 $(RM) ./lib/*
ad9edf45
RR
3306
3307cleanall: clean