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