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