From: Vadim Zeitlin Date: Mon, 31 Jan 2000 19:16:28 +0000 (+0000) Subject: compilation for Win32 using configure works again X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/54744d3ab7756a61fe2d6ef4e8da5bde9ff2cec2 compilation for Win32 using configure works again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/distrib/msw/tmake/msw.t b/distrib/msw/tmake/msw.t new file mode 100644 index 0000000000..48b489b93c --- /dev/null +++ b/distrib/msw/tmake/msw.t @@ -0,0 +1,128 @@ +#!################################################################################ +#! File: msw.t +#! Purpose: tmake template file from which src/msw/files.lst containing the +#! list of files for wxMSW library is generated by tmake +#! Author: Vadim Zeitlin +#! Created: 28.01.00 +#! Version: $Id$ +#!################################################################################ +#${ + #! include the code which parses filelist.txt file and initializes + #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxMSW, %wxMOTIF and + #! %wxOS2PM hashes. + IncludeTemplate("filelist.t"); + + #! find all our sources + $project{"COMMONOBJS"} .= "parser.o "; + $project{"COMMONDEPS"} .= "parser.d "; + + foreach $file (sort keys %wxGeneric) { + next if $wxGeneric{$file} =~ /\b(PS|G|U|16)\b/; + + ($fileobj = $file) =~ s/cp?p?$/\o/; + ($filedep = $file) =~ s/cp?p?$/\d/; + + $project{"MSW_SOURCES"} .= "generic/" . $file . " "; + $project{"GENERICOBJS"} .= $fileobj . " "; + $project{"GENERICDEPS"} .= $filedep . " " + } + + foreach $file (sort keys %wxCommon) { + next if $wxCommon{$file} =~ /\bR\b/; + + ($fileobj = $file) =~ s/cp?p?$/\o/; + ($filedep = $file) =~ s/cp?p?$/\d/; + + $project{"MSW_SOURCES"} .= "common/" . $file . " "; + $project{"COMMONOBJS"} .= $fileobj . " "; + $project{"COMMONDEPS"} .= $filedep . " " + } + + foreach $file (sort keys %wxMSW) { + #! OLE files can'be compiled with mingw32 yet + next if $wxMSW{$file} =~ /\b(O|16)\b/; + + ($fileobj = $file) =~ s/cp?p?$/\o/; + ($filedep = $file) =~ s/cp?p?$/\d/; + + $project{"MSW_SOURCES"} .= "msw/" . $file . " "; + $project{"GUIOBJS"} .= $fileobj . " "; + $project{"GUIDEPS"} .= $filedep . " " + } + + foreach $file (sort keys %wxHTML) { + ($fileobj = $file) =~ s/cp?p?$/\o/; + ($filedep = $file) =~ s/cp?p?$/\d/; + + $project{"MSW_SOURCES"} .= "html/" . $file . " "; + $project{"HTMLOBJS"} .= $fileobj . " "; + $project{"HTMLDEPS"} .= $filedep . " " + } + #! find all our headers + foreach $file (sort keys %wxWXINCLUDE) { + $project{"MSW_HEADERS"} .= $file . " " + } + + foreach $file (sort keys %wxMSWINCLUDE) { + $project{"MSW_HEADERS"} .= "msw/" . $file . " " + } + + foreach $file (sort keys %wxGENERICINCLUDE) { + $project{"MSW_HEADERS"} .= "generic/" . $file . " " + } + + foreach $file (sort keys %wxUNIXINCLUDE) { + $project{"MSW_HEADERS"} .= "unix/" . $file . " " + } + + foreach $file (sort keys %wxHTMLINCLUDE) { + $project{"MSW_HEADERS"} .= "html/" . $file . " " + } + + foreach $file (sort keys %wxPROTOCOLINCLUDE) { + $project{"MSW_HEADERS"} .= "protocol/" . $file . " " + } +#$} +# This file was automatically generated by tmake at #$ Now() +# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MSW.T! +ALL_SOURCES = \ + #$ ExpandList("MSW_SOURCES"); + +ALL_HEADERS = \ + #$ ExpandList("MSW_HEADERS"); + +COMMONOBJS = \ + #$ ExpandList("COMMONOBJS"); + +COMMONDEPS = \ + #$ ExpandList("COMMONDEPS"); + +GENERICOBJS = \ + #$ ExpandList("GENERICOBJS"); + +GENERICDEPS = \ + #$ ExpandList("GENERICDEPS"); + +GUIOBJS = \ + #$ ExpandList("GUIOBJS"); + +GUIDEPS = \ + #$ ExpandList("GUIDEPS"); + +UNIXOBJS = \ + #$ ExpandList("UNIXOBJS"); + +UNIXDEPS = \ + #$ ExpandList("UNIXDEPS"); + +HTMLOBJS = \ + #$ ExpandList("HTMLOBJS"); + +HTMLDEPS = \ + #$ ExpandList("HTMLDEPS"); + +IODBCOBJS = \ + #$ ExpandList("IODBCOBJS"); + +IODBCDEPS = \ + #$ ExpandList("IODBCDEPS"); diff --git a/src/msw/dirdlg.cpp b/src/msw/dirdlg.cpp index abd115bf9a..460491c1f3 100644 --- a/src/msw/dirdlg.cpp +++ b/src/msw/dirdlg.cpp @@ -27,6 +27,9 @@ #pragma hdrstop #endif +#if defined(__WIN95__) && \ + (!defined(__GNUWIN32__) || defined(wxUSE_NORLANDER_HEADERS)) + #ifndef WX_PRECOMP #include "wx/utils.h" #include "wx/dialog.h" @@ -36,29 +39,21 @@ #include "wx/msw/private.h" -#if defined(__WIN95__) && \ - (!defined(__GNUWIN32__) || defined(wxUSE_NORLANDER_HEADERS)) - #define CAN_COMPILE_DIRDLG -//#else: we provide a stub version which doesn't do anything -#endif - -#ifdef CAN_COMPILE_DIRDLG - #include "shlobj.h" // Win95 shell -#endif +#include "shlobj.h" // Win95 shell // ---------------------------------------------------------------------------- // constants // ---------------------------------------------------------------------------- #ifndef MAX_PATH - #define MAX_PATH 4096 // be generuous + #define MAX_PATH 4096 // be generous #endif // ---------------------------------------------------------------------------- // wxWindows macros // ---------------------------------------------------------------------------- - IMPLEMENT_CLASS(wxDirDialog, wxDialog) +IMPLEMENT_CLASS(wxDirDialog, wxDialog) // ---------------------------------------------------------------------------- // private functions prototypes @@ -71,6 +66,7 @@ static void ItemListFree(LPITEMIDLIST pidl); static int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lp, LPARAM pData); + // ============================================================================ // implementation // ============================================================================ @@ -93,7 +89,6 @@ wxDirDialog::wxDirDialog(wxWindow *parent, int wxDirDialog::ShowModal() { -#ifdef CAN_COMPILE_DIRDLG BROWSEINFO bi; bi.hwndOwner = m_parent ? GetHwndOf(m_parent) : NULL; bi.pidlRoot = NULL; @@ -129,9 +124,6 @@ int wxDirDialog::ShowModal() } return wxID_OK; -#else // !CAN_COMPILE_DIRDLG - return wxID_CANCEL; -#endif // CAN_COMPILE_DIRDLG/!CAN_COMPILE_DIRDLG } // ---------------------------------------------------------------------------- @@ -188,3 +180,6 @@ static void ItemListFree(LPITEMIDLIST pidl) } } +#else + #include "../generic/dirdlgg.cpp" +#endif // compiler/platform on which the code here compiles diff --git a/src/msw/files.lst b/src/msw/files.lst new file mode 100644 index 0000000000..d0d851edb1 --- /dev/null +++ b/src/msw/files.lst @@ -0,0 +1,1066 @@ +# This file was automatically generated by tmake at 20:10, 2000/01/31 +# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MSW.T! +ALL_SOURCES = \ + generic/busyinfo.cpp \ + generic/calctrl.cpp \ + generic/choicdgg.cpp \ + generic/grid.cpp \ + generic/laywin.cpp \ + generic/logg.cpp \ + generic/numdlgg.cpp \ + generic/panelg.cpp \ + generic/plot.cpp \ + generic/progdlgg.cpp \ + generic/prop.cpp \ + generic/propform.cpp \ + generic/proplist.cpp \ + generic/sashwin.cpp \ + generic/scrolwin.cpp \ + generic/splitter.cpp \ + generic/statusbr.cpp \ + generic/tbarsmpl.cpp \ + generic/textdlgg.cpp \ + generic/tipdlg.cpp \ + generic/wizard.cpp \ + common/appcmn.cpp \ + common/choiccmn.cpp \ + common/clipcmn.cpp \ + common/cmdline.cpp \ + common/cmndata.cpp \ + common/config.cpp \ + common/ctrlcmn.cpp \ + common/ctrlsub.cpp \ + common/datetime.cpp \ + common/datstrm.cpp \ + common/db.cpp \ + common/dbtable.cpp \ + common/dcbase.cpp \ + common/dlgcmn.cpp \ + common/dndcmn.cpp \ + common/dobjcmn.cpp \ + common/docmdi.cpp \ + common/docview.cpp \ + common/dynarray.cpp \ + common/dynlib.cpp \ + common/encconv.cpp \ + common/event.cpp \ + common/extended.c \ + common/ffile.cpp \ + common/file.cpp \ + common/fileconf.cpp \ + common/filefn.cpp \ + common/filesys.cpp \ + common/fontcmn.cpp \ + common/fontmap.cpp \ + common/framecmn.cpp \ + common/fs_inet.cpp \ + common/fs_zip.cpp \ + common/ftp.cpp \ + common/gdicmn.cpp \ + common/geometry.cpp \ + common/gifdecod.cpp \ + common/hash.cpp \ + common/helpbase.cpp \ + common/http.cpp \ + common/imagall.cpp \ + common/imagbmp.cpp \ + common/image.cpp \ + common/imaggif.cpp \ + common/imagjpeg.cpp \ + common/imagpcx.cpp \ + common/imagpng.cpp \ + common/imagpnm.cpp \ + common/imagtiff.cpp \ + common/intl.cpp \ + common/ipcbase.cpp \ + common/layout.cpp \ + common/lboxcmn.cpp \ + common/list.cpp \ + common/log.cpp \ + common/longlong.cpp \ + common/memory.cpp \ + common/menucmn.cpp \ + common/mimecmn.cpp \ + common/module.cpp \ + common/mstream.cpp \ + common/object.cpp \ + common/objstrm.cpp \ + common/paper.cpp \ + common/prntbase.cpp \ + common/process.cpp \ + common/protocol.cpp \ + common/resource.cpp \ + common/sckaddr.cpp \ + common/sckfile.cpp \ + common/sckipc.cpp \ + common/sckstrm.cpp \ + common/serbase.cpp \ + common/sizer.cpp \ + common/socket.cpp \ + common/strconv.cpp \ + common/stream.cpp \ + common/string.cpp \ + common/tbarbase.cpp \ + common/textcmn.cpp \ + common/textfile.cpp \ + common/timercmn.cpp \ + common/tokenzr.cpp \ + common/txtstrm.cpp \ + common/unzip.c \ + common/url.cpp \ + common/utilscmn.cpp \ + common/valgen.cpp \ + common/validate.cpp \ + common/valtext.cpp \ + common/variant.cpp \ + common/wfstream.cpp \ + common/wincmn.cpp \ + common/wxchar.cpp \ + common/wxexpr.cpp \ + common/zipstrm.cpp \ + common/zstream.cpp \ + msw/accel.cpp \ + msw/app.cpp \ + msw/bitmap.cpp \ + msw/bmpbuttn.cpp \ + msw/brush.cpp \ + msw/button.cpp \ + msw/caret.cpp \ + msw/checkbox.cpp \ + msw/checklst.cpp \ + msw/choice.cpp \ + msw/clipbrd.cpp \ + msw/colordlg.cpp \ + msw/colour.cpp \ + msw/combobox.cpp \ + msw/control.cpp \ + msw/curico.cpp \ + msw/cursor.cpp \ + msw/data.cpp \ + msw/dc.cpp \ + msw/dcclient.cpp \ + msw/dcmemory.cpp \ + msw/dcprint.cpp \ + msw/dcscreen.cpp \ + msw/dde.cpp \ + msw/dialog.cpp \ + msw/dialup.cpp \ + msw/dib.cpp \ + msw/dibutils.cpp \ + msw/dir.cpp \ + msw/dirdlg.cpp \ + msw/dragimag.cpp \ + msw/enhmeta.cpp \ + msw/filedlg.cpp \ + msw/font.cpp \ + msw/fontdlg.cpp \ + msw/fontenum.cpp \ + msw/fontutil.cpp \ + msw/frame.cpp \ + msw/gauge95.cpp \ + msw/gdiimage.cpp \ + msw/gdiobj.cpp \ + msw/gsocket.c \ + msw/helpwin.cpp \ + msw/icon.cpp \ + msw/imaglist.cpp \ + msw/joystick.cpp \ + msw/listbox.cpp \ + msw/listctrl.cpp \ + msw/main.cpp \ + msw/mdi.cpp \ + msw/menu.cpp \ + msw/menuitem.cpp \ + msw/metafile.cpp \ + msw/mimetype.cpp \ + msw/minifram.cpp \ + msw/msgdlg.cpp \ + msw/nativdlg.cpp \ + msw/notebook.cpp \ + msw/ownerdrw.cpp \ + msw/palette.cpp \ + msw/pen.cpp \ + msw/penwin.cpp \ + msw/printdlg.cpp \ + msw/printwin.cpp \ + msw/radiobox.cpp \ + msw/radiobut.cpp \ + msw/regconf.cpp \ + msw/region.cpp \ + msw/registry.cpp \ + msw/scrolbar.cpp \ + msw/settings.cpp \ + msw/slider95.cpp \ + msw/spinbutt.cpp \ + msw/spinctrl.cpp \ + msw/statbmp.cpp \ + msw/statbox.cpp \ + msw/statbr95.cpp \ + msw/statline.cpp \ + msw/stattext.cpp \ + msw/tabctrl.cpp \ + msw/taskbar.cpp \ + msw/tbar95.cpp \ + msw/textctrl.cpp \ + msw/thread.cpp \ + msw/timer.cpp \ + msw/tooltip.cpp \ + msw/treectrl.cpp \ + msw/utils.cpp \ + msw/utilsexc.cpp \ + msw/wave.cpp \ + msw/window.cpp \ + msw/xpmhand.cpp \ + html/helpctrl.cpp \ + html/helpdata.cpp \ + html/helpfrm.cpp \ + html/htmlcell.cpp \ + html/htmlfilt.cpp \ + html/htmlpars.cpp \ + html/htmltag.cpp \ + html/htmlwin.cpp \ + html/htmprint.cpp \ + html/m_dflist.cpp \ + html/m_fonts.cpp \ + html/m_hline.cpp \ + html/m_image.cpp \ + html/m_layout.cpp \ + html/m_links.cpp \ + html/m_list.cpp \ + html/m_meta.cpp \ + html/m_pre.cpp \ + html/m_tables.cpp \ + html/winpars.cpp + +ALL_HEADERS = \ + accel.h \ + app.h \ + arrimpl.cpp \ + bitmap.h \ + bmpbuttn.h \ + brush.h \ + buffer.h \ + busyinfo.h \ + button.h \ + calctrl.h \ + caret.h \ + checkbox.h \ + checklst.h \ + choicdlg.h \ + choice.h \ + clipbrd.h \ + cmdline.h \ + cmndata.h \ + colordlg.h \ + colour.h \ + combobox.h \ + confbase.h \ + config.h \ + control.h \ + ctrlsub.h \ + cursor.h \ + dataobj.h \ + date.h \ + datetime.h \ + datetime.inl \ + datstrm.h \ + db.h \ + dbtable.h \ + dc.h \ + dcclient.h \ + dcmemory.h \ + dcprint.h \ + dcps.h \ + dcscreen.h \ + dde.h \ + debug.h \ + defs.h \ + dialog.h \ + dialup.h \ + dir.h \ + dirdlg.h \ + dnd.h \ + docmdi.h \ + docview.h \ + dragimag.h \ + dynarray.h \ + dynlib.h \ + encconv.h \ + event.h \ + expr.h \ + ffile.h \ + file.h \ + fileconf.h \ + filedlg.h \ + filefn.h \ + filesys.h \ + font.h \ + fontdlg.h \ + fontenum.h \ + fontmap.h \ + fontutil.h \ + frame.h \ + fs_inet.h \ + fs_zip.h \ + gauge.h \ + gdicmn.h \ + gdiobj.h \ + geometry.h \ + gifdecod.h \ + grid.h \ + gsocket.h \ + hash.h \ + help.h \ + helpbase.h \ + helphtml.h \ + helpwin.h \ + helpxlp.h \ + icon.h \ + imagbmp.h \ + image.h \ + imaggif.h \ + imagjpeg.h \ + imaglist.h \ + imagpcx.h \ + imagpng.h \ + imagpnm.h \ + imagtiff.h \ + intl.h \ + ioswrap.h \ + ipcbase.h \ + isql.h \ + isqlext.h \ + joystick.h \ + layout.h \ + laywin.h \ + list.h \ + listbox.h \ + listctrl.h \ + listimpl.cpp \ + log.h \ + longlong.h \ + matrix.h \ + mdi.h \ + memconf.h \ + memory.h \ + menu.h \ + menuitem.h \ + metafile.h \ + mimetype.h \ + minifram.h \ + module.h \ + msgdlg.h \ + mstream.h \ + notebook.h \ + object.h \ + objstrm.h \ + odbc.h \ + ownerdrw.h \ + palette.h \ + panel.h \ + paper.h \ + pen.h \ + plot.h \ + print.h \ + printdlg.h \ + prntbase.h \ + process.h \ + progdlg.h \ + prop.h \ + propform.h \ + proplist.h \ + radiobox.h \ + radiobut.h \ + region.h \ + resource.h \ + sashwin.h \ + sckaddr.h \ + sckipc.h \ + sckstrm.h \ + scrolbar.h \ + scrolwin.h \ + serbase.h \ + settings.h \ + setup.h \ + sizer.h \ + slider.h \ + socket.h \ + spinbutt.h \ + spinctrl.h \ + splitter.h \ + statbmp.h \ + statbox.h \ + statline.h \ + stattext.h \ + statusbr.h \ + strconv.h \ + stream.h \ + string.h \ + tab.h \ + tabctrl.h \ + taskbar.h \ + tbarbase.h \ + tbarsmpl.h \ + textctrl.h \ + textdlg.h \ + textfile.h \ + thread.h \ + time.h \ + timer.h \ + tipdlg.h \ + tokenzr.h \ + toolbar.h \ + tooltip.h \ + treectrl.h \ + txtstrm.h \ + types.h \ + url.h \ + utils.h \ + valgen.h \ + validate.h \ + valtext.h \ + variant.h \ + version.h \ + wave.h \ + wfstream.h \ + window.h \ + wizard.h \ + wx.h \ + wx_cw.h \ + wx_cw_cm.h \ + wx_cw_d.h \ + wxchar.h \ + wxexpr.h \ + wxhtml.h \ + wxprec.h \ + xpmhand.h \ + zipstrm.h \ + zstream.h \ + msw/accel.h \ + msw/app.h \ + msw/bitmap.h \ + msw/bmpbuttn.h \ + msw/brush.h \ + msw/button.h \ + msw/caret.h \ + msw/checkbox.h \ + msw/checklst.h \ + msw/choice.h \ + msw/clipbrd.h \ + msw/colordlg.h \ + msw/colour.h \ + msw/combobox.h \ + msw/control.h \ + msw/curico.h \ + msw/curicop.h \ + msw/cursor.h \ + msw/dc.h \ + msw/dcclient.h \ + msw/dcmemory.h \ + msw/dcprint.h \ + msw/dcscreen.h \ + msw/dde.h \ + msw/dialog.h \ + msw/dib.h \ + msw/dibutils.h \ + msw/dirdlg.h \ + msw/dragimag.h \ + msw/enhmeta.h \ + msw/filedlg.h \ + msw/font.h \ + msw/fontdlg.h \ + msw/frame.h \ + msw/gauge.h \ + msw/gauge95.h \ + msw/gaugemsw.h \ + msw/gdiimage.h \ + msw/gdiobj.h \ + msw/helpwin.h \ + msw/icon.h \ + msw/imaglist.h \ + msw/iniconf.h \ + msw/joystick.h \ + msw/listbox.h \ + msw/listctrl.h \ + msw/mdi.h \ + msw/menu.h \ + msw/menuitem.h \ + msw/metafile.h \ + msw/mimetype.h \ + msw/minifram.h \ + msw/msgdlg.h \ + msw/msvcrt.h \ + msw/notebook.h \ + msw/palette.h \ + msw/pen.h \ + msw/printdlg.h \ + msw/printwin.h \ + msw/private.h \ + msw/radiobox.h \ + msw/radiobut.h \ + msw/regconf.h \ + msw/region.h \ + msw/registry.h \ + msw/scrolbar.h \ + msw/settings.h \ + msw/setup0.h \ + msw/slider.h \ + msw/slider95.h \ + msw/slidrmsw.h \ + msw/spinbutt.h \ + msw/statbmp.h \ + msw/statbox.h \ + msw/statbr95.h \ + msw/statline.h \ + msw/stattext.h \ + msw/tabctrl.h \ + msw/taskbar.h \ + msw/tbar95.h \ + msw/tbarmsw.h \ + msw/textctrl.h \ + msw/timer.h \ + msw/tooltip.h \ + msw/treectrl.h \ + msw/wave.h \ + msw/window.h \ + msw/winundef.h \ + msw/xpmhand.h \ + generic/calctrl.h \ + generic/caret.h \ + generic/choicdgg.h \ + generic/colrdlgg.h \ + generic/dcpsg.h \ + generic/dirdlgg.h \ + generic/filedlgg.h \ + generic/fontdlgg.h \ + generic/grid.h \ + generic/gridg.h \ + generic/helpext.h \ + generic/helphtml.h \ + generic/helpwxht.h \ + generic/helpxlp.h \ + generic/imaglist.h \ + generic/laywin.h \ + generic/listctrl.h \ + generic/msgdlgg.h \ + generic/notebook.h \ + generic/panelg.h \ + generic/plot.h \ + generic/printps.h \ + generic/prntdlgg.h \ + generic/progdlgg.h \ + generic/sashwin.h \ + generic/scrolwin.h \ + generic/splitter.h \ + generic/statusbr.h \ + generic/tabg.h \ + generic/textdlgg.h \ + generic/treectrl.h \ + generic/wizard.h \ + unix/execute.h \ + unix/fontutil.h \ + unix/gsockunx.h \ + unix/mimetype.h \ + html/forcelnk.h \ + html/helpctrl.h \ + html/helpdata.h \ + html/helpfrm.h \ + html/htmlcell.h \ + html/htmldefs.h \ + html/htmlfilt.h \ + html/htmlpars.h \ + html/htmltag.h \ + html/htmlwin.h \ + html/htmprint.h \ + html/m_templ.h \ + html/winpars.h \ + protocol/file.h \ + protocol/ftp.h \ + protocol/http.h \ + protocol/protocol.h + +COMMONOBJS = \ + parser.o \ + appcmn.o \ + choiccmn.o \ + clipcmn.o \ + cmdline.o \ + cmndata.o \ + config.o \ + ctrlcmn.o \ + ctrlsub.o \ + datetime.o \ + datstrm.o \ + db.o \ + dbtable.o \ + dcbase.o \ + dlgcmn.o \ + dndcmn.o \ + dobjcmn.o \ + docmdi.o \ + docview.o \ + dynarray.o \ + dynlib.o \ + encconv.o \ + event.o \ + extended.o \ + ffile.o \ + file.o \ + fileconf.o \ + filefn.o \ + filesys.o \ + fontcmn.o \ + fontmap.o \ + framecmn.o \ + fs_inet.o \ + fs_zip.o \ + ftp.o \ + gdicmn.o \ + geometry.o \ + gifdecod.o \ + hash.o \ + helpbase.o \ + http.o \ + imagall.o \ + imagbmp.o \ + image.o \ + imaggif.o \ + imagjpeg.o \ + imagpcx.o \ + imagpng.o \ + imagpnm.o \ + imagtiff.o \ + intl.o \ + ipcbase.o \ + layout.o \ + lboxcmn.o \ + list.o \ + log.o \ + longlong.o \ + memory.o \ + menucmn.o \ + mimecmn.o \ + module.o \ + mstream.o \ + object.o \ + objstrm.o \ + paper.o \ + prntbase.o \ + process.o \ + protocol.o \ + resource.o \ + sckaddr.o \ + sckfile.o \ + sckipc.o \ + sckstrm.o \ + serbase.o \ + sizer.o \ + socket.o \ + strconv.o \ + stream.o \ + string.o \ + tbarbase.o \ + textcmn.o \ + textfile.o \ + timercmn.o \ + tokenzr.o \ + txtstrm.o \ + unzip.o \ + url.o \ + utilscmn.o \ + valgen.o \ + validate.o \ + valtext.o \ + variant.o \ + wfstream.o \ + wincmn.o \ + wxchar.o \ + wxexpr.o \ + zipstrm.o \ + zstream.o + +COMMONDEPS = \ + parser.d \ + appcmn.d \ + choiccmn.d \ + clipcmn.d \ + cmdline.d \ + cmndata.d \ + config.d \ + ctrlcmn.d \ + ctrlsub.d \ + datetime.d \ + datstrm.d \ + db.d \ + dbtable.d \ + dcbase.d \ + dlgcmn.d \ + dndcmn.d \ + dobjcmn.d \ + docmdi.d \ + docview.d \ + dynarray.d \ + dynlib.d \ + encconv.d \ + event.d \ + extended.d \ + ffile.d \ + file.d \ + fileconf.d \ + filefn.d \ + filesys.d \ + fontcmn.d \ + fontmap.d \ + framecmn.d \ + fs_inet.d \ + fs_zip.d \ + ftp.d \ + gdicmn.d \ + geometry.d \ + gifdecod.d \ + hash.d \ + helpbase.d \ + http.d \ + imagall.d \ + imagbmp.d \ + image.d \ + imaggif.d \ + imagjpeg.d \ + imagpcx.d \ + imagpng.d \ + imagpnm.d \ + imagtiff.d \ + intl.d \ + ipcbase.d \ + layout.d \ + lboxcmn.d \ + list.d \ + log.d \ + longlong.d \ + memory.d \ + menucmn.d \ + mimecmn.d \ + module.d \ + mstream.d \ + object.d \ + objstrm.d \ + paper.d \ + prntbase.d \ + process.d \ + protocol.d \ + resource.d \ + sckaddr.d \ + sckfile.d \ + sckipc.d \ + sckstrm.d \ + serbase.d \ + sizer.d \ + socket.d \ + strconv.d \ + stream.d \ + string.d \ + tbarbase.d \ + textcmn.d \ + textfile.d \ + timercmn.d \ + tokenzr.d \ + txtstrm.d \ + unzip.d \ + url.d \ + utilscmn.d \ + valgen.d \ + validate.d \ + valtext.d \ + variant.d \ + wfstream.d \ + wincmn.d \ + wxchar.d \ + wxexpr.d \ + zipstrm.d \ + zstream.d + +GENERICOBJS = \ + busyinfo.o \ + calctrl.o \ + choicdgg.o \ + grid.o \ + laywin.o \ + logg.o \ + numdlgg.o \ + panelg.o \ + plot.o \ + progdlgg.o \ + prop.o \ + propform.o \ + proplist.o \ + sashwin.o \ + scrolwin.o \ + splitter.o \ + statusbr.o \ + tbarsmpl.o \ + textdlgg.o \ + tipdlg.o \ + wizard.o + +GENERICDEPS = \ + busyinfo.d \ + calctrl.d \ + choicdgg.d \ + grid.d \ + laywin.d \ + logg.d \ + numdlgg.d \ + panelg.d \ + plot.d \ + progdlgg.d \ + prop.d \ + propform.d \ + proplist.d \ + sashwin.d \ + scrolwin.d \ + splitter.d \ + statusbr.d \ + tbarsmpl.d \ + textdlgg.d \ + tipdlg.d \ + wizard.d + +GUIOBJS = \ + accel.o \ + app.o \ + bitmap.o \ + bmpbuttn.o \ + brush.o \ + button.o \ + caret.o \ + checkbox.o \ + checklst.o \ + choice.o \ + clipbrd.o \ + colordlg.o \ + colour.o \ + combobox.o \ + control.o \ + curico.o \ + cursor.o \ + data.o \ + dc.o \ + dcclient.o \ + dcmemory.o \ + dcprint.o \ + dcscreen.o \ + dde.o \ + dialog.o \ + dialup.o \ + dib.o \ + dibutils.o \ + dir.o \ + dirdlg.o \ + dragimag.o \ + enhmeta.o \ + filedlg.o \ + font.o \ + fontdlg.o \ + fontenum.o \ + fontutil.o \ + frame.o \ + gauge95.o \ + gdiimage.o \ + gdiobj.o \ + gsocket.o \ + helpwin.o \ + icon.o \ + imaglist.o \ + joystick.o \ + listbox.o \ + listctrl.o \ + main.o \ + mdi.o \ + menu.o \ + menuitem.o \ + metafile.o \ + mimetype.o \ + minifram.o \ + msgdlg.o \ + nativdlg.o \ + notebook.o \ + ownerdrw.o \ + palette.o \ + pen.o \ + penwin.o \ + printdlg.o \ + printwin.o \ + radiobox.o \ + radiobut.o \ + regconf.o \ + region.o \ + registry.o \ + scrolbar.o \ + settings.o \ + slider95.o \ + spinbutt.o \ + spinctrl.o \ + statbmp.o \ + statbox.o \ + statbr95.o \ + statline.o \ + stattext.o \ + tabctrl.o \ + taskbar.o \ + tbar95.o \ + textctrl.o \ + thread.o \ + timer.o \ + tooltip.o \ + treectrl.o \ + utils.o \ + utilsexc.o \ + wave.o \ + window.o \ + xpmhand.o + +GUIDEPS = \ + accel.d \ + app.d \ + bitmap.d \ + bmpbuttn.d \ + brush.d \ + button.d \ + caret.d \ + checkbox.d \ + checklst.d \ + choice.d \ + clipbrd.d \ + colordlg.d \ + colour.d \ + combobox.d \ + control.d \ + curico.d \ + cursor.d \ + data.d \ + dc.d \ + dcclient.d \ + dcmemory.d \ + dcprint.d \ + dcscreen.d \ + dde.d \ + dialog.d \ + dialup.d \ + dib.d \ + dibutils.d \ + dir.d \ + dirdlg.d \ + dragimag.d \ + enhmeta.d \ + filedlg.d \ + font.d \ + fontdlg.d \ + fontenum.d \ + fontutil.d \ + frame.d \ + gauge95.d \ + gdiimage.d \ + gdiobj.d \ + gsocket.d \ + helpwin.d \ + icon.d \ + imaglist.d \ + joystick.d \ + listbox.d \ + listctrl.d \ + main.d \ + mdi.d \ + menu.d \ + menuitem.d \ + metafile.d \ + mimetype.d \ + minifram.d \ + msgdlg.d \ + nativdlg.d \ + notebook.d \ + ownerdrw.d \ + palette.d \ + pen.d \ + penwin.d \ + printdlg.d \ + printwin.d \ + radiobox.d \ + radiobut.d \ + regconf.d \ + region.d \ + registry.d \ + scrolbar.d \ + settings.d \ + slider95.d \ + spinbutt.d \ + spinctrl.d \ + statbmp.d \ + statbox.d \ + statbr95.d \ + statline.d \ + stattext.d \ + tabctrl.d \ + taskbar.d \ + tbar95.d \ + textctrl.d \ + thread.d \ + timer.d \ + tooltip.d \ + treectrl.d \ + utils.d \ + utilsexc.d \ + wave.d \ + window.d \ + xpmhand.d + +UNIXOBJS = \ + +UNIXDEPS = \ + +HTMLOBJS = \ + helpctrl.o \ + helpdata.o \ + helpfrm.o \ + htmlcell.o \ + htmlfilt.o \ + htmlpars.o \ + htmltag.o \ + htmlwin.o \ + htmprint.o \ + m_dflist.o \ + m_fonts.o \ + m_hline.o \ + m_image.o \ + m_layout.o \ + m_links.o \ + m_list.o \ + m_meta.o \ + m_pre.o \ + m_tables.o \ + winpars.o + +HTMLDEPS = \ + helpctrl.d \ + helpdata.d \ + helpfrm.d \ + htmlcell.d \ + htmlfilt.d \ + htmlpars.d \ + htmltag.d \ + htmlwin.d \ + htmprint.d \ + m_dflist.d \ + m_fonts.d \ + m_hline.d \ + m_image.d \ + m_layout.d \ + m_links.d \ + m_list.d \ + m_meta.d \ + m_pre.d \ + m_tables.d \ + winpars.d + +IODBCOBJS = \ + +IODBCDEPS = \