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