From ca152e4cf4936f813f6a8498f4c88285c6a766f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 5 Feb 2007 19:24:55 +0000 Subject: [PATCH] added script to generate parts of rsp manifests with samples files and bakefile-generates files git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44368 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- distrib/scripts/create_archives.sh | 2 +- distrib/scripts/mac/tardist | 50 +- distrib/scripts/manifests/dmc.rsp | 435 +++-- distrib/scripts/manifests/generic.rsp | 1156 ----------- distrib/scripts/manifests/generic_samples.rsp | 1740 +++++++++++++++++ distrib/scripts/manifests/makefile.rsp | 229 +-- distrib/scripts/manifests/vc.rsp | 447 +++-- distrib/scripts/manifests/wince.rsp | 368 ++-- distrib/scripts/msw/makesetup.sh | 2 +- distrib/scripts/update-manifests.sh | 102 + docs/tech/tn0001.txt | 5 +- 11 files changed, 2623 insertions(+), 1913 deletions(-) create mode 100644 distrib/scripts/manifests/generic_samples.rsp create mode 100755 distrib/scripts/update-manifests.sh diff --git a/distrib/scripts/create_archives.sh b/distrib/scripts/create_archives.sh index 56e9d63f57..1a11589f3f 100755 --- a/distrib/scripts/create_archives.sh +++ b/distrib/scripts/create_archives.sh @@ -41,7 +41,7 @@ getfilelist(){ filelist="base.rsp" contribfiles="stc.rsp contrib.rsp ogl.rsp" utilsfiles="tex2rtf.rsp utils.rsp utilmake.rsp" - commonfiles="generic.rsp jpeg.rsp tiff.rsp xml.rsp deprecated.rsp makefile.rsp $utilsfiles $contribfiles" + commonfiles="generic.rsp generic_samples.rsp jpeg.rsp tiff.rsp xml.rsp deprecated.rsp makefile.rsp $utilsfiles $contribfiles" if [ ! $port = "base" ]; then filelist="$filelist $commonfiles" diff --git a/distrib/scripts/mac/tardist b/distrib/scripts/mac/tardist index 29a3abb620..9cabbbc85c 100644 --- a/distrib/scripts/mac/tardist +++ b/distrib/scripts/mac/tardist @@ -64,7 +64,22 @@ echo Tarring wxMac... cp $WXSRC/include/wx/mac/setup0.h $WXSRC/include/wx/setup.h cp $WXSRC/include/wx/mac/setup0.h $WXSRC/include/wx/mac/setup.h cd $WXSRC -cat $SCRIPTDIR/manifests/mac.rsp $SCRIPTDIR/manifests/cocoa.rsp $SCRIPTDIR/manifests/generic.rsp $SCRIPTDIR/manifests/cw_mac.rsp $SCRIPTDIR/manifests/tex2rtf.rsp $SCRIPTDIR/manifests/utils.rsp $SCRIPTDIR/manifests/ogl.rsp $SCRIPTDIR/manifests/stc.rsp $SCRIPTDIR/manifests/xml.rsp $SCRIPTDIR/manifests/contrib.rsp $SCRIPTDIR/manifests/deprecated.rsp $SCRIPTDIR/manifests/makefile.rsp $SCRIPTDIR/manifests/tiff.rsp $SCRIPTDIR/manifests/jpeg.rsp > /tmp/wxmac_in.txt +cat $SCRIPTDIR/manifests/mac.rsp \ + $SCRIPTDIR/manifests/cocoa.rsp \ + $SCRIPTDIR/manifests/generic.rsp \ + $SCRIPTDIR/manifests/generic_samples.rsp \ + $SCRIPTDIR/manifests/cw_mac.rsp \ + $SCRIPTDIR/manifests/tex2rtf.rsp \ + $SCRIPTDIR/manifests/utils.rsp \ + $SCRIPTDIR/manifests/ogl.rsp \ + $SCRIPTDIR/manifests/stc.rsp \ + $SCRIPTDIR/manifests/xml.rsp \ + $SCRIPTDIR/manifests/contrib.rsp \ + $SCRIPTDIR/manifests/deprecated.rsp \ + $SCRIPTDIR/manifests/makefile.rsp \ + $SCRIPTDIR/manifests/tiff.rsp \ + $SCRIPTDIR/manifests/jpeg.rsp \ + > /tmp/wxmac_in.txt expandlines /tmp/wxmac_in.txt /tmp/wxmac.txt $TAR cf $WXDEST/wxMac-${WXVER}.tar -T /tmp/wxmac.txt @@ -111,7 +126,38 @@ echo Tarring wxAll... ### wxAll: all distributions in one giant archive cd $WXSRC -cat $SCRIPTDIR/manifests/generic.rsp $SCRIPTDIR/manifests/msw.rsp $SCRIPTDIR/manifests/wince.rsp $SCRIPTDIR/manifests/vc.rsp $SCRIPTDIR/manifests/cw.rsp $SCRIPTDIR/manifests/cw_mac.rsp $SCRIPTDIR/manifests/gtk.rsp $SCRIPTDIR/manifests/x11.rsp $SCRIPTDIR/manifests/motif.rsp $SCRIPTDIR/manifests/mac.rsp $SCRIPTDIR/manifests/cocoa.rsp $SCRIPTDIR/manifests/os2.rsp $SCRIPTDIR/manifests/palmos.rsp $SCRIPTDIR/manifests/x11.rsp $SCRIPTDIR/manifests/univ.rsp $SCRIPTDIR/manifests/mgl.rsp $SCRIPTDIR/manifests/contrib.rsp $SCRIPTDIR/manifests/deprecated.rsp $SCRIPTDIR/manifests/utilmake.rsp $SCRIPTDIR/manifests/utils.rsp $SCRIPTDIR/manifests/mmedia.rsp $SCRIPTDIR/manifests/tex2rtf.rsp $SCRIPTDIR/manifests/stc.rsp $SCRIPTDIR/manifests/xml.rsp $SCRIPTDIR/manifests/ogl.rsp $SCRIPTDIR/manifests/makefile.rsp $SCRIPTDIR/manifests/tiff.rsp $SCRIPTDIR/manifests/jpeg.rsp $SCRIPTDIR/manifests/docsrc.rsp | uniq > /tmp/wxall_in.txt +cat $SCRIPTDIR/manifests/generic.rsp \ + $SCRIPTDIR/manifests/generic_samples.rsp \ + $SCRIPTDIR/manifests/msw.rsp \ + $SCRIPTDIR/manifests/wince.rsp \ + $SCRIPTDIR/manifests/vc.rsp \ + $SCRIPTDIR/manifests/cw.rsp \ + $SCRIPTDIR/manifests/cw_mac.rsp \ + $SCRIPTDIR/manifests/gtk.rsp \ + $SCRIPTDIR/manifests/x11.rsp \ + $SCRIPTDIR/manifests/motif.rsp \ + $SCRIPTDIR/manifests/mac.rsp \ + $SCRIPTDIR/manifests/cocoa.rsp \ + $SCRIPTDIR/manifests/os2.rsp \ + $SCRIPTDIR/manifests/palmos.rsp \ + $SCRIPTDIR/manifests/x11.rsp \ + $SCRIPTDIR/manifests/univ.rsp \ + $SCRIPTDIR/manifests/mgl.rsp \ + $SCRIPTDIR/manifests/dfb.rsp \ + $SCRIPTDIR/manifests/contrib.rsp \ + $SCRIPTDIR/manifests/deprecated.rsp \ + $SCRIPTDIR/manifests/utilmake.rsp \ + $SCRIPTDIR/manifests/utils.rsp \ + $SCRIPTDIR/manifests/mmedia.rsp \ + $SCRIPTDIR/manifests/tex2rtf.rsp \ + $SCRIPTDIR/manifests/stc.rsp \ + $SCRIPTDIR/manifests/xml.rsp \ + $SCRIPTDIR/manifests/ogl.rsp \ + $SCRIPTDIR/manifests/makefile.rsp \ + $SCRIPTDIR/manifests/tiff.rsp \ + $SCRIPTDIR/manifests/jpeg.rsp \ + $SCRIPTDIR/manifests/docsrc.rsp \ + | uniq > /tmp/wxall_in.txt expandlines /tmp/wxall_in.txt /tmp/wxall.txt $TAR cf $WXDEST/wxWidgets-${WXVER}.tar -T /tmp/wxall.txt diff --git a/distrib/scripts/manifests/dmc.rsp b/distrib/scripts/manifests/dmc.rsp index 932011f6a8..960bbbfc9e 100644 --- a/distrib/scripts/manifests/dmc.rsp +++ b/distrib/scripts/manifests/dmc.rsp @@ -1,147 +1,288 @@ -build/msw/config.dm? -build/msw/makefile.dm? -contrib/build/animate/makefile.dm? -contrib/build/deprecated/makefile.dm? -contrib/build/fl/makefile.dm? -contrib/build/foldbar/makefile.dm? -contrib/build/gizmos/makefile.dm? -contrib/build/mmedia/makefile.dm? -contrib/build/net/makefile.dm? -contrib/build/ogl/makefile.dm? -contrib/build/plot/makefile.dm? -contrib/build/stc/makefile.dm? -contrib/build/svg/makefile.dm? -contrib/samples/animate/makefile.dm? -contrib/samples/deprecated/proplist/makefile.dm? -contrib/samples/deprecated/resource/makefile.dm? -contrib/samples/deprecated/treelay/makefile.dm? -contrib/samples/fl/makefile.dm? -contrib/samples/gizmos/dynsash/makefile.dm? -contrib/samples/gizmos/dynsash_switch/makefile.dm? -contrib/samples/gizmos/editlbox/makefile.dm? -contrib/samples/gizmos/led/makefile.dm? -contrib/samples/gizmos/multicell/makefile.dm? -contrib/samples/gizmos/splittree/makefile.dm? -contrib/samples/mmedia/makefile.dm? -contrib/samples/ogl/ogledit/makefile.dm? -contrib/samples/ogl/studio/makefile.dm? -contrib/samples/plot/makefile.dm? -contrib/samples/stc/makefile.dm? -contrib/samples/svg/makefile.dm? -contrib/utils/convertrc/makefile.dm? -contrib/samples/foldbar/extended/makefile.dm? -contrib/samples/foldbar/foldpanelbar/makefile.dm? -demos/bombs/makefile.dm? -demos/dbbrowse/makefile.dm? -demos/forty/makefile.dm? -demos/fractal/makefile.dm? -demos/life/makefile.dm? -demos/makefile.dm? -demos/poem/makefile.dm? -samples/access/makefile.dm? -samples/animate/makefile.dm? -samples/artprov/makefile.dm? -samples/aui/makefile.dm? -samples/calendar/makefile.dm? -samples/caret/makefile.dm? -samples/checklst/makefile.dm? -samples/collpane/makefile.dm? -samples/combo/makefile.dm? -samples/config/makefile.dm? -samples/console/makefile.dm? -samples/controls/makefile.dm? -samples/dataview/makefile.dm? -samples/db/makefile.dm? -samples/debugrpt/makefile.dm? -samples/dialogs/makefile.dm? -samples/dialup/makefile.dm? -samples/display/makefile.dm? -samples/dnd/makefile.dm? -samples/docview/makefile.dm? -samples/docvwmdi/makefile.dm? -samples/dragimag/makefile.dm? -samples/drawing/makefile.dm? -samples/dynamic/makefile.dm? -samples/erase/makefile.dm? -samples/event/makefile.dm? -samples/except/makefile.dm? -samples/exec/makefile.dm? -samples/font/makefile.dm? -samples/grid/makefile.dm? -samples/help/makefile.dm? -samples/htlbox/makefile.dm? -samples/html/about/makefile.dm? -samples/html/help/makefile.dm? -samples/html/helpview/makefile.dm? -samples/html/htmlctrl/makefile.dm? -samples/html/makefile.dm? -samples/html/printing/makefile.dm? -samples/html/test/makefile.dm? -samples/html/virtual/makefile.dm? -samples/html/widget/makefile.dm? -samples/html/zip/makefile.dm? -samples/image/makefile.dm? -samples/internat/makefile.dm? -samples/ipc/makefile.dm? -samples/joytest/makefile.dm? -samples/keyboard/makefile.dm? -samples/layout/makefile.dm? -samples/listbox/makefile.dm? -samples/listctrl/makefile.dm? -samples/makefile.dm? -samples/mdi/makefile.dm? -samples/mediaplayer/makefile.dm? -samples/memcheck/makefile.dm? -samples/menu/makefile.dm? -samples/mfc/makefile.dm? -samples/minifram/makefile.dm? -samples/minimal/makefile.dm? -samples/mobile/makefile.dm? -samples/mobile/styles/makefile.dm? -samples/mobile/wxedit/makefile.dm? -samples/multimon/makefile.dm? -samples/nativdlg/makefile.dm? -samples/notebook/makefile.dm? -samples/oleauto/makefile.dm? -samples/opengl/cube/makefile.dm? -samples/opengl/isosurf/makefile.dm? -samples/opengl/makefile.dm? -samples/opengl/penguin/makefile.dm? -samples/ownerdrw/makefile.dm? -samples/png/makefile.dm? -samples/popup/makefile.dm? -samples/power/makefile.dm? -samples/printing/makefile.dm? -samples/propsize/makefile.dm? -samples/regtest/makefile.dm? -samples/render/makefile.dm? -samples/rotate/makefile.dm? -samples/sashtest/makefile.dm? -samples/scroll/makefile.dm? -samples/scrollsub/makefile.dm? -samples/shaped/makefile.dm? -samples/sockets/makefile.dm? -samples/sound/makefile.dm? -samples/splash/makefile.dm? -samples/splitter/makefile.dm? -samples/statbar/makefile.dm? -samples/taskbar/makefile.dm? -samples/text/makefile.dm? -samples/thread/makefile.dm? -samples/toolbar/makefile.dm? -samples/treectrl/makefile.dm? -samples/typetest/makefile.dm? -samples/validate/makefile.dm? -samples/vscroll/makefile.dm? -samples/xrc/makefile.dm? -samples/widgets/makefile.dm? -samples/wizard/makefile.dm? -tests/makefile.dm? -utils/emulator/src/makefile.dm? -utils/HelpGen/src/makefile.dm? -utils/helpview/src/makefile.dm? -utils/hhp2cached/makefile.dm? -utils/makefile.dm? -utils/tex2rtf/src/makefile.dm? -utils/wxrc/makefile.dm? - +build/msw/config.dmc +build/msw/config.dms +build/msw/makefile.dmc +build/msw/makefile.dms +contrib/build/deprecated/makefile.dmc +contrib/build/deprecated/makefile.dms +contrib/build/fl/makefile.dmc +contrib/build/fl/makefile.dms +contrib/build/foldbar/makefile.dmc +contrib/build/foldbar/makefile.dms +contrib/build/gizmos/makefile.dmc +contrib/build/gizmos/makefile.dms +contrib/build/mmedia/makefile.dmc +contrib/build/mmedia/makefile.dms +contrib/build/net/makefile.dmc +contrib/build/net/makefile.dms +contrib/build/ogl/makefile.dmc +contrib/build/ogl/makefile.dms +contrib/build/plot/makefile.dmc +contrib/build/plot/makefile.dms +contrib/build/stc/makefile.dmc +contrib/build/stc/makefile.dms +contrib/build/svg/makefile.dmc +contrib/build/svg/makefile.dms +contrib/samples/deprecated/proplist/makefile.dmc +contrib/samples/deprecated/proplist/makefile.dms +contrib/samples/deprecated/resource/makefile.dmc +contrib/samples/deprecated/resource/makefile.dms +contrib/samples/deprecated/treelay/makefile.dmc +contrib/samples/deprecated/treelay/makefile.dms +contrib/samples/fl/makefile.dmc +contrib/samples/fl/makefile.dms +contrib/samples/foldbar/extended/makefile.dmc +contrib/samples/foldbar/extended/makefile.dms +contrib/samples/foldbar/foldpanelbar/makefile.dmc +contrib/samples/foldbar/foldpanelbar/makefile.dms +contrib/samples/gizmos/dynsash/makefile.dmc +contrib/samples/gizmos/dynsash/makefile.dms +contrib/samples/gizmos/dynsash_switch/makefile.dmc +contrib/samples/gizmos/dynsash_switch/makefile.dms +contrib/samples/gizmos/editlbox/makefile.dmc +contrib/samples/gizmos/editlbox/makefile.dms +contrib/samples/gizmos/led/makefile.dmc +contrib/samples/gizmos/led/makefile.dms +contrib/samples/gizmos/multicell/makefile.dmc +contrib/samples/gizmos/multicell/makefile.dms +contrib/samples/gizmos/splittree/makefile.dmc +contrib/samples/gizmos/splittree/makefile.dms +contrib/samples/mmedia/makefile.dmc +contrib/samples/mmedia/makefile.dms +contrib/samples/ogl/ogledit/makefile.dmc +contrib/samples/ogl/ogledit/makefile.dms +contrib/samples/ogl/studio/makefile.dmc +contrib/samples/ogl/studio/makefile.dms +contrib/samples/plot/makefile.dmc +contrib/samples/plot/makefile.dms +contrib/samples/stc/makefile.dmc +contrib/samples/stc/makefile.dms +contrib/samples/svg/makefile.dmc +contrib/samples/svg/makefile.dms +contrib/utils/convertrc/makefile.dmc +contrib/utils/convertrc/makefile.dms +demos/bombs/makefile.dmc +demos/bombs/makefile.dms +demos/dbbrowse/makefile.dmc +demos/dbbrowse/makefile.dms +demos/forty/makefile.dmc +demos/forty/makefile.dms +demos/fractal/makefile.dmc +demos/fractal/makefile.dms +demos/life/makefile.dmc +demos/life/makefile.dms +demos/makefile.dmc +demos/makefile.dms +demos/poem/makefile.dmc +demos/poem/makefile.dms +samples/access/makefile.dmc +samples/access/makefile.dms +samples/animate/makefile.dmc +samples/animate/makefile.dms +samples/artprov/makefile.dmc +samples/artprov/makefile.dms +samples/aui/makefile.dmc +samples/aui/makefile.dms +samples/calendar/makefile.dmc +samples/calendar/makefile.dms +samples/caret/makefile.dmc +samples/caret/makefile.dms +samples/checklst/makefile.dmc +samples/checklst/makefile.dms +samples/collpane/makefile.dmc +samples/collpane/makefile.dms +samples/combo/makefile.dmc +samples/combo/makefile.dms +samples/config/makefile.dmc +samples/config/makefile.dms +samples/console/makefile.dmc +samples/console/makefile.dms +samples/controls/makefile.dmc +samples/controls/makefile.dms +samples/dataview/makefile.dmc +samples/dataview/makefile.dms +samples/db/makefile.dmc +samples/db/makefile.dms +samples/debugrpt/makefile.dmc +samples/debugrpt/makefile.dms +samples/dialogs/makefile.dmc +samples/dialogs/makefile.dms +samples/dialup/makefile.dmc +samples/dialup/makefile.dms +samples/display/makefile.dmc +samples/display/makefile.dms +samples/dnd/makefile.dmc +samples/dnd/makefile.dms +samples/docview/makefile.dmc +samples/docview/makefile.dms +samples/docvwmdi/makefile.dmc +samples/docvwmdi/makefile.dms +samples/dragimag/makefile.dmc +samples/dragimag/makefile.dms +samples/drawing/makefile.dmc +samples/drawing/makefile.dms +samples/dynamic/makefile.dmc +samples/dynamic/makefile.dms +samples/erase/makefile.dmc +samples/erase/makefile.dms +samples/event/makefile.dmc +samples/event/makefile.dms +samples/except/makefile.dmc +samples/except/makefile.dms +samples/exec/makefile.dmc +samples/exec/makefile.dms +samples/font/makefile.dmc +samples/font/makefile.dms +samples/grid/makefile.dmc +samples/grid/makefile.dms +samples/help/makefile.dmc +samples/help/makefile.dms +samples/htlbox/makefile.dmc +samples/htlbox/makefile.dms +samples/html/about/makefile.dmc +samples/html/about/makefile.dms +samples/html/help/makefile.dmc +samples/html/help/makefile.dms +samples/html/helpview/makefile.dmc +samples/html/helpview/makefile.dms +samples/html/makefile.dmc +samples/html/makefile.dms +samples/html/printing/makefile.dmc +samples/html/printing/makefile.dms +samples/html/test/makefile.dmc +samples/html/test/makefile.dms +samples/html/virtual/makefile.dmc +samples/html/virtual/makefile.dms +samples/html/widget/makefile.dmc +samples/html/widget/makefile.dms +samples/html/zip/makefile.dmc +samples/html/zip/makefile.dms +samples/image/makefile.dmc +samples/image/makefile.dms +samples/internat/makefile.dmc +samples/internat/makefile.dms +samples/ipc/makefile.dmc +samples/ipc/makefile.dms +samples/joytest/makefile.dmc +samples/joytest/makefile.dms +samples/keyboard/makefile.dmc +samples/keyboard/makefile.dms +samples/layout/makefile.dmc +samples/layout/makefile.dms +samples/listbox/makefile.dmc +samples/listbox/makefile.dms +samples/listctrl/makefile.dmc +samples/listctrl/makefile.dms +samples/makefile.dmc +samples/makefile.dms +samples/mdi/makefile.dmc +samples/mdi/makefile.dms +samples/mediaplayer/makefile.dmc +samples/mediaplayer/makefile.dms +samples/memcheck/makefile.dmc +samples/memcheck/makefile.dms +samples/menu/makefile.dmc +samples/menu/makefile.dms +samples/mfc/makefile.dmc +samples/mfc/makefile.dms +samples/minifram/makefile.dmc +samples/minifram/makefile.dms +samples/minimal/makefile.dmc +samples/minimal/makefile.dms +samples/mobile/makefile.dmc +samples/mobile/makefile.dms +samples/mobile/styles/makefile.dmc +samples/mobile/styles/makefile.dms +samples/mobile/wxedit/makefile.dmc +samples/mobile/wxedit/makefile.dms +samples/multimon/makefile.dmc +samples/multimon/makefile.dms +samples/nativdlg/makefile.dmc +samples/nativdlg/makefile.dms +samples/notebook/makefile.dmc +samples/notebook/makefile.dms +samples/oleauto/makefile.dmc +samples/oleauto/makefile.dms +samples/opengl/cube/makefile.dmc +samples/opengl/cube/makefile.dms +samples/opengl/isosurf/makefile.dmc +samples/opengl/isosurf/makefile.dms +samples/opengl/makefile.dmc +samples/opengl/makefile.dms +samples/opengl/penguin/makefile.dmc +samples/opengl/penguin/makefile.dms +samples/ownerdrw/makefile.dmc +samples/ownerdrw/makefile.dms +samples/png/makefile.dmc +samples/png/makefile.dms +samples/popup/makefile.dmc +samples/popup/makefile.dms +samples/power/makefile.dmc +samples/power/makefile.dms +samples/printing/makefile.dmc +samples/printing/makefile.dms +samples/propsize/makefile.dmc +samples/propsize/makefile.dms +samples/regtest/makefile.dmc +samples/regtest/makefile.dms +samples/render/makefile.dmc +samples/render/makefile.dms +samples/richtext/makefile.dmc +samples/richtext/makefile.dms +samples/rotate/makefile.dmc +samples/rotate/makefile.dms +samples/sashtest/makefile.dmc +samples/sashtest/makefile.dms +samples/scroll/makefile.dmc +samples/scroll/makefile.dms +samples/scrollsub/makefile.dmc +samples/scrollsub/makefile.dms +samples/shaped/makefile.dmc +samples/shaped/makefile.dms +samples/sockets/makefile.dmc +samples/sockets/makefile.dms +samples/sound/makefile.dmc +samples/sound/makefile.dms +samples/splash/makefile.dmc +samples/splash/makefile.dms +samples/splitter/makefile.dmc +samples/splitter/makefile.dms +samples/statbar/makefile.dmc +samples/statbar/makefile.dms +samples/taskbar/makefile.dmc +samples/taskbar/makefile.dms +samples/text/makefile.dmc +samples/text/makefile.dms +samples/thread/makefile.dmc +samples/thread/makefile.dms +samples/toolbar/makefile.dmc +samples/toolbar/makefile.dms +samples/treectrl/makefile.dmc +samples/treectrl/makefile.dms +samples/typetest/makefile.dmc +samples/typetest/makefile.dms +samples/validate/makefile.dmc +samples/validate/makefile.dms +samples/vscroll/makefile.dmc +samples/vscroll/makefile.dms +samples/widgets/makefile.dmc +samples/widgets/makefile.dms +samples/wizard/makefile.dmc +samples/wizard/makefile.dms +samples/xrc/makefile.dmc +samples/xrc/makefile.dms +tests/makefile.dmc +tests/makefile.dms +utils/emulator/src/makefile.dmc +utils/emulator/src/makefile.dms +utils/HelpGen/src/makefile.dmc +utils/HelpGen/src/makefile.dms +utils/helpview/src/makefile.dmc +utils/helpview/src/makefile.dms +utils/hhp2cached/makefile.dmc +utils/hhp2cached/makefile.dms +utils/makefile.dmc +utils/makefile.dms +utils/tex2rtf/src/makefile.dmc +utils/tex2rtf/src/makefile.dms +utils/wxrc/makefile.dmc +utils/wxrc/makefile.dms diff --git a/distrib/scripts/manifests/generic.rsp b/distrib/scripts/manifests/generic.rsp index 318e40cc95..c53af5ee90 100644 --- a/distrib/scripts/manifests/generic.rsp +++ b/distrib/scripts/manifests/generic.rsp @@ -134,1162 +134,6 @@ utils/hhp2cached/*.txt contrib/lib/dummy -samples/samples.bkl -samples/*.txt -samples/makefile* -samples/sample.r -samples/*.xpm - -samples/access/*.cpp -samples/access/*.h -samples/access/makefile* -samples/access/*.xpm -samples/access/*.ico -samples/access/*.rc -samples/access/*.pro -samples/access/*.bkl - -samples/animate/*.cpp -samples/animate/*.h -samples/animate/makefile* -samples/animate/*.bkl -samples/animate/*.gif -samples/animate/*.ani - -samples/artprov/*.cpp -samples/artprov/*.h -samples/artprov/makefile* -samples/artprov/*.xpm -samples/artprov/*.txt -samples/artprov/*.ico -samples/artprov/*.bmp -samples/artprov/*.rc -samples/artprov/*.wav -samples/artprov/*.pro -samples/artprov/*.bkl - -samples/aui/*.cpp -samples/aui/*.bkl -samples/aui/makefile* - -samples/calendar/*.cpp -samples/calendar/*.h -samples/calendar/makefile* -samples/calendar/*.rc -samples/calendar/*.ico -samples/calendar/*.xpm -samples/calendar/*.txt -samples/calendar/*.pro -samples/calendar/*.bkl - -samples/caret/*.cpp -samples/caret/*.h -samples/caret/makefile* -samples/caret/*.rc -samples/caret/*.bmp -samples/caret/*.xpm -samples/caret/*.xbm -samples/caret/*.png -samples/caret/*.ico -samples/caret/*.txt -samples/caret/*.pro -samples/caret/*.bkl - -samples/checklst/*.cpp -samples/checklst/*.h -samples/checklst/*.rc -samples/checklst/*.txt -samples/checklst/makefile* -samples/checklst/*.xbm -samples/checklst/*.xpm -samples/checklst/*.ico -samples/checklst/*.bmp -samples/checklst/*.pro -samples/checklst/*.bkl - -samples/collpane/collpane.bkl -samples/collpane/collpane.cpp -samples/collpane/collpane.dsp -samples/collpane/makefile.* - -samples/combo/*.cpp -samples/combo/*.h -samples/combo/makefile* -samples/combo/*.xbm -samples/combo/*.xpm -samples/combo/*.ico -samples/combo/*.bmp -samples/combo/*.rc -samples/combo/*.png -samples/combo/*.pro -samples/combo/icons/*.bmp -samples/combo/icons/*.ico -samples/combo/icons/*.xpm -samples/combo/*.bkl - -samples/config/*.cpp -samples/config/*.h -samples/config/makefile* -samples/config/*.xbm -samples/config/*.xpm -samples/config/*.txt -samples/config/*.ico -samples/config/*.bmp -samples/config/*.rc -samples/config/*.wav -samples/config/*.pro -samples/config/*.bkl - -samples/controls/*.cpp -samples/controls/*.h -samples/controls/makefile* -samples/controls/*.xbm -samples/controls/*.xpm -samples/controls/*.ico -samples/controls/*.bmp -samples/controls/*.rc -samples/controls/*.pro -samples/controls/icons/*.bmp -samples/controls/icons/*.ico -samples/controls/icons/*.xpm -samples/controls/*.bkl - -samples/console/testdata.fc -samples/console/*.cpp -samples/console/*.h -samples/console/makefile* -samples/console/*.rc -samples/console/*.bmp -samples/console/*.xpm -samples/console/*.xbm -samples/console/*.png -samples/console/*.ico -samples/console/*.txt -samples/console/*.pro -samples/console/*.bkl - -samples/controls/*.cpp -samples/controls/*.h -samples/controls/makefile* -samples/controls/*.xbm -samples/controls/*.xpm -samples/controls/*.ico -samples/controls/*.bmp -samples/controls/*.rc -samples/controls/*.pro -samples/controls/icons/*.bmp -samples/controls/icons/*.ico -samples/controls/icons/*.xpm -samples/controls/*.bkl - -samples/dataview/*.cpp -samples/dataview/*.h -samples/dataview/makefile* -samples/dataview/*.xbm -samples/dataview/*.xpm -samples/dataview/*.ico -samples/dataview/*.bmp -samples/dataview/*.rc -samples/dataview/*.pro -samples/dataview/icons/*.bmp -samples/dataview/icons/*.ico -samples/dataview/icons/*.xpm -samples/dataview/*.bkl - -samples/dialup/*.cpp -samples/dialup/*.h -samples/dialup/makefile* -samples/dialup/*.rc -samples/dialup/*.bmp -samples/dialup/*.xpm -samples/dialup/*.xbm -samples/dialup/*.png -samples/dialup/*.ico -samples/dialup/*.txt -samples/dialup/*.pro -samples/dialup/*.bkl - -samples/display/*.cpp -samples/display/*.h -samples/display/makefile* -samples/display/*.rc -samples/display/*.bmp -samples/display/*.xpm -samples/display/*.xbm -samples/display/*.png -samples/display/*.ico -samples/display/*.txt -samples/display/*.pro -samples/display/*.bkl - -samples/db/*.cpp -samples/db/*.h -samples/db/makefile* -samples/db/*.xbm -samples/db/*.xpm -samples/db/*.txt -samples/db/*.ico -samples/db/*.bmp -samples/db/*.rc -samples/db/*.wav -samples/db/*.pro -samples/db/*.bkl - -samples/debugrpt/*.cpp -samples/debugrpt/*.h -samples/debugrpt/makefile* -samples/debugrpt/*.xbm -samples/debugrpt/*.xpm -samples/debugrpt/*.txt -samples/debugrpt/*.ico -samples/debugrpt/*.bmp -samples/debugrpt/*.rc -samples/debugrpt/*.pro -samples/debugrpt/*.bkl - -samples/dnd/*.cpp -samples/dnd/*.h -samples/dnd/makefile* -samples/dnd/*.rc -samples/dnd/*.wxr -samples/dnd/*.bmp -samples/dnd/*.xbm -samples/dnd/*.xpm -samples/dnd/*.png -samples/dnd/*.ico -samples/dnd/*.txt -samples/dnd/*.cur -samples/dnd/*.pro -samples/dnd/*.bkl - -samples/drawing/*.cpp -samples/drawing/*.h -samples/drawing/makefile* -samples/drawing/*.rc -samples/drawing/*.bmp -samples/drawing/*.xpm -samples/drawing/*.xbm -samples/drawing/*.png -samples/drawing/*.ico -samples/drawing/*.txt -samples/drawing/*.pro -samples/drawing/*.bkl - -samples/dialogs/*.h -samples/dialogs/*.cpp -samples/dialogs/*.rc -samples/dialogs/makefile* -samples/dialogs/*.xbm -samples/dialogs/*.xpm -samples/dialogs/*.txt -samples/dialogs/*.bmp -samples/dialogs/*.ico -samples/dialogs/*.pro -samples/dialogs/*.bkl - -samples/docview/*.h -samples/docview/*.cpp -samples/docview/*.rc -samples/docview/makefile* -samples/docview/*.xbm -samples/docview/*.xpm -samples/docview/*.txt -samples/docview/*.ico -samples/docview/*.bmp -samples/docview/*.pro -samples/docview/*.bkl -samples/docview/*.r - -samples/docvwmdi/*.h -samples/docvwmdi/*.cpp -samples/docvwmdi/*.rc -samples/docvwmdi/makefile* -samples/docvwmdi/*.xbm -samples/docvwmdi/*.xpm -samples/docvwmdi/*.txt -samples/docvwmdi/*.ico -samples/docvwmdi/*.bmp -samples/docvwmdi/*.pro -samples/docvwmdi/*.bkl - -samples/dragimag/*.cpp -samples/dragimag/*.h -samples/dragimag/makefile* -samples/dragimag/*.rc -samples/dragimag/*.ico -samples/dragimag/*.xpm -samples/dragimag/*.png -samples/dragimag/*.bmp -samples/dragimag/*.pro -samples/dragimag/*.bkl - -samples/dynamic/*.cpp -samples/dynamic/*.h -samples/dynamic/makefile* -samples/dynamic/*.xbm -samples/dynamic/*.xpm -samples/dynamic/*.txt -samples/dynamic/*.ico -samples/dynamic/*.bmp -samples/dynamic/*.rc -samples/dynamic/*.wav -samples/dynamic/*.pro -samples/dynamic/*.bkl - -samples/erase/*.cpp -samples/erase/*.h -samples/erase/makefile* -samples/erase/*.xbm -samples/erase/*.xpm -samples/erase/*.txt -samples/erase/*.ico -samples/erase/*.bmp -samples/erase/*.rc -samples/erase/*.wav -samples/erase/*.pro -samples/erase/*.bkl - -samples/event/*.cpp -samples/event/*.h -samples/event/*.rc -samples/event/*.inf -samples/event/*.txt -samples/event/makefile* -samples/event/*.xbm -samples/event/*.xpm -samples/event/*.ico -samples/event/*.bmp -samples/event/*.pro -samples/event/*.bkl - -samples/except/*.cpp -samples/except/*.h -samples/except/makefile* -samples/except/*.rc -samples/except/*.ico -samples/except/*.xpm -samples/except/*.txt -samples/except/*.pro -samples/except/*.bkl - -samples/exec/*.cpp -samples/exec/*.h -samples/exec/makefile* -samples/exec/*.rc -samples/exec/*.ico -samples/exec/*.xpm -samples/exec/*.txt -samples/exec/*.pro -samples/exec/*.bkl - -samples/font/*.cpp -samples/font/*.h -samples/font/makefile* -samples/font/*.rc -samples/font/*.bmp -samples/font/*.xpm -samples/font/*.xbm -samples/font/*.png -samples/font/*.ico -samples/font/*.txt -samples/font/*.pro -samples/font/*.bkl - -samples/grid/*.cpp -samples/grid/*.h -samples/grid/*.rc -samples/grid/*.txt -samples/grid/makefile* -samples/grid/*.xbm -samples/grid/*.xpm -samples/grid/*.ico -samples/grid/*.bmp -samples/grid/*.pro -samples/grid/*.bkl - -samples/help/*.cpp -samples/help/*.h -samples/help/makefile* -samples/help/*.xbm -samples/help/*.xpm -samples/help/*.ico -samples/help/*.bmp -samples/help/*.gif -samples/help/*.rc -samples/help/*.hlp -samples/help/*.cnt -samples/help/*.zip -samples/help/*.htb -samples/help/*.chm -samples/help/*.hhp -samples/help/*.hhk -samples/help/*.hhc -samples/help/*.hpj -samples/help/*.tex -samples/help/*.ini -samples/help/*.pro -samples/help/cshelp.txt -samples/help/doc/*.html -samples/help/doc/*.htm -samples/help/doc/*.class -samples/help/doc/*.db -samples/help/doc/*.tex -samples/help/doc/*.gif -samples/help/doc/*.map -samples/help/*.bkl - -samples/htlbox/*.cpp -samples/htlbox/*.h -samples/htlbox/makefile* -samples/htlbox/*.xpm -samples/htlbox/*.ico -samples/htlbox/*.bmp -samples/htlbox/*.rc -samples/htlbox/*.bkl -samples/htlbox/results - -samples/html/makefile* -samples/html/*.txt -samples/html/*.bkl - -samples/html/about/*.cpp -samples/html/about/*.h -samples/html/about/makefile* -samples/html/about/*.rc -samples/html/about/*.bmp -samples/html/about/*.xpm -samples/html/about/*.xbm -samples/html/about/*.png -samples/html/about/*.ico -samples/html/about/*.txt -samples/html/about/*.pro -samples/html/about/data/*.htm -samples/html/about/data/*.png -samples/html/about/*.bkl - -samples/html/help/*.cpp -samples/html/help/*.h -samples/html/help/makefile* -samples/html/help/*.rc -samples/html/help/*.bmp -samples/html/help/*.xpm -samples/html/help/*.xbm -samples/html/help/*.png -samples/html/help/*.ico -samples/html/help/*.txt -samples/html/help/*.pro -samples/html/help/helpfiles/*.htm -samples/html/help/helpfiles/*.hhc -samples/html/help/helpfiles/*.hhk -samples/html/help/helpfiles/*.hhp -samples/html/help/*.bkl - -samples/html/htmlctrl/*.cpp -samples/html/htmlctrl/*.h -samples/html/htmlctrl/makefile* -samples/html/htmlctrl/*.rc -samples/html/htmlctrl/*.bmp -samples/html/htmlctrl/*.xpm -samples/html/htmlctrl/*.xbm -samples/html/htmlctrl/*.png -samples/html/htmlctrl/*.ico -samples/html/htmlctrl/*.txt -samples/html/htmlctrl/*.pro -samples/html/htmlctrl/*.bkl - -samples/html/printing/*.cpp -samples/html/printing/*.h -samples/html/printing/makefile* -samples/html/printing/*.rc -samples/html/printing/*.pro -samples/html/printing/*.bmp -samples/html/printing/*.xpm -samples/html/printing/*.xbm -samples/html/printing/*.png -samples/html/printing/*.ico -samples/html/printing/*.gif -samples/html/printing/*.htm -samples/html/printing/*.bkl - -samples/html/test/*.cpp -samples/html/test/*.h -samples/html/test/makefile* -samples/html/test/*.rc -samples/html/test/*.bmp -samples/html/test/*.xpm -samples/html/test/*.xbm -samples/html/test/*.png -samples/html/test/*.ico -samples/html/test/*.htm -samples/html/test/*.html -samples/html/test/*.pro -samples/html/test/*.gif -samples/html/test/*.bkl - -samples/html/virtual/*.cpp -samples/html/virtual/*.h -samples/html/virtual/makefile* -samples/html/virtual/*.rc -samples/html/virtual/*.bmp -samples/html/virtual/*.xpm -samples/html/virtual/*.xbm -samples/html/virtual/*.png -samples/html/virtual/*.ico -samples/html/virtual/*.htm -samples/html/virtual/*.html -samples/html/virtual/*.pro -samples/html/virtual/*.bkl - -samples/html/widget/*.cpp -samples/html/widget/*.h -samples/html/widget/makefile* -samples/html/widget/*.rc -samples/html/widget/*.bmp -samples/html/widget/*.xpm -samples/html/widget/*.xbm -samples/html/widget/*.png -samples/html/widget/*.ico -samples/html/widget/*.htm -samples/html/widget/*.html -samples/html/widget/*.pro -samples/html/widget/*.bkl - -samples/html/zip/*.cpp -samples/html/zip/*.h -samples/html/zip/makefile* -samples/html/zip/*.rc -samples/html/zip/*.bmp -samples/html/zip/*.xpm -samples/html/zip/*.xbm -samples/html/zip/*.png -samples/html/zip/*.ico -samples/html/zip/*.htm -samples/html/zip/*.html -samples/html/zip/*.zip -samples/html/zip/*.pro -samples/html/zip/*.bkl - -samples/html/helpview/*.cpp -samples/html/helpview/*.h -samples/html/helpview/makefile* -samples/html/helpview/*.rc -samples/html/helpview/*.bmp -samples/html/helpview/*.xpm -samples/html/helpview/*.xbm -samples/html/helpview/*.png -samples/html/helpview/*.ico -samples/html/helpview/*.htm -samples/html/helpview/*.html -samples/html/helpview/*.pro -samples/html/helpview/test.zip -samples/html/helpview/*.bkl -samples/html/helpview/*.r - -samples/image/*.cpp -samples/image/*.h -samples/image/makefile* -samples/image/*.rc -samples/image/*.bmp -samples/image/*.xpm -samples/image/*.xbm -samples/image/*.png -samples/image/*.pnm -samples/image/*.pcx -samples/image/*.jpg -samples/image/*.gif -samples/image/*.tif -samples/image/*.tga -samples/image/*.ico -samples/image/*.cur -samples/image/*.txt -samples/image/*.pro -samples/image/*.ani -samples/image/*.bkl - -samples/internat/*.cpp -samples/internat/*.h -samples/internat/*.rc -samples/internat/*.txt -samples/internat/makefile* -samples/internat/*.xbm -samples/internat/*.xpm -samples/internat/*.po -samples/internat/*.ico -samples/internat/*.bmp -samples/internat/*.mo -samples/internat/*.pro -samples/internat/ar/*.?o -samples/internat/bg/*.mo -samples/internat/bg/*.po -samples/internat/cs/*.mo -samples/internat/cs/*.po -samples/internat/fr/*.mo -samples/internat/fr/*.po -samples/internat/de/*.mo -samples/internat/de/*.po -samples/internat/ja/*.mo -samples/internat/ja/*.po -samples/internat/ja_JP.EUC-JP/*.mo -samples/internat/ja_JP.EUC-JP/*.po -samples/internat/ka/*.mo -samples/internat/ka/*.po -samples/internat/pl/*.mo -samples/internat/pl/*.po -samples/internat/ru/*.mo -samples/internat/ru/*.po -samples/internat/sv/*.mo -samples/internat/sv/*.po -samples/internat/*.bkl - -samples/ipc/*.cpp -samples/ipc/*.h -samples/ipc/makefile* -samples/ipc/client.vc -samples/ipc/server.vc -samples/ipc/client.wat -samples/ipc/server.wat -samples/ipc/client.b32 -samples/ipc/server.b32 -samples/ipc/client.bcc -samples/ipc/server.bcc -samples/ipc/client.g95 -samples/ipc/server.g95 -samples/ipc/*.rc -samples/ipc/*.bmp -samples/ipc/*.xpm -samples/ipc/*.xbm -samples/ipc/*.png -samples/ipc/*.ico -samples/ipc/*.txt -samples/ipc/*.pro -samples/ipc/*.bkl - -samples/joytest/*.h -samples/joytest/*.cpp -samples/joytest/*.rc -samples/joytest/makefile.* -samples/joytest/*.txt -samples/joytest/*.bmp -samples/joytest/*.wav -samples/joytest/*.ico -samples/joytest/*.bkl - -samples/keyboard/*.cpp -samples/keyboard/*.h -samples/keyboard/*.rc -samples/keyboard/*.txt -samples/keyboard/makefile* -samples/keyboard/*.xbm -samples/keyboard/*.xpm -samples/keyboard/*.ico -samples/keyboard/*.bmp -samples/keyboard/*.pro -samples/keyboard/*.bkl - -samples/layout/*.cpp -samples/layout/*.h -samples/layout/makefile* -samples/layout/*.xbm -samples/layout/*.xpm -samples/layout/*.ico -samples/layout/*.rc -samples/layout/*.bmp -samples/layout/*.pro -samples/layout/*.bkl - -samples/listbox/*.cpp -samples/listbox/*.h -samples/listbox/*.rc -samples/listbox/*.txt -samples/listbox/makefile* -samples/listbox/*.xpm -samples/listbox/*.bkl - -samples/listctrl/*.cpp -samples/listctrl/*.h -samples/listctrl/*.rc -samples/listctrl/*.txt -samples/listctrl/makefile* -samples/listctrl/*.xbm -samples/listctrl/*.xpm -samples/listctrl/bitmaps/*.xbm -samples/listctrl/bitmaps/*.xpm -samples/listctrl/*.ico -samples/listctrl/*.bmp -samples/listctrl/*.pro -samples/listctrl/bitmaps/*.bmp -samples/listctrl/bitmaps/*.ico -samples/listctrl/*.bkl - -samples/mdi/*.cpp -samples/mdi/*.h -samples/mdi/makefile* -samples/mdi/*.xbm -samples/mdi/*.xpm -samples/mdi/*.ico -samples/mdi/*.rc -samples/mdi/*.pro -samples/mdi/bitmaps/*.bmp -samples/mdi/bitmaps/*.ico -samples/mdi/bitmaps/*.xpm -samples/mdi/bitmaps/*.xbm -samples/mdi/*.bkl - -samples/mediaplayer/*.cpp -samples/mediaplayer/*.h -samples/mediaplayer/makefile* -samples/mediaplayer/*.xbm -samples/mediaplayer/*.xpm -samples/mediaplayer/*.ico -samples/mediaplayer/*.rc -samples/mediaplayer/*.bkl - -samples/menu/*.cpp -samples/menu/*.h -samples/menu/makefile* -samples/menu/*.rc -samples/menu/*.bmp -samples/menu/*.xpm -samples/menu/*.xbm -samples/menu/*.png -samples/menu/*.ico -samples/menu/*.txt -samples/menu/*.pro -samples/menu/*.bkl - -samples/memcheck/*.h -samples/memcheck/*.cpp -samples/memcheck/*.rc -samples/memcheck/makefile* -samples/memcheck/*.xbm -samples/memcheck/*.xpm -samples/memcheck/*.txt -samples/memcheck/*.ico -samples/memcheck/*.bmp -samples/memcheck/*.pro -samples/memcheck/*.bkl - -samples/minimal/*.cpp -samples/minimal/*.h -samples/minimal/makefile* -samples/minimal/*.xbm -samples/minimal/*.xpm -samples/minimal/*.ico -samples/minimal/*.rc -samples/minimal/*.pro -samples/minimal/*.bkl -samples/minimal/*.r - -samples/minifram/*.h -samples/minifram/*.cpp -samples/minifram/*.rc -samples/minifram/makefile* -samples/minifram/*.xbm -samples/minifram/*.xpm -samples/minifram/*.txt -samples/minifram/*.ico -samples/minifram/*.bmp -samples/minifram/*.pro -samples/minifram/bitmaps/*.bmp -samples/minifram/bitmaps/*.xpm -samples/minifram/*.bkl - -samples/mobile/styles/*.cpp -samples/mobile/styles/*.h -samples/mobile/styles/*.xpm -samples/mobile/styles/*.jpg -samples/mobile/styles/*.bkl -samples/mobile/styles/makefile.* -samples/mobile/wxedit/*.cpp -samples/mobile/wxedit/*.h -samples/mobile/wxedit/*.xpm -samples/mobile/wxedit/*.bkl -samples/mobile/wxedit/makefile.* -samples/mobile/make* -samples/mobile/*.bkl - -samples/multimon/*.h -samples/multimon/*.cpp -samples/multimon/*.rc -samples/multimon/makefile* -samples/multimon/*.xbm -samples/multimon/*.xpm -samples/multimon/*.txt -samples/multimon/*.ico -samples/multimon/*.bmp -samples/multimon/*.pro -samples/multimon/*.bkl - -samples/notebook/*.cpp -samples/notebook/*.h -samples/notebook/makefile* -samples/notebook/*.rc -samples/notebook/*.bmp -samples/notebook/*.xbm -samples/notebook/*.xpm -samples/notebook/*.ico -samples/notebook/*.txt -samples/notebook/*.pro -samples/notebook/*.bkl - -samples/opengl/*.bkl -samples/opengl/make* -samples/opengl/cube/*.cpp -samples/opengl/cube/*.h -samples/opengl/cube/*.rc -samples/opengl/cube/*.ico -samples/opengl/cube/*.xbm -samples/opengl/cube/*.pro -samples/opengl/cube/make*.* -samples/opengl/cube/*.bkl - -samples/opengl/isosurf/*.cpp -samples/opengl/isosurf/*.h -samples/opengl/isosurf/*.rc -samples/opengl/isosurf/*.ico -samples/opengl/isosurf/*.xbm -samples/opengl/isosurf/*.pro -samples/opengl/isosurf/*.dat.gz -samples/opengl/isosurf/make*.* -samples/opengl/isosurf/*.bkl - -samples/opengl/penguin/*.cpp -samples/opengl/penguin/*.c -samples/opengl/penguin/*.h -samples/opengl/penguin/*.rc -samples/opengl/penguin/*.ico -samples/opengl/penguin/*.xbm -samples/opengl/penguin/*.xpm -samples/opengl/penguin/*.pro -samples/opengl/penguin/make*.* -samples/opengl/penguin/penguin.dxf.gz -samples/opengl/penguin/*.bkl - -samples/png/*.cpp -samples/png/*.h -samples/png/makefile* -samples/png/*.rc -samples/png/*.def -samples/png/*.bmp -samples/png/*.xpm -samples/png/*.xbm -samples/png/*.ico -samples/png/*.txt -samples/png/*.png -samples/png/*.pro -samples/png/*.bkl - -samples/popup/*.cpp -samples/popup/*.h -samples/popup/makefile* -samples/popup/*.rc -samples/popup/*.bmp -samples/popup/*.xpm -samples/popup/*.ico -samples/popup/*.txt -samples/popup/*.png -samples/popup/*.pro -samples/popup/*.bkl - -samples/power/*.cpp -samples/power/makefile* -samples/power/*.bkl - -samples/printing/*.cpp -samples/printing/*.h -samples/printing/makefile* -samples/printing/*.xbm -samples/printing/*.xpm -samples/printing/*.txt -samples/printing/*.ico -samples/printing/*.bmp -samples/printing/*.rc -samples/printing/*.afm -samples/printing/*.pro -samples/printing/*.bkl - -samples/propsize/*.cpp -samples/propsize/*.h -samples/propsize/makefile* -samples/propsize/*.xbm -samples/propsize/*.xpm -samples/propsize/*.ico -samples/propsize/*.bmp -samples/propsize/*.rc -samples/propsize/*.pro -samples/propsize/*.bkl - -samples/render/*.cpp -samples/render/*.h -samples/render/makefile* -samples/render/*.xbm -samples/render/*.xpm -samples/render/*.ico -samples/render/*.bmp -samples/render/*.rc -samples/render/*.pro -samples/render/*.bkl - -samples/richtext/*.cpp -samples/richtext/*.h -samples/richtext/makefile* -samples/richtext/*.rc -samples/richtext/*.pro -samples/richtext/*.bkl -samples/richtext/readme.txt -samples/richtext/todo.txt -samples/richtext/bitmaps/*.xpm - -samples/rotate/*.cpp -samples/rotate/*.h -samples/rotate/makefile* -samples/rotate/*.rc -samples/rotate/*.ico -samples/rotate/*.xpm -samples/rotate/*.txt -samples/rotate/*.png -samples/rotate/*.pro -samples/rotate/*.bkl - -samples/sashtest/*.cpp -samples/sashtest/*.h -samples/sashtest/*.rc -samples/sashtest/*.txt -samples/sashtest/makefile* -samples/sashtest/*.xbm -samples/sashtest/*.xpm -samples/sashtest/*.ico -samples/sashtest/*.pro -samples/sashtest/*.bkl - -samples/scroll/*.cpp -samples/scroll/*.h -samples/scroll/makefile* -samples/scroll/*.rc -samples/scroll/*.bmp -samples/scroll/*.xpm -samples/scroll/*.xbm -samples/scroll/*.png -samples/scroll/*.ico -samples/scroll/*.txt -samples/scroll/*.pro -samples/scroll/*.bkl - -samples/scrollsub/*.cpp -samples/scrollsub/*.h -samples/scrollsub/makefile* -samples/scrollsub/*.rc -samples/scrollsub/*.bmp -samples/scrollsub/*.xpm -samples/scrollsub/*.xbm -samples/scrollsub/*.png -samples/scrollsub/*.ico -samples/scrollsub/*.txt -samples/scrollsub/*.pro -samples/scrollsub/*.bkl - -samples/shaped/*.cpp -samples/shaped/*.h -samples/shaped/makefile* -samples/shaped/*.rc -samples/shaped/*.bmp -samples/shaped/*.xpm -samples/shaped/*.xbm -samples/shaped/*.png -samples/shaped/*.ico -samples/shaped/*.txt -samples/shaped/*.pro -samples/shaped/*.bkl - -samples/splash/*.h -samples/splash/*.cpp -samples/splash/*.rc -samples/splash/makefile* -samples/splash/*.xbm -samples/splash/*.xpm -samples/splash/*.txt -samples/splash/*.ico -samples/splash/*.bmp -samples/splash/*.png -samples/splash/*.mpg -samples/splash/*.pro -samples/splash/*.bkl - -samples/splitter/*.cpp -samples/splitter/*.h -samples/splitter/*.rc -samples/splitter/*.txt -samples/splitter/makefile* -samples/splitter/*.xbm -samples/splitter/*.xpm -samples/splitter/*.ico -samples/splitter/*.bmp -samples/splitter/*.pro -samples/splitter/*.bkl - -samples/sockets/*.cpp -samples/sockets/*.h -samples/sockets/makefile* -samples/sockets/client.wat -samples/sockets/server.wat -samples/sockets/client.vc -samples/sockets/server.vc -samples/sockets/client.b32 -samples/sockets/server.b32 -samples/sockets/client.bcc -samples/sockets/server.bcc -samples/sockets/client.g95 -samples/sockets/server.g95 -samples/sockets/*.xbm -samples/sockets/*.xpm -samples/sockets/*.ico -samples/sockets/*.rc -samples/sockets/*.pro -samples/sockets/*.bkl - -samples/sound/*.cpp -samples/sound/*.h -samples/sound/makefile* -samples/sound/*.rc -samples/sound/*.ico -samples/sound/*.xpm -samples/sound/*.bmp -samples/sound/*.wav -samples/sound/*.pro -samples/sound/*.bkl - -samples/statbar/*.cpp -samples/statbar/*.h -samples/statbar/makefile* -samples/statbar/*.rc -samples/statbar/*.ico -samples/statbar/*.xpm -samples/statbar/*.bmp -samples/statbar/*.txt -samples/statbar/*.pro -samples/statbar/*.bkl - -samples/taskbar/*.cpp -samples/taskbar/*.h -samples/taskbar/makefile.* -samples/taskbar/*.rc -samples/taskbar/*.bmp -samples/taskbar/*.ico -samples/taskbar/*.txt -samples/taskbar/*.xpm - -samples/text/*.cpp -samples/text/*.h -samples/text/makefile* -samples/text/*.rc -samples/text/*.bmp -samples/text/*.xpm -samples/text/*.xbm -samples/text/*.png -samples/text/*.ico -samples/text/*.txt -samples/text/*.pro -samples/text/*.bkl - -samples/thread/*.cpp -samples/thread/*.h -samples/thread/makefile* -samples/thread/*.rc -samples/thread/*.bmp -samples/thread/*.xpm -samples/thread/*.xbm -samples/thread/*.png -samples/thread/*.ico -samples/thread/*.txt -samples/thread/*.pro -samples/thread/*.bkl - -samples/typetest/*.cpp -samples/typetest/*.h -samples/typetest/*.rc -samples/typetest/*.txt -samples/typetest/makefile* -samples/typetest/*.xbm -samples/typetest/*.xpm -samples/typetest/*.ico -samples/typetest/*.pro -samples/typetest/*.bkl - -samples/toolbar/*.cpp -samples/toolbar/*.h -samples/toolbar/makefile* -samples/toolbar/*.txt -samples/toolbar/*.xbm -samples/toolbar/*.xpm -samples/toolbar/bitmaps/*.xbm -samples/toolbar/bitmaps/*.xpm -samples/toolbar/*.ico -samples/toolbar/*.bmp -samples/toolbar/*.rc -samples/toolbar/*.pro -samples/toolbar/bitmaps/*.bmp -samples/toolbar/*.bkl - -samples/treectrl/*.cpp -samples/treectrl/*.h -samples/treectrl/*.rc -samples/treectrl/*.txt -samples/treectrl/makefile* -samples/treectrl/*.xbm -samples/treectrl/*.xpm -samples/treectrl/bitmaps/*.xbm -samples/treectrl/bitmaps/*.xpm -samples/treectrl/*.ico -samples/treectrl/*.bmp -samples/treectrl/*.pro -samples/treectrl/bitmaps/*.bmp -samples/treectrl/bitmaps/*.ico -samples/treectrl/*.bkl - -samples/validate/*.cpp -samples/validate/*.h -samples/validate/*.rc -samples/validate/*.inf -samples/validate/*.txt -samples/validate/makefile* -samples/validate/*.xbm -samples/validate/*.xpm -samples/validate/*.ico -samples/validate/*.bmp -samples/validate/*.pro -samples/validate/*.bkl - -samples/vscroll/*.cpp -samples/vscroll/*.rc -samples/vscroll/makefile* -samples/vscroll/*.xpm -samples/vscroll/*.bkl - -samples/widgets/*.cpp -samples/widgets/*.h -samples/widgets/makefile* -samples/widgets/*.rc -samples/widgets/*.ico -samples/widgets/*.xpm -samples/widgets/*.txt -samples/widgets/*.bmp -samples/widgets/*.pro -samples/widgets/icons/*.xpm -samples/widgets/*.bkl - -samples/wizard/*.cpp -samples/wizard/*.h -samples/wizard/makefile* -samples/wizard/*.rc -samples/wizard/*.bmp -samples/wizard/*.xpm -samples/wizard/*.xbm -samples/wizard/*.png -samples/wizard/*.ico -samples/wizard/*.txt -samples/wizard/*.pro -samples/wizard/*.bkl - demos/demos.bkl demos/makefile* diff --git a/distrib/scripts/manifests/generic_samples.rsp b/distrib/scripts/manifests/generic_samples.rsp new file mode 100644 index 0000000000..8b59db48bf --- /dev/null +++ b/distrib/scripts/manifests/generic_samples.rsp @@ -0,0 +1,1740 @@ +samples/.cvsignore +samples/Info.plist +samples/sample.ico +samples/sample.r +samples/sample.rc +samples/sample.xpm +samples/Makefile.in +samples/samples.bkl +samples/makefile.bcc +samples/makefile.gcc +samples/makefile.wat +samples/samples.dsw +samples/makefile.vc +samples/access/access.bkl +samples/access/accesstest.rc +samples/access/accesstestM5.xml +samples/access/accesstestW7.xml +samples/access/descrip.mms +samples/access/mondrian.ico +samples/access/mondrian.xpm +samples/access/access.dsp +samples/access/Makefile.in +samples/access/makefile.bcc +samples/access/makefile.gcc +samples/access/makefile.unx +samples/access/makefile.wat +samples/access/makefile.vc +samples/access/accesstest.cpp +samples/artprov/.cvsignore +samples/artprov/artbrows.cpp +samples/artprov/artbrows.h +samples/artprov/artprov.bkl +samples/artprov/artprov.pro +samples/artprov/artprovM5.xml +samples/artprov/arttest.rc +samples/artprov/error.xpm +samples/artprov/info.xpm +samples/artprov/mondrian.ico +samples/artprov/mondrian.xpm +samples/artprov/null.xpm +samples/artprov/question.xpm +samples/artprov/warning.xpm +samples/artprov/artprov.dsp +samples/artprov/Makefile.in +samples/artprov/makefile.bcc +samples/artprov/makefile.gcc +samples/artprov/makefile.unx +samples/artprov/makefile.wat +samples/artprov/makefile.vc +samples/artprov/arttest.cpp +samples/calendar/.cvsignore +samples/calendar/calendar.bkl +samples/calendar/calendar.pro +samples/calendar/calendar.rc +samples/calendar/calendarM5.xml +samples/calendar/descrip.mms +samples/calendar/makefile.sl +samples/calendar/calendar.dsp +samples/calendar/Makefile.in +samples/calendar/makefile.bcc +samples/calendar/makefile.gcc +samples/calendar/makefile.unx +samples/calendar/makefile.wat +samples/calendar/makefile.vc +samples/calendar/calendar.cpp +samples/caret/.cvsignore +samples/caret/caret.bkl +samples/caret/caret.pro +samples/caret/caret.rc +samples/caret/caretM5.xml +samples/caret/descrip.mms +samples/caret/mondrian.xpm +samples/caret/caret.dsp +samples/caret/Makefile.in +samples/caret/makefile.bcc +samples/caret/makefile.gcc +samples/caret/makefile.unx +samples/caret/makefile.wat +samples/caret/makefile.vc +samples/caret/caret.cpp +samples/checklst/.cvsignore +samples/checklst/checklst.bkl +samples/checklst/checklst.pro +samples/checklst/checklst.rc +samples/checklst/checklst.rcO +samples/checklst/checklstM5.xml +samples/checklst/descrip.mms +samples/checklst/makefile.va +samples/checklst/mondrian.xpm +samples/checklst/mondros2.ico +samples/checklst/checklst.dsp +samples/checklst/Makefile.in +samples/checklst/makefile.bcc +samples/checklst/makefile.gcc +samples/checklst/makefile.unx +samples/checklst/makefile.wat +samples/checklst/makefile.vc +samples/checklst/checklst.cpp +samples/config/.cvsignore +samples/config/config.bkl +samples/config/config.pro +samples/config/configM5.xml +samples/config/conftest.rc +samples/config/descrip.mms +samples/config/config.dsp +samples/config/Makefile.in +samples/config/makefile.bcc +samples/config/makefile.gcc +samples/config/makefile.unx +samples/config/makefile.wat +samples/config/makefile.vc +samples/config/conftest.cpp +samples/console/console.bkl +samples/console/console.pro +samples/console/testdata.fc +samples/console/console.cpp +samples/console/console.dsp +samples/console/makefile.gcc +samples/console/makefile.unx +samples/console/Makefile.in +samples/console/makefile.bcc +samples/console/makefile.vc +samples/console/makefile.wat +samples/controls/.cvsignore +samples/controls/controls.pro +samples/controls/controls.rc +samples/controls/controlsM5.xml +samples/controls/controlsW7.xml +samples/controls/descrip.mms +samples/controls/mondrian.ico +samples/controls/mondrian.xpm +samples/controls/test2.bmp +samples/controls/controls.bkl +samples/controls/controls.cpp +samples/controls/controls.dsp +samples/controls/Makefile.in +samples/controls/makefile.bcc +samples/controls/makefile.gcc +samples/controls/makefile.unx +samples/controls/makefile.wat +samples/controls/makefile.vc +samples/controls/icons/choice.bmp +samples/controls/icons/choice.xpm +samples/controls/icons/combo.bmp +samples/controls/icons/combo.xpm +samples/controls/icons/gauge.bmp +samples/controls/icons/gauge.xpm +samples/controls/icons/list.bmp +samples/controls/icons/list.xpm +samples/controls/icons/radio.bmp +samples/controls/icons/radio.xpm +samples/controls/icons/stattext.xpm +samples/controls/icons/text.bmp +samples/controls/icons/text.xpm +samples/dataview/dataview.bkl +samples/dataview/null.xpm +samples/dataview/dataview.dsp +samples/dataview/Makefile.in +samples/dataview/makefile.bcc +samples/dataview/makefile.gcc +samples/dataview/makefile.wat +samples/dataview/makefile.vc +samples/dataview/dataview.cpp +samples/db/.cvsignore +samples/db/db.pro +samples/db/db.xpm +samples/db/dbM5.xml +samples/db/dbtest.h +samples/db/dbtest.ico +samples/db/dbtest.rc +samples/db/descrip.mms +samples/db/listdb.h +samples/db/listdb.cpp +samples/db/db.bkl +samples/db/db.dsp +samples/db/Makefile.in +samples/db/makefile.bcc +samples/db/makefile.gcc +samples/db/makefile.unx +samples/db/makefile.wat +samples/db/makefile.vc +samples/db/dbtest.cpp +samples/debugrpt/debugrpt.bkl +samples/debugrpt/debugrpt.cpp +samples/debugrpt/debugrpt.dsp +samples/debugrpt/makefile.vc +samples/debugrpt/Makefile.in +samples/debugrpt/makefile.bcc +samples/debugrpt/makefile.gcc +samples/debugrpt/makefile.wat +samples/dialogs/.cvsignore +samples/dialogs/descrip.mms +samples/dialogs/dialogs.ico +samples/dialogs/dialogs.pro +samples/dialogs/dialogs.rc +samples/dialogs/dialogs.rcO +samples/dialogs/dialogsM5.xml +samples/dialogs/dialogsW7.xml +samples/dialogs/makefile.mgl +samples/dialogs/makefile.va +samples/dialogs/tips.txt +samples/dialogs/dialogs.h +samples/dialogs/dialogs.bkl +samples/dialogs/dialogs.dsp +samples/dialogs/Makefile.in +samples/dialogs/makefile.bcc +samples/dialogs/makefile.gcc +samples/dialogs/makefile.unx +samples/dialogs/makefile.wat +samples/dialogs/makefile.vc +samples/dialogs/dialogs.cpp +samples/dialup/.cvsignore +samples/dialup/descrip.mms +samples/dialup/dialup.pro +samples/dialup/nettest.rc +samples/dialup/dialup.bkl +samples/dialup/dialup.dsp +samples/dialup/Makefile.in +samples/dialup/makefile.bcc +samples/dialup/makefile.gcc +samples/dialup/makefile.unx +samples/dialup/makefile.wat +samples/dialup/makefile.vc +samples/dialup/nettest.cpp +samples/display/display.bkl +samples/display/display.pro +samples/display/display.dsp +samples/display/makefile.vc +samples/display/Makefile.in +samples/display/makefile.bcc +samples/display/makefile.gcc +samples/display/makefile.wat +samples/display/display.cpp +samples/dnd/.cvsignore +samples/dnd/d_and_d.txt +samples/dnd/descrip.mms +samples/dnd/dnd.bkl +samples/dnd/dnd.pro +samples/dnd/dnd.rc +samples/dnd/dndM5.xml +samples/dnd/dndM7.mcp +samples/dnd/dndW7.xml +samples/dnd/dnd_copy.cur +samples/dnd/dnd_copy.xpm +samples/dnd/dnd_move.cur +samples/dnd/dnd_move.xpm +samples/dnd/dnd_none.cur +samples/dnd/dnd_none.xpm +samples/dnd/wxwin.png +samples/dnd/dnd.dsp +samples/dnd/Makefile.in +samples/dnd/makefile.bcc +samples/dnd/makefile.gcc +samples/dnd/makefile.unx +samples/dnd/makefile.wat +samples/dnd/makefile.vc +samples/dnd/dnd.cpp +samples/docview/.cvsignore +samples/docview/chart.ico +samples/docview/chart.r +samples/docview/descrip.mms +samples/docview/doc.h +samples/docview/doc.ico +samples/docview/doc.r +samples/docview/docview.bkl +samples/docview/docview.h +samples/docview/docview.pro +samples/docview/docview.r +samples/docview/docview.rc +samples/docview/docviewM5.xml +samples/docview/docviewM7.mcp +samples/docview/docviewW7.xml +samples/docview/makefile.vms +samples/docview/mondrian.ico +samples/docview/mondrian.r +samples/docview/mondrian.xpm +samples/docview/notepad.ico +samples/docview/view.cpp +samples/docview/view.h +samples/docview/docview.dsp +samples/docview/Makefile.in +samples/docview/makefile.bcc +samples/docview/makefile.gcc +samples/docview/makefile.unx +samples/docview/makefile.wat +samples/docview/doc.cpp +samples/docview/makefile.vc +samples/docview/docview.cpp +samples/docvwmdi/.cvsignore +samples/docvwmdi/chart.ico +samples/docvwmdi/doc.h +samples/docvwmdi/doc.ico +samples/docvwmdi/docview.cpp +samples/docvwmdi/docview.h +samples/docvwmdi/docview.rc +samples/docvwmdi/docvwmdi.pro +samples/docvwmdi/docvwmdiM5.xml +samples/docvwmdi/notepad.ico +samples/docvwmdi/view.cpp +samples/docvwmdi/view.h +samples/docvwmdi/doc.cpp +samples/docvwmdi/Makefile.in +samples/docvwmdi/docvwmdi.bkl +samples/docvwmdi/docvwmdi.dsp +samples/docvwmdi/makefile.bcc +samples/docvwmdi/makefile.gcc +samples/docvwmdi/makefile.unx +samples/docvwmdi/makefile.wat +samples/docvwmdi/makefile.vc +samples/dragimag/.cvsignore +samples/dragimag/backgrnd.png +samples/dragimag/dragicon.ico +samples/dragimag/dragicon.xpm +samples/dragimag/dragimag.bkl +samples/dragimag/dragimag.pro +samples/dragimag/dragimag.rc +samples/dragimag/dragimagM5.xml +samples/dragimag/makefile.sl +samples/dragimag/makefile.va +samples/dragimag/mondrian.ico +samples/dragimag/mondrian.xpm +samples/dragimag/shape01.png +samples/dragimag/shape02.png +samples/dragimag/shape03.png +samples/dragimag/dragimag.h +samples/dragimag/dragimag.dsp +samples/dragimag/Makefile.in +samples/dragimag/makefile.bcc +samples/dragimag/makefile.gcc +samples/dragimag/makefile.unx +samples/dragimag/makefile.wat +samples/dragimag/makefile.vc +samples/dragimag/dragimag.cpp +samples/drawing/.cvsignore +samples/drawing/descrip.mms +samples/drawing/drawing.bkl +samples/drawing/drawing.pro +samples/drawing/drawing.rc +samples/drawing/drawingM5.xml +samples/drawing/image.bmp +samples/drawing/mask.bmp +samples/drawing/mondrian.ico +samples/drawing/mondrian.xpm +samples/drawing/pat35.bmp +samples/drawing/pat36.bmp +samples/drawing/pat4.bmp +samples/drawing/smile.xpm +samples/drawing/drawing.dsp +samples/drawing/Makefile.in +samples/drawing/makefile.bcc +samples/drawing/makefile.gcc +samples/drawing/makefile.unx +samples/drawing/makefile.wat +samples/drawing/makefile.vc +samples/drawing/drawing.cpp +samples/dynamic/.cvsignore +samples/dynamic/dynamic.bkl +samples/dynamic/dynamic.pro +samples/dynamic/dynamic.rc +samples/dynamic/dynamicM5.xml +samples/dynamic/mondrian.ico +samples/dynamic/mondrian.xpm +samples/dynamic/dynamic.dsp +samples/dynamic/Makefile.in +samples/dynamic/makefile.bcc +samples/dynamic/makefile.gcc +samples/dynamic/makefile.unx +samples/dynamic/makefile.wat +samples/dynamic/makefile.vc +samples/dynamic/dynamic.cpp +samples/erase/.cvsignore +samples/erase/Erase.icc +samples/erase/descrip.mms +samples/erase/erase.bkl +samples/erase/erase.pro +samples/erase/erase.rc +samples/erase/erase.rc0 +samples/erase/erase.rc4 +samples/erase/eraseM5.xml +samples/erase/makefile.sl +samples/erase/makefile.va +samples/erase/makemac6.mcp +samples/erase/mondrian.ico +samples/erase/mondrian.xpm +samples/erase/mondros2.ico +samples/erase/erase.dsp +samples/erase/Makefile.in +samples/erase/makefile.bcc +samples/erase/makefile.gcc +samples/erase/makefile.unx +samples/erase/makefile.wat +samples/erase/makefile.vc +samples/erase/erase.cpp +samples/event/.cvsignore +samples/event/event.bkl +samples/event/event.pro +samples/event/event.rc +samples/event/eventM5.xml +samples/event/makefile.sl +samples/event/event.dsp +samples/event/Makefile.in +samples/event/makefile.bcc +samples/event/makefile.gcc +samples/event/makefile.unx +samples/event/makefile.wat +samples/event/makefile.vc +samples/event/event.cpp +samples/except/except.bkl +samples/except/except.dsp +samples/except/makefile.vc +samples/except/Makefile.in +samples/except/makefile.bcc +samples/except/makefile.gcc +samples/except/makefile.wat +samples/except/except.cpp +samples/exec/.cvsignore +samples/exec/exec.bkl +samples/exec/exec.pro +samples/exec/exec.rc +samples/exec/execM5.xml +samples/exec/makefile.sl +samples/exec/exec.dsp +samples/exec/Makefile.in +samples/exec/makefile.bcc +samples/exec/makefile.gcc +samples/exec/makefile.unx +samples/exec/makefile.wat +samples/exec/makefile.vc +samples/exec/exec.cpp +samples/font/.cvsignore +samples/font/descrip.mms +samples/font/font.bkl +samples/font/font.pro +samples/font/font.rc +samples/font/fontM5.xml +samples/font/mondrian.ico +samples/font/font.dsp +samples/font/Makefile.in +samples/font/makefile.bcc +samples/font/makefile.gcc +samples/font/makefile.unx +samples/font/makefile.wat +samples/font/makefile.vc +samples/font/font.cpp +samples/grid/.cvsignore +samples/grid/bitmap1.bmp +samples/grid/bitmap2.bmp +samples/grid/grid.bkl +samples/grid/griddemo.pro +samples/grid/griddemo.rc +samples/grid/griddemoM5.xml +samples/grid/griddemoM7.mcp +samples/grid/makefile.sl +samples/grid/griddemo.h +samples/grid/grid.dsp +samples/grid/Makefile.in +samples/grid/makefile.bcc +samples/grid/makefile.gcc +samples/grid/makefile.unx +samples/grid/makefile.wat +samples/grid/griddemo.cpp +samples/grid/makefile.vc +samples/help/.cvsignore +samples/help/back.gif +samples/help/bullet.bmp +samples/help/contents.gif +samples/help/cshelp.txt +samples/help/demo.rc +samples/help/doc.chm +samples/help/doc.cnt +samples/help/doc.h +samples/help/doc.hhc +samples/help/doc.hhk +samples/help/doc.hhp +samples/help/doc.hlp +samples/help/doc.hpj +samples/help/doc.tex +samples/help/doc.zip +samples/help/forward.gif +samples/help/help.pro +samples/help/helpM5.xml +samples/help/mondrian.ico +samples/help/mondrian.xpm +samples/help/tex2rtf.ini +samples/help/up.gif +samples/help/help.bkl +samples/help/help.dsw +samples/help/help.dsp +samples/help/Makefile.in +samples/help/makefile.bcc +samples/help/makefile.gcc +samples/help/makefile.unx +samples/help/makefile.wat +samples/help/makefile.vc +samples/help/demo.cpp +samples/help/doc/ClassGraph.class +samples/help/doc/ClassGraphPanel.class +samples/help/doc/ClassLayout.class +samples/help/doc/HIER.html +samples/help/doc/HIERjava.html +samples/help/doc/NavigatorButton.class +samples/help/doc/USE_HELP.html +samples/help/doc/aindex.html +samples/help/doc/down.gif +samples/help/doc/dxxgifs.tex +samples/help/doc/icon1.gif +samples/help/doc/icon2.gif +samples/help/doc/index.html +samples/help/doc/logo.gif +samples/help/doc/wx.htm +samples/help/doc/wx34.htm +samples/help/doc/wxExtHelpController.html +samples/help/doc/wxhelp.map +samples/help/doc/wx204.htm +samples/htlbox/htlbox.bkl +samples/htlbox/htlbox.rc +samples/htlbox/mondrian.ico +samples/htlbox/mondrian.xpm +samples/htlbox/results +samples/htlbox/htlbox.cpp +samples/htlbox/htlbox.dsp +samples/htlbox/Makefile.in +samples/htlbox/makefile.bcc +samples/htlbox/makefile.gcc +samples/htlbox/makefile.unx +samples/htlbox/makefile.wat +samples/htlbox/makefile.vc +samples/html/.cvsignore +samples/html/html_samples.bkl +samples/html/Makefile.in +samples/html/makefile.bcc +samples/html/makefile.gcc +samples/html/makefile.wat +samples/html/makefile.vc +samples/html/about/.cvsignore +samples/html/about/about.bkl +samples/html/about/about.pro +samples/html/about/about.rc +samples/html/about/aboutM5.xml +samples/html/about/aboutmac6.mcp +samples/html/about/about.dsp +samples/html/about/Makefile.in +samples/html/about/makefile.bcc +samples/html/about/makefile.gcc +samples/html/about/makefile.wat +samples/html/about/makefile.vc +samples/html/about/about.cpp +samples/html/about/data/about.htm +samples/html/about/data/logo.png +samples/html/help/help.pro +samples/html/help/help.rc +samples/html/help/helpM5.xml +samples/html/help/makemac6.mcp +samples/html/help/.cvsignore +samples/html/help/Makefile.in +samples/html/help/help.bkl +samples/html/help/help.dsp +samples/html/help/makefile.bcc +samples/html/help/makefile.gcc +samples/html/help/makefile.wat +samples/html/help/makefile.vc +samples/html/help/help.cpp +samples/html/help/helpfiles/another.hhc +samples/html/help/helpfiles/another.hhp +samples/html/help/helpfiles/another.htm +samples/html/help/helpfiles/contents.hhc +samples/html/help/helpfiles/testing.hhp +samples/html/help/helpfiles/Index.hhk +samples/html/help/helpfiles/book1.htm +samples/html/help/helpfiles/book2.htm +samples/html/help/helpfiles/main.htm +samples/html/help/helpfiles/page2-b.htm +samples/html/helpview/.cvsignore +samples/html/helpview/helpview.bkl +samples/html/helpview/helpview.ico +samples/html/helpview/helpview.pro +samples/html/helpview/helpview.rc +samples/html/helpview/helpviewM5.xml +samples/html/helpview/mondrian.ico +samples/html/helpview/test.zip +samples/html/helpview/helpview.dsp +samples/html/helpview/Makefile.in +samples/html/helpview/makefile.bcc +samples/html/helpview/makefile.gcc +samples/html/helpview/makefile.wat +samples/html/helpview/makefile.vc +samples/html/helpview/helpview.cpp +samples/html/htmlctrl/htmlctrl.bkl +samples/html/htmlctrl/Makefile.in +samples/html/htmlctrl/htmlctrl.cpp +samples/html/printing/.cvsignore +samples/html/printing/logo6.gif +samples/html/printing/mondrian.ico +samples/html/printing/printing.pro +samples/html/printing/printing.rc +samples/html/printing/printingM5.xml +samples/html/printing/test.htm +samples/html/printing/Makefile.in +samples/html/printing/makefile.bcc +samples/html/printing/makefile.gcc +samples/html/printing/makefile.wat +samples/html/printing/printing.bkl +samples/html/printing/printing.dsp +samples/html/printing/makefile.vc +samples/html/printing/printing.cpp +samples/html/test/.cvsignore +samples/html/test/8859_2.htm +samples/html/test/cp1250.htm +samples/html/test/fft.html +samples/html/test/foo.png +samples/html/test/i18n.gif +samples/html/test/imagemap.htm +samples/html/test/imagemap.png +samples/html/test/listtest.htm +samples/html/test/makemac6.mcp +samples/html/test/pic.png +samples/html/test/pic2.bmp +samples/html/test/regres.htm +samples/html/test/subsup.html +samples/html/test/tables.htm +samples/html/test/test.bkl +samples/html/test/test.htm +samples/html/test/test.pro +samples/html/test/test.rc +samples/html/test/testM5.xml +samples/html/test/f.html +samples/html/test/test.dsp +samples/html/test/Makefile.in +samples/html/test/makefile.bcc +samples/html/test/makefile.gcc +samples/html/test/makefile.wat +samples/html/test/makefile.vc +samples/html/test/test.cpp +samples/html/virtual/.cvsignore +samples/html/virtual/start.htm +samples/html/virtual/virtual.bkl +samples/html/virtual/virtual.pro +samples/html/virtual/virtual.rc +samples/html/virtual/virtualM5.xml +samples/html/virtual/virtualmac6.mcp +samples/html/virtual/virtual.dsp +samples/html/virtual/Makefile.in +samples/html/virtual/makefile.bcc +samples/html/virtual/makefile.gcc +samples/html/virtual/makefile.wat +samples/html/virtual/makefile.vc +samples/html/virtual/virtual.cpp +samples/html/widget/.cvsignore +samples/html/widget/start.htm +samples/html/widget/widget.bkl +samples/html/widget/widget.pro +samples/html/widget/widget.rc +samples/html/widget/widgetM5.xml +samples/html/widget/widget.dsp +samples/html/widget/Makefile.in +samples/html/widget/makefile.bcc +samples/html/widget/makefile.gcc +samples/html/widget/makefile.wat +samples/html/widget/makefile.vc +samples/html/widget/widget.cpp +samples/html/zip/.cvsignore +samples/html/zip/pages.zip +samples/html/zip/start.htm +samples/html/zip/zip.bkl +samples/html/zip/zip.pro +samples/html/zip/zip.rc +samples/html/zip/zipM5.xml +samples/html/zip/zip.dsp +samples/html/zip/Makefile.in +samples/html/zip/makefile.bcc +samples/html/zip/makefile.gcc +samples/html/zip/makefile.wat +samples/html/zip/makefile.vc +samples/html/zip/zip.cpp +samples/image/.cvsignore +samples/image/descrip.mms +samples/image/horse.bmp +samples/image/horse.cur +samples/image/horse.gif +samples/image/horse.ico +samples/image/horse.jpg +samples/image/horse.pcx +samples/image/horse.png +samples/image/horse.pnm +samples/image/horse.tif +samples/image/horse.xpm +samples/image/horse3.ani +samples/image/horse_ag.pnm +samples/image/horse_rg.pnm +samples/image/image.pro +samples/image/image.rc +samples/image/image.rco +samples/image/imageM5.xml +samples/image/makefile.va +samples/image/makemac6.mcp +samples/image/smile.xbm +samples/image/smile.xpm +samples/image/toucan.png +samples/image/cmyk.jpg +samples/image/horse.tga +samples/image/image.bkl +samples/image/image.dsp +samples/image/Makefile.in +samples/image/makefile.bcc +samples/image/makefile.gcc +samples/image/makefile.unx +samples/image/makefile.wat +samples/image/makefile.vc +samples/image/image.cpp +samples/internat/.cvsignore +samples/internat/internat.pro +samples/internat/internat.rc +samples/internat/internatM5.xml +samples/internat/makefile.vms +samples/internat/makemac6.mcp +samples/internat/mondrian.ico +samples/internat/mondrian.xpm +samples/internat/readme.txt +samples/internat/internat.bkl +samples/internat/internat.dsp +samples/internat/Makefile.in +samples/internat/makefile.bcc +samples/internat/makefile.gcc +samples/internat/makefile.unx +samples/internat/makefile.wat +samples/internat/makefile.vc +samples/internat/internat.cpp +samples/internat/bg/internat.mo +samples/internat/bg/internat.po +samples/internat/cs/internat.mo +samples/internat/cs/internat.po +samples/internat/de/internat.mo +samples/internat/de/internat.po +samples/internat/fr/internat.mo +samples/internat/fr/internat.po +samples/internat/ja/internat.mo +samples/internat/ja/internat.po +samples/internat/ja_JP.EUC-JP/internat.mo +samples/internat/ja_JP.EUC-JP/internat.po +samples/internat/ka/internat.mo +samples/internat/ka/internat.po +samples/internat/pl/internat.mo +samples/internat/pl/internat.po +samples/internat/ru/internat.mo +samples/internat/ru/internat.po +samples/internat/sv/internat.mo +samples/internat/sv/internat.po +samples/internat/ar/internat.mo +samples/internat/ar/internat.po +samples/ipc/.cvsignore +samples/ipc/client.b32 +samples/ipc/client.g95 +samples/ipc/client.h +samples/ipc/client.pro +samples/ipc/client.rc +samples/ipc/client.vc +samples/ipc/client.wat +samples/ipc/ipcsetup.h +samples/ipc/mondrian.ico +samples/ipc/mondrian.xpm +samples/ipc/server.b32 +samples/ipc/server.g95 +samples/ipc/server.h +samples/ipc/server.pro +samples/ipc/server.rc +samples/ipc/server.vc +samples/ipc/server.wat +samples/ipc/Makefile.in +samples/ipc/ipc.bkl +samples/ipc/ipc_ipcclient.dsp +samples/ipc/ipc_ipcserver.dsp +samples/ipc/makefile.bcc +samples/ipc/makefile.gcc +samples/ipc/makefile.unx +samples/ipc/makefile.vc +samples/ipc/makefile.wat +samples/ipc/client.cpp +samples/ipc/server.cpp +samples/joytest/.cvsignore +samples/joytest/buttonpress.wav +samples/joytest/chart.ico +samples/joytest/joytest.bkl +samples/joytest/joytest.h +samples/joytest/joytest.ico +samples/joytest/joytest.pro +samples/joytest/joytest.rc +samples/joytest/joytestM5.xml +samples/joytest/makefile.sl +samples/joytest/mondrian.ico +samples/joytest/joytest.dsp +samples/joytest/Makefile.in +samples/joytest/makefile.bcc +samples/joytest/makefile.gcc +samples/joytest/makefile.unx +samples/joytest/makefile.wat +samples/joytest/makefile.vc +samples/joytest/joytest.cpp +samples/keyboard/.cvsignore +samples/keyboard/keyboard.bkl +samples/keyboard/keyboard.pro +samples/keyboard/keyboard.rc +samples/keyboard/keyboardM5.xml +samples/keyboard/keyboard.dsp +samples/keyboard/Makefile.in +samples/keyboard/makefile.bcc +samples/keyboard/makefile.gcc +samples/keyboard/makefile.wat +samples/keyboard/makefile.vc +samples/keyboard/keyboard.cpp +samples/layout/.cvsignore +samples/layout/expt.cpp +samples/layout/layout.bkl +samples/layout/layout.pro +samples/layout/layout.rc +samples/layout/layoutM5.xml +samples/layout/makefile.vms +samples/layout/layout.h +samples/layout/layout.dsp +samples/layout/Makefile.in +samples/layout/makefile.bcc +samples/layout/makefile.gcc +samples/layout/makefile.unx +samples/layout/makefile.wat +samples/layout/makefile.vc +samples/layout/layout.cpp +samples/listbox/.cvsignore +samples/listbox/lboxtestM5.xml +samples/listbox/listbox.bkl +samples/listbox/listbox.dsp +samples/listbox/makefile.vc +samples/listbox/Makefile.in +samples/listbox/makefile.bcc +samples/listbox/makefile.gcc +samples/listbox/makefile.wat +samples/listbox/lboxtest.cpp +samples/listctrl/.cvsignore +samples/listctrl/listctrl.bkl +samples/listctrl/listctrl.pro +samples/listctrl/listctrlM5.xml +samples/listctrl/listtest.rc +samples/listctrl/mondrian.ico +samples/listctrl/mondrian.xpm +samples/listctrl/listctrl.dsp +samples/listctrl/Makefile.in +samples/listctrl/makefile.bcc +samples/listctrl/makefile.gcc +samples/listctrl/makefile.unx +samples/listctrl/makefile.wat +samples/listctrl/listtest.h +samples/listctrl/makefile.vc +samples/listctrl/listtest.cpp +samples/listctrl/bitmaps/small1.ico +samples/listctrl/bitmaps/small1.xpm +samples/listctrl/bitmaps/toolbrai.ico +samples/listctrl/bitmaps/toolbrai.xpm +samples/listctrl/bitmaps/toolchar.ico +samples/listctrl/bitmaps/toolchar.xpm +samples/listctrl/bitmaps/toolchec.ico +samples/listctrl/bitmaps/toolchec.xpm +samples/listctrl/bitmaps/tooldata.ico +samples/listctrl/bitmaps/tooldata.xpm +samples/listctrl/bitmaps/toolgame.ico +samples/listctrl/bitmaps/toolgame.xpm +samples/listctrl/bitmaps/toolnote.ico +samples/listctrl/bitmaps/toolnote.xpm +samples/listctrl/bitmaps/tooltime.ico +samples/listctrl/bitmaps/tooltime.xpm +samples/listctrl/bitmaps/tooltodo.ico +samples/listctrl/bitmaps/tooltodo.xpm +samples/listctrl/bitmaps/toolword.ico +samples/listctrl/bitmaps/toolword.xpm +samples/mdi/.cvsignore +samples/mdi/chart.ico +samples/mdi/descrip.mms +samples/mdi/makefile.sl +samples/mdi/makefile.vms +samples/mdi/mdi.bkl +samples/mdi/mdi.pro +samples/mdi/mdiM5.xml +samples/mdi/mdi.h +samples/mdi/mdi.dsp +samples/mdi/Makefile.in +samples/mdi/makefile.bcc +samples/mdi/makefile.gcc +samples/mdi/makefile.unx +samples/mdi/makefile.wat +samples/mdi/chart.xpm +samples/mdi/mdi.rc +samples/mdi/makefile.vc +samples/mdi/mdi.cpp +samples/mdi/bitmaps/copy.xpm +samples/mdi/bitmaps/cut.xpm +samples/mdi/bitmaps/help.xpm +samples/mdi/bitmaps/new.xpm +samples/mdi/bitmaps/open.xpm +samples/mdi/bitmaps/paste.xpm +samples/mdi/bitmaps/preview.xpm +samples/mdi/bitmaps/print.xpm +samples/mdi/bitmaps/save.xpm +samples/mediaplayer/mediaplayer.bkl +samples/mediaplayer/makefile.vc +samples/mediaplayer/mediaplayer.dsp +samples/mediaplayer/Makefile.in +samples/mediaplayer/makefile.bcc +samples/mediaplayer/makefile.gcc +samples/mediaplayer/makefile.wat +samples/mediaplayer/mediaplayer.cpp +samples/memcheck/.cvsignore +samples/memcheck/memcheck.bkl +samples/memcheck/memcheck.pro +samples/memcheck/memcheck.rc +samples/memcheck/mondrian.ico +samples/memcheck/mondrian.xpm +samples/memcheck/memcheck.dsp +samples/memcheck/Makefile.in +samples/memcheck/makefile.bcc +samples/memcheck/makefile.gcc +samples/memcheck/makefile.unx +samples/memcheck/makefile.wat +samples/memcheck/makefile.vc +samples/memcheck/memcheck.cpp +samples/menu/.cvsignore +samples/menu/MENU.RCO +samples/menu/copy.xpm +samples/menu/descrip.mms +samples/menu/makefile.va +samples/menu/menu.bkl +samples/menu/menu.pro +samples/menu/menu.rc +samples/menu/menuM5.xml +samples/menu/mondros2.ico +samples/menu/menu.dsp +samples/menu/Makefile.in +samples/menu/makefile.bcc +samples/menu/makefile.gcc +samples/menu/makefile.unx +samples/menu/makefile.wat +samples/menu/makefile.vc +samples/menu/menu.cpp +samples/mfc/.cvsignore +samples/mfc/mfc.bkl +samples/mfc/mfc.pro +samples/mfc/mfctest.h +samples/mfc/mfctest.ico +samples/mfc/mfctest.rc +samples/mfc/resource.h +samples/mfc/stdafx.h +samples/mfc/mfc.dsp +samples/mfc/Makefile.in +samples/mfc/makefile.bcc +samples/mfc/makefile.gcc +samples/mfc/makefile.wat +samples/mfc/makefile.vc +samples/mfc/mfctest.cpp +samples/minifram/.cvsignore +samples/minifram/makefile.sl +samples/minifram/minifram.bkl +samples/minifram/minifram.pro +samples/minifram/minifram.rc +samples/minifram/miniframM5.xml +samples/minifram/mondrian.ico +samples/minifram/mondrian.xpm +samples/minifram/minifram.h +samples/minifram/minifram.dsp +samples/minifram/Makefile.in +samples/minifram/makefile.bcc +samples/minifram/makefile.gcc +samples/minifram/makefile.unx +samples/minifram/makefile.wat +samples/minifram/makefile.vc +samples/minifram/minifram.cpp +samples/minifram/bitmaps/copy.xpm +samples/minifram/bitmaps/cut.xpm +samples/minifram/bitmaps/help.xpm +samples/minifram/bitmaps/new.xpm +samples/minifram/bitmaps/open.xpm +samples/minifram/bitmaps/preview.xpm +samples/minifram/bitmaps/print.xpm +samples/minifram/bitmaps/save.xpm +samples/minimal/Info.plist +samples/minimal/Minimal.icc +samples/minimal/MinimalClassicM8.xml +samples/minimal/MinimalM8.xml +samples/minimal/descrip.mms +samples/minimal/makefile.mic +samples/minimal/makefile.sl +samples/minimal/makefile.va +samples/minimal/minimal.bkl +samples/minimal/minimal.plc +samples/minimal/minimal.pro +samples/minimal/minimal.rc +samples/minimal/minimal.rc4 +samples/minimal/minimal.rcO +samples/minimal/minimalW7.xml +samples/minimal/mondrian.icns +samples/minimal/mondrian.r +samples/minimal/mondros2.ico +samples/minimal/.cvsignore +samples/minimal/makefile.vc +samples/minimal/minimal.dsp +samples/minimal/Makefile.in +samples/minimal/makefile.bcc +samples/minimal/makefile.gcc +samples/minimal/makefile.unx +samples/minimal/makefile.wat +samples/minimal/minimal.cpp +samples/minimal/minimal.xcode/.cvsignore +samples/minimal/minimal.xcode/project.pbxproj +samples/minimal/minimal.xcodeproj/.cvsignore +samples/minimal/minimal.xcodeproj/project.pbxproj +samples/mobile/mobile_samples.bkl +samples/mobile/Makefile.in +samples/mobile/makefile.bcc +samples/mobile/makefile.gcc +samples/mobile/makefile.wat +samples/mobile/makefile.vc +samples/mobile/styles/marble.jpg +samples/mobile/styles/styles.bkl +samples/mobile/styles/styles.h +samples/mobile/styles/makefile.vc +samples/mobile/styles/styles.dsp +samples/mobile/styles/Makefile.in +samples/mobile/styles/makefile.bcc +samples/mobile/styles/makefile.gcc +samples/mobile/styles/makefile.wat +samples/mobile/styles/styles.cpp +samples/mobile/wxedit/wxedit.bkl +samples/mobile/wxedit/wxedit.h +samples/mobile/wxedit/makefile.vc +samples/mobile/wxedit/wxedit.dsp +samples/mobile/wxedit/Makefile.in +samples/mobile/wxedit/makefile.bcc +samples/mobile/wxedit/makefile.gcc +samples/mobile/wxedit/makefile.wat +samples/mobile/wxedit/wxedit.cpp +samples/multimon/multimon.bkl +samples/multimon/makefile.vc +samples/multimon/multimon.dsp +samples/multimon/Makefile.in +samples/multimon/makefile.bcc +samples/multimon/makefile.gcc +samples/multimon/makefile.unx +samples/multimon/makefile.wat +samples/multimon/multimon_test.cpp +samples/nativdlg/.cvsignore +samples/nativdlg/dialog1.rc +samples/nativdlg/makefile.vms +samples/nativdlg/nativdlg.bkl +samples/nativdlg/nativdlg.h +samples/nativdlg/nativdlg.pro +samples/nativdlg/nativdlg.rc +samples/nativdlg/resource.h +samples/nativdlg/nativdlg.dsp +samples/nativdlg/Makefile.in +samples/nativdlg/makefile.bcc +samples/nativdlg/makefile.gcc +samples/nativdlg/makefile.wat +samples/nativdlg/makefile.vc +samples/nativdlg/nativdlg.cpp +samples/notebook/.cvsignore +samples/notebook/makefile.sl +samples/notebook/makefile.va +samples/notebook/mondrian.ico +samples/notebook/mondros2.ico +samples/notebook/notebook.bkl +samples/notebook/notebook.pro +samples/notebook/notebook.rcO +samples/notebook/notebookM5.xml +samples/notebook/notebook.h +samples/notebook/makefile.vc +samples/notebook/notebook.dsp +samples/notebook/Makefile.in +samples/notebook/makefile.bcc +samples/notebook/makefile.gcc +samples/notebook/makefile.unx +samples/notebook/makefile.wat +samples/notebook/notebook.cpp +samples/oleauto/.cvsignore +samples/oleauto/mondrian.ico +samples/oleauto/mondrian.xpm +samples/oleauto/oleauto.bkl +samples/oleauto/oleauto.pro +samples/oleauto/oleauto.rc +samples/oleauto/oleauto.dsp +samples/oleauto/Makefile.in +samples/oleauto/makefile.bcc +samples/oleauto/makefile.gcc +samples/oleauto/makefile.wat +samples/oleauto/makefile.vc +samples/oleauto/oleauto.cpp +samples/opengl/opengl_samples.bkl +samples/opengl/Makefile.in +samples/opengl/makefile.bcc +samples/opengl/makefile.gcc +samples/opengl/makefile.wat +samples/opengl/makefile.vc +samples/opengl/cube/.cvsignore +samples/opengl/cube/cube.cpp +samples/opengl/cube/cube.h +samples/opengl/cube/cube.pro +samples/opengl/cube/cube.rc +samples/opengl/cube/mondrian.ico +samples/opengl/cube/cube.bkl +samples/opengl/cube/cube.dsp +samples/opengl/cube/Makefile.in +samples/opengl/cube/makefile.bcc +samples/opengl/cube/makefile.gcc +samples/opengl/cube/makefile.unx +samples/opengl/cube/makefile.wat +samples/opengl/cube/makefile.vc +samples/opengl/isosurf/.cvsignore +samples/opengl/isosurf/isosurf.dat.gz +samples/opengl/isosurf/isosurf.h +samples/opengl/isosurf/isosurf.pro +samples/opengl/isosurf/mondrian.ico +samples/opengl/isosurf/isosurf.bkl +samples/opengl/isosurf/isosurf.dsp +samples/opengl/isosurf/makefile.vc +samples/opengl/isosurf/Makefile.in +samples/opengl/isosurf/makefile.bcc +samples/opengl/isosurf/makefile.gcc +samples/opengl/isosurf/makefile.unx +samples/opengl/isosurf/makefile.wat +samples/opengl/isosurf/isosurf.cpp +samples/opengl/penguin/.cvsignore +samples/opengl/penguin/dxfrenderer.h +samples/opengl/penguin/penguin.dxf.gz +samples/opengl/penguin/penguin.h +samples/opengl/penguin/penguin.pro +samples/opengl/penguin/penguin.rc +samples/opengl/penguin/trackball.c +samples/opengl/penguin/trackball.h +samples/opengl/penguin/penguin.bkl +samples/opengl/penguin/dxfrenderer.cpp +samples/opengl/penguin/penguin.dsp +samples/opengl/penguin/Makefile.in +samples/opengl/penguin/makefile.bcc +samples/opengl/penguin/makefile.gcc +samples/opengl/penguin/makefile.unx +samples/opengl/penguin/makefile.wat +samples/opengl/penguin/makefile.vc +samples/opengl/penguin/penguin.cpp +samples/ownerdrw/.cvsignore +samples/ownerdrw/bell.bmp +samples/ownerdrw/info.bmp +samples/ownerdrw/info_mono.bmp +samples/ownerdrw/mondrian.ico +samples/ownerdrw/nosound.bmp +samples/ownerdrw/nosound.png +samples/ownerdrw/ownerdrw.bkl +samples/ownerdrw/ownerdrw.pro +samples/ownerdrw/ownerdrw.rc +samples/ownerdrw/sound.bmp +samples/ownerdrw/sound.png +samples/ownerdrw/ownerdrw.dsp +samples/ownerdrw/Makefile.in +samples/ownerdrw/makefile.bcc +samples/ownerdrw/makefile.gcc +samples/ownerdrw/makefile.wat +samples/ownerdrw/makefile.vc +samples/ownerdrw/ownerdrw.cpp +samples/png/.cvsignore +samples/png/julian.png +samples/png/png.bkl +samples/png/png.pro +samples/png/pngM5.xml +samples/png/pngdemo.h +samples/png/pngdemo.rc +samples/png/png.dsp +samples/png/Makefile.in +samples/png/makefile.bcc +samples/png/makefile.gcc +samples/png/makefile.unx +samples/png/makefile.wat +samples/png/makefile.vc +samples/png/pngdemo.cpp +samples/popup/popup.bkl +samples/popup/popup.dsp +samples/popup/Makefile.in +samples/popup/makefile.bcc +samples/popup/makefile.gcc +samples/popup/makefile.unx +samples/popup/makefile.wat +samples/popup/makefile.vc +samples/popup/popup.cpp +samples/printing/.cvsignore +samples/printing/folder.xpm +samples/printing/mondrian.ico +samples/printing/mondrian.xpm +samples/printing/printing.bkl +samples/printing/printing.pro +samples/printing/printing.rc +samples/printing/printingM5.xml +samples/printing/printing.h +samples/printing/printing.dsp +samples/printing/Makefile.in +samples/printing/makefile.bcc +samples/printing/makefile.gcc +samples/printing/makefile.unx +samples/printing/makefile.wat +samples/printing/makefile.vc +samples/printing/printing.cpp +samples/propsize/.cvsignore +samples/propsize/makefile.sl +samples/propsize/mondrian.ico +samples/propsize/propsize.bkl +samples/propsize/propsize.pro +samples/propsize/propsize.rc +samples/propsize/propsizeM5.xml +samples/propsize/mondrian.xpm +samples/propsize/propsize.dsp +samples/propsize/Makefile.in +samples/propsize/makefile.bcc +samples/propsize/makefile.gcc +samples/propsize/makefile.unx +samples/propsize/makefile.wat +samples/propsize/makefile.vc +samples/propsize/propsize.cpp +samples/regtest/.cvsignore +samples/regtest/key1.ico +samples/regtest/key2.ico +samples/regtest/key3.ico +samples/regtest/registry.ico +samples/regtest/regtest.bkl +samples/regtest/regtest.pro +samples/regtest/regtest.rc +samples/regtest/regtestM5.xml +samples/regtest/value1.ico +samples/regtest/value2.ico +samples/regtest/regtest.dsp +samples/regtest/Makefile.in +samples/regtest/makefile.bcc +samples/regtest/makefile.gcc +samples/regtest/makefile.wat +samples/regtest/makefile.vc +samples/regtest/regtest.cpp +samples/render/renddll.cpp +samples/render/render.bkl +samples/render/makefile.vc +samples/render/render_renddll.dsp +samples/render/render_render.dsp +samples/render/Makefile.in +samples/render/makefile.bcc +samples/render/makefile.gcc +samples/render/makefile.unx +samples/render/makefile.wat +samples/render/render.cpp +samples/richtext/readme.txt +samples/richtext/todo.txt +samples/richtext/richtext.bkl +samples/richtext/richtext.dsp +samples/richtext/Makefile.in +samples/richtext/makefile.bcc +samples/richtext/makefile.gcc +samples/richtext/richtext.cpp +samples/richtext/bitmaps/alignleft.xpm +samples/richtext/bitmaps/alignright.xpm +samples/richtext/bitmaps/bold.xpm +samples/richtext/bitmaps/centre.xpm +samples/richtext/bitmaps/font.xpm +samples/richtext/bitmaps/idea.xpm +samples/richtext/bitmaps/indentless.xpm +samples/richtext/bitmaps/indentmore.xpm +samples/richtext/bitmaps/italic.xpm +samples/richtext/bitmaps/smiley.xpm +samples/richtext/bitmaps/underline.xpm +samples/richtext/bitmaps/zebra.xpm +samples/richtext/bitmaps/copy.xpm +samples/richtext/bitmaps/cut.xpm +samples/richtext/bitmaps/open.xpm +samples/richtext/bitmaps/paste.xpm +samples/richtext/bitmaps/redo.xpm +samples/richtext/bitmaps/save.xpm +samples/richtext/bitmaps/undo.xpm +samples/rotate/.cvsignore +samples/rotate/duck.png +samples/rotate/mondrian.ico +samples/rotate/rotate.bkl +samples/rotate/rotate.pro +samples/rotate/rotate.rc +samples/rotate/rotateM5.xml +samples/rotate/rotate.dsp +samples/rotate/Makefile.in +samples/rotate/makefile.bcc +samples/rotate/makefile.gcc +samples/rotate/makefile.unx +samples/rotate/makefile.wat +samples/rotate/makefile.vc +samples/rotate/rotate.cpp +samples/sashtest/.cvsignore +samples/sashtest/makefile.sl +samples/sashtest/sashtest.bkl +samples/sashtest/sashtest.h +samples/sashtest/sashtest.ico +samples/sashtest/sashtest.pro +samples/sashtest/sashtest.rc +samples/sashtest/sashtestM5.xml +samples/sashtest/sashtest.dsp +samples/sashtest/Makefile.in +samples/sashtest/makefile.bcc +samples/sashtest/makefile.gcc +samples/sashtest/makefile.unx +samples/sashtest/makefile.wat +samples/sashtest/makefile.vc +samples/sashtest/sashtest.cpp +samples/scroll/.cvsignore +samples/scroll/makefile.va +samples/scroll/mondros2.ico +samples/scroll/scroll.bkl +samples/scroll/scroll.pro +samples/scroll/scroll.rc +samples/scroll/scrollM5.xml +samples/scroll/scroll.dsp +samples/scroll/Makefile.in +samples/scroll/makefile.bcc +samples/scroll/makefile.gcc +samples/scroll/makefile.unx +samples/scroll/makefile.wat +samples/scroll/makefile.vc +samples/scroll/scroll.cpp +samples/scrollsub/.cvsignore +samples/scrollsub/scrollsub.bkl +samples/scrollsub/scrollsub.pro +samples/scrollsub/scrollsub.rc +samples/scrollsub/scrollsubM5.xml +samples/scrollsub/scrollsub.dsp +samples/scrollsub/Makefile.in +samples/scrollsub/makefile.bcc +samples/scrollsub/makefile.gcc +samples/scrollsub/makefile.unx +samples/scrollsub/makefile.wat +samples/scrollsub/makefile.vc +samples/scrollsub/scrollsub.cpp +samples/shaped/.cvsignore +samples/shaped/descrip.mms +samples/shaped/makefile.sl +samples/shaped/shaped.bkl +samples/shaped/shaped.rc +samples/shaped/shapedM5.xml +samples/shaped/star.png +samples/shaped/shaped.dsp +samples/shaped/Makefile.in +samples/shaped/makefile.bcc +samples/shaped/makefile.gcc +samples/shaped/makefile.unx +samples/shaped/makefile.wat +samples/shaped/makefile.vc +samples/shaped/shaped.cpp +samples/sockets/.cvsignore +samples/sockets/client.b32 +samples/sockets/client.g95 +samples/sockets/client.pro +samples/sockets/client.rc +samples/sockets/client.vc +samples/sockets/client.wat +samples/sockets/connect.ico +samples/sockets/mondrian.ico +samples/sockets/mondrian.xpm +samples/sockets/server.b32 +samples/sockets/server.g95 +samples/sockets/server.pro +samples/sockets/server.rc +samples/sockets/server.vc +samples/sockets/server.wat +samples/sockets/sockets.bkl +samples/sockets/sockets_client.dsp +samples/sockets/sockets_server.dsp +samples/sockets/Makefile.in +samples/sockets/makefile.bcc +samples/sockets/makefile.gcc +samples/sockets/makefile.unx +samples/sockets/makefile.wat +samples/sockets/makefile.vc +samples/sockets/client.cpp +samples/sockets/server.cpp +samples/sound/9000g.wav +samples/sound/cuckoo.wav +samples/sound/doggrowl.wav +samples/sound/sound.bkl +samples/sound/sound.rc +samples/sound/tinkalink2.wav +samples/sound/sound.dsp +samples/sound/Makefile.in +samples/sound/makefile.bcc +samples/sound/makefile.gcc +samples/sound/makefile.wat +samples/sound/makefile.vc +samples/sound/sound.cpp +samples/splash/mobile.xpm +samples/splash/press.mpg +samples/splash/press.pov +samples/splash/splash.bkl +samples/splash/splash.png +samples/splash/splash.pov +samples/splash/splash.dsp +samples/splash/Makefile.in +samples/splash/makefile.bcc +samples/splash/makefile.gcc +samples/splash/makefile.wat +samples/splash/makefile.vc +samples/splash/splash.cpp +samples/splitter/.cvsignore +samples/splitter/makefile.sl +samples/splitter/mondrian.ico +samples/splitter/splitter.bkl +samples/splitter/splitter.pro +samples/splitter/splitter.rc +samples/splitter/splitterM5.xml +samples/splitter/splitter.dsp +samples/splitter/Makefile.in +samples/splitter/makefile.bcc +samples/splitter/makefile.gcc +samples/splitter/makefile.unx +samples/splitter/makefile.wat +samples/splitter/makefile.vc +samples/splitter/splitter.cpp +samples/statbar/.cvsignore +samples/statbar/green.xpm +samples/statbar/makefile.sl +samples/statbar/red.xpm +samples/statbar/statbar.bkl +samples/statbar/statbar.pro +samples/statbar/statbar.rc +samples/statbar/statbarM5.xml +samples/statbar/statbar.dsp +samples/statbar/Makefile.in +samples/statbar/makefile.bcc +samples/statbar/makefile.gcc +samples/statbar/makefile.unx +samples/statbar/makefile.wat +samples/statbar/makefile.vc +samples/statbar/statbar.cpp +samples/taskbar/.cvsignore +samples/taskbar/smile.xpm +samples/taskbar/taskbar.bkl +samples/taskbar/taskbar.pro +samples/taskbar/taskbarM5.xml +samples/taskbar/tbtest.h +samples/taskbar/makefile.vc +samples/taskbar/taskbar.dsp +samples/taskbar/Makefile.in +samples/taskbar/makefile.bcc +samples/taskbar/makefile.gcc +samples/taskbar/makefile.wat +samples/taskbar/tbtest.cpp +samples/text/.cvsignore +samples/text/mondrian.ico +samples/text/mondrian.xpm +samples/text/text.bkl +samples/text/text.pro +samples/text/text.rc +samples/text/textM5.xml +samples/text/text.dsp +samples/text/Makefile.in +samples/text/makefile.bcc +samples/text/makefile.gcc +samples/text/makefile.unx +samples/text/makefile.wat +samples/text/makefile.vc +samples/text/text.cpp +samples/thread/.cvsignore +samples/thread/makefile.sl +samples/thread/thread.bkl +samples/thread/thread.pro +samples/thread/thread.rc +samples/thread/threadM5.xml +samples/thread/thread.dsp +samples/thread/Makefile.in +samples/thread/makefile.bcc +samples/thread/makefile.gcc +samples/thread/makefile.unx +samples/thread/makefile.wat +samples/thread/makefile.vc +samples/thread/thread.cpp +samples/toolbar/.cvsignore +samples/toolbar/makefile.sl +samples/toolbar/makefile.va +samples/toolbar/mondrian.ico +samples/toolbar/mondrian.xpm +samples/toolbar/mondros2.ico +samples/toolbar/toolbar.bkl +samples/toolbar/toolbar.pro +samples/toolbar/toolbar.rc +samples/toolbar/toolbar.rco +samples/toolbar/toolbarM5.xml +samples/toolbar/toolbar.dsp +samples/toolbar/Makefile.in +samples/toolbar/makefile.bcc +samples/toolbar/makefile.gcc +samples/toolbar/makefile.unx +samples/toolbar/makefile.wat +samples/toolbar/makefile.vc +samples/toolbar/toolbar.cpp +samples/toolbar/bitmaps/copy.bmp +samples/toolbar/bitmaps/copy.xpm +samples/toolbar/bitmaps/cut.bmp +samples/toolbar/bitmaps/cut.xpm +samples/toolbar/bitmaps/help.bmp +samples/toolbar/bitmaps/help.xpm +samples/toolbar/bitmaps/new.bmp +samples/toolbar/bitmaps/new.xpm +samples/toolbar/bitmaps/open.bmp +samples/toolbar/bitmaps/open.xpm +samples/toolbar/bitmaps/page.bmp +samples/toolbar/bitmaps/paste.bmp +samples/toolbar/bitmaps/preview.bmp +samples/toolbar/bitmaps/preview.xpm +samples/toolbar/bitmaps/print.bmp +samples/toolbar/bitmaps/print.xpm +samples/toolbar/bitmaps/save.bmp +samples/toolbar/bitmaps/save.xpm +samples/treectrl/.cvsignore +samples/treectrl/icon1.xpm +samples/treectrl/icon2.xpm +samples/treectrl/icon3.xpm +samples/treectrl/icon4.xpm +samples/treectrl/icon5.xpm +samples/treectrl/treetest.dsp +samples/treectrl/treetestM5.xml +samples/treectrl/treectrl.bkl +samples/treectrl/treetest.h +samples/treectrl/treectrl.dsp +samples/treectrl/Makefile.in +samples/treectrl/makefile.bcc +samples/treectrl/makefile.gcc +samples/treectrl/makefile.wat +samples/treectrl/makefile.vc +samples/treectrl/treetest.cpp +samples/typetest/.cvsignore +samples/typetest/makefile.sl +samples/typetest/mondrian.ico +samples/typetest/mondrian.xpm +samples/typetest/typetest.bkl +samples/typetest/typetest.h +samples/typetest/typetest.pro +samples/typetest/typetest.rc +samples/typetest/typetestM5.xml +samples/typetest/typetest.dsp +samples/typetest/Makefile.in +samples/typetest/makefile.bcc +samples/typetest/makefile.gcc +samples/typetest/makefile.unx +samples/typetest/makefile.wat +samples/typetest/makefile.vc +samples/typetest/typetest.cpp +samples/validate/.cvsignore +samples/validate/validateM5.xml +samples/validate/validate.bkl +samples/validate/validate.h +samples/validate/validate.dsp +samples/validate/Makefile.in +samples/validate/makefile.bcc +samples/validate/makefile.gcc +samples/validate/makefile.wat +samples/validate/makefile.vc +samples/validate/validate.cpp +samples/vscroll/vscroll.bkl +samples/vscroll/makefile.vc +samples/vscroll/vscroll.dsp +samples/vscroll/Makefile.in +samples/vscroll/makefile.bcc +samples/vscroll/makefile.gcc +samples/vscroll/makefile.wat +samples/vscroll/vstest.cpp +samples/widgets/.cvsignore +samples/widgets/makefile.mic +samples/widgets/widgets.pro +samples/widgets/widgetsM5.xml +samples/widgets/widgets.h +samples/widgets/Makefile.in +samples/widgets/bmpcombobox.cpp +samples/widgets/button.cpp +samples/widgets/checkbox.cpp +samples/widgets/clrpicker.cpp +samples/widgets/combobox.cpp +samples/widgets/datepick.cpp +samples/widgets/dirctrl.cpp +samples/widgets/dirpicker.cpp +samples/widgets/filepicker.cpp +samples/widgets/fontpicker.cpp +samples/widgets/gauge.cpp +samples/widgets/hyperlnk.cpp +samples/widgets/listbox.cpp +samples/widgets/makefile.bcc +samples/widgets/makefile.gcc +samples/widgets/makefile.unx +samples/widgets/makefile.wat +samples/widgets/notebook.cpp +samples/widgets/odcombobox.cpp +samples/widgets/radiobox.cpp +samples/widgets/searchctrl.cpp +samples/widgets/slider.cpp +samples/widgets/spinbtn.cpp +samples/widgets/static.cpp +samples/widgets/textctrl.cpp +samples/widgets/toggle.cpp +samples/widgets/widgets.bkl +samples/widgets/widgets.cpp +samples/widgets/widgets.dsp +samples/widgets/makefile.vc +samples/widgets/icons/.cvsignore +samples/widgets/icons/spinbtn.xpm +samples/widgets/icons/bmpbtn.xpm +samples/widgets/icons/button.xpm +samples/widgets/icons/checkbox.xpm +samples/widgets/icons/clrpicker.xpm +samples/widgets/icons/datepick.xpm +samples/widgets/icons/dirpicker.xpm +samples/widgets/icons/filepicker.xpm +samples/widgets/icons/fontpicker.xpm +samples/widgets/icons/gauge.xpm +samples/widgets/icons/hyperlnk.xpm +samples/widgets/icons/listbook.xpm +samples/widgets/icons/notebook.xpm +samples/widgets/icons/radiobox.xpm +samples/widgets/icons/scrolbar.xpm +samples/widgets/icons/slider.xpm +samples/widgets/icons/statbox.xpm +samples/widgets/icons/stattext.xpm +samples/widgets/icons/text.xpm +samples/widgets/icons/toggle.xpm +samples/widgets/icons/bmpcombobox.xpm +samples/widgets/icons/choicebk.xpm +samples/widgets/icons/combobox.xpm +samples/widgets/icons/dirctrl.xpm +samples/widgets/icons/listbox.xpm +samples/widgets/icons/odcombobox.xpm +samples/wizard/.cvsignore +samples/wizard/makefile.sl +samples/wizard/wizard.bkl +samples/wizard/wizard.pro +samples/wizard/wizard.rc +samples/wizard/wizardM5.xml +samples/wizard/wiztest.xpm +samples/wizard/wiztest2.xpm +samples/wizard/wizard.dsp +samples/wizard/Makefile.in +samples/wizard/makefile.bcc +samples/wizard/makefile.gcc +samples/wizard/makefile.unx +samples/wizard/makefile.wat +samples/wizard/makefile.vc +samples/wizard/wizard.cpp +samples/xrc/custclas.cpp +samples/xrc/custclas.h +samples/xrc/derivdlg.cpp +samples/xrc/derivdlg.h +samples/xrc/xrcdemo.h +samples/xrc/xrcdemo.rc +samples/xrc/descrip.mms +samples/xrc/myframe.h +samples/xrc/xrcdemo.bkl +samples/xrc/myframe.cpp +samples/xrc/xrcdemo.dsp +samples/xrc/Makefile.in +samples/xrc/makefile.bcc +samples/xrc/makefile.gcc +samples/xrc/makefile.wat +samples/xrc/makefile.vc +samples/xrc/xrcdemo.cpp +samples/xrc/rc/appicon.ico +samples/xrc/rc/artprov.xrc +samples/xrc/rc/basicdlg.xrc +samples/xrc/rc/custclas.xrc +samples/xrc/rc/derivdlg.xrc +samples/xrc/rc/fileopen.gif +samples/xrc/rc/filesave.gif +samples/xrc/rc/frame.xrc +samples/xrc/rc/fuzzy.gif +samples/xrc/rc/platform.xpm +samples/xrc/rc/platform.xrc +samples/xrc/rc/quotes.gif +samples/xrc/rc/resource.xrc +samples/xrc/rc/uncenter.xrc +samples/xrc/rc/update.gif +samples/xrc/rc/variable.xrc +samples/xrc/rc/appicon.xpm +samples/xrc/rc/artprov.xpm +samples/xrc/rc/basicdlg.xpm +samples/xrc/rc/controls.xpm +samples/xrc/rc/custclas.xpm +samples/xrc/rc/derivdlg.xpm +samples/xrc/rc/toolbar.xrc +samples/xrc/rc/uncenter.xpm +samples/xrc/rc/variable.xpm +samples/xrc/rc/stop.xpm +samples/xrc/rc/throbber.gif +samples/xrc/rc/menu.xrc +samples/xrc/rc/controls.xrc +samples/resource/makefile.wat +samples/tab/Makefile.in +samples/aui/auidemo.bkl +samples/aui/descrip.mms +samples/aui/auidemo.dsp +samples/aui/makefile.vc +samples/aui/Makefile.in +samples/aui/makefile.bcc +samples/aui/makefile.gcc +samples/aui/makefile.wat +samples/aui/auidemo.cpp +samples/combo/combo.bkl +samples/combo/dropbuth.png +samples/combo/dropbutn.png +samples/combo/dropbutp.png +samples/combo/makefile.dmc +samples/combo/combo.dsp +samples/combo/makefile.vc +samples/combo/Makefile.in +samples/combo/makefile.bcc +samples/combo/makefile.gcc +samples/combo/makefile.wat +samples/combo/combo.cpp +samples/power/power.bkl +samples/power/power.cpp +samples/power/makefile.vc +samples/power/power.dsp +samples/power/Makefile.in +samples/power/makefile.bcc +samples/power/makefile.gcc +samples/power/makefile.wat +samples/animate/anitest.bkl +samples/animate/hourglass.ani +samples/animate/throbber.gif +samples/animate/anitest.dsp +samples/animate/Makefile.in +samples/animate/makefile.bcc +samples/animate/makefile.gcc +samples/animate/makefile.wat +samples/animate/anitest.h +samples/animate/makefile.vc +samples/animate/anitest.cpp +samples/collpane/collpane.bkl +samples/collpane/collpane.dsp +samples/collpane/Makefile.in +samples/collpane/makefile.bcc +samples/collpane/makefile.gcc +samples/collpane/makefile.unx +samples/collpane/makefile.wat +samples/collpane/makefile.vc +samples/collpane/collpane.cpp diff --git a/distrib/scripts/manifests/makefile.rsp b/distrib/scripts/manifests/makefile.rsp index 4ba85f9649..23fb994440 100644 --- a/distrib/scripts/manifests/makefile.rsp +++ b/distrib/scripts/manifests/makefile.rsp @@ -1,8 +1,41 @@ +autoconf_inc.m4 +contrib/samples/deprecated/proplist/Makefile.in +contrib/samples/deprecated/resource/Makefile.in +contrib/samples/deprecated/treelay/Makefile.in +contrib/samples/fl/Makefile.in +contrib/samples/foldbar/extended/Makefile.in +contrib/samples/foldbar/foldpanelbar/Makefile.in +contrib/samples/gizmos/dynsash/Makefile.in +contrib/samples/gizmos/dynsash_switch/Makefile.in +contrib/samples/gizmos/editlbox/Makefile.in +contrib/samples/gizmos/led/Makefile.in +contrib/samples/gizmos/multicell/Makefile.in +contrib/samples/gizmos/splittree/Makefile.in +contrib/samples/mmedia/Makefile.in +contrib/samples/ogl/ogledit/Makefile.in +contrib/samples/ogl/studio/Makefile.in +contrib/samples/plot/Makefile.in +contrib/samples/stc/Makefile.in +contrib/samples/svg/Makefile.in +contrib/src/deprecated/Makefile.in +contrib/src/fl/Makefile.in +contrib/src/foldbar/Makefile.in +contrib/src/gizmos/Makefile.in +contrib/src/mmedia/Makefile.in +contrib/src/net/Makefile.in +contrib/src/ogl/Makefile.in +contrib/src/plot/Makefile.in +contrib/src/stc/Makefile.in +contrib/src/svg/Makefile.in +contrib/utils/convertrc/Makefile.in +demos/bombs/Makefile.in +demos/dbbrowse/Makefile.in +demos/forty/Makefile.in +demos/fractal/Makefile.in +demos/life/Makefile.in +demos/Makefile.in +demos/poem/Makefile.in Makefile.in -src/regex/Makefile.in -locale/Makefile -tests/Makefile.in -samples/Makefile.in samples/access/Makefile.in samples/animate/Makefile.in samples/artprov/Makefile.in @@ -19,6 +52,8 @@ samples/dataview/Makefile.in samples/db/Makefile.in samples/debugrpt/Makefile.in samples/dialogs/Makefile.in +samples/dialup/Makefile.in +samples/display/Makefile.in samples/dnd/Makefile.in samples/docview/Makefile.in samples/docvwmdi/Makefile.in @@ -26,44 +61,49 @@ samples/dragimag/Makefile.in samples/drawing/Makefile.in samples/dynamic/Makefile.in samples/erase/Makefile.in -samples/except/Makefile.in +samples/event/Makefile.in samples/except/Makefile.in samples/exec/Makefile.in -samples/event/Makefile.in +samples/font/Makefile.in samples/grid/Makefile.in -samples/keyboard/Makefile.in samples/help/Makefile.in samples/htlbox/Makefile.in -samples/internat/Makefile.in -samples/ipc/Makefile.in -samples/html/Makefile.in samples/html/about/Makefile.in samples/html/help/Makefile.in -samples/html/htmlctrl/Makefile.in samples/html/helpview/Makefile.in +samples/html/htmlctrl/Makefile.in +samples/html/Makefile.in samples/html/printing/Makefile.in samples/html/test/Makefile.in samples/html/virtual/Makefile.in samples/html/widget/Makefile.in samples/html/zip/Makefile.in -samples/html/htmlctrl/Makefile.in samples/image/Makefile.in +samples/internat/Makefile.in +samples/ipc/Makefile.in samples/joytest/Makefile.in +samples/keyboard/Makefile.in samples/layout/Makefile.in samples/listbox/Makefile.in samples/listctrl/Makefile.in -samples/mfc/Makefile.in samples/mdi/Makefile.in samples/mediaplayer/Makefile.in +samples/memcheck/Makefile.in +samples/menu/Makefile.in +samples/mfc/Makefile.in samples/minifram/Makefile.in samples/minimal/Makefile.in samples/mobile/Makefile.in -samples/mobile/wxedit/Makefile.in samples/mobile/styles/Makefile.in +samples/mobile/wxedit/Makefile.in samples/multimon/Makefile.in -samples/notebook/Makefile.in samples/nativdlg/Makefile.in +samples/notebook/Makefile.in samples/oleauto/Makefile.in +samples/opengl/cube/Makefile.in +samples/opengl/isosurf/Makefile.in +samples/opengl/Makefile.in +samples/opengl/penguin/Makefile.in samples/ownerdrw/Makefile.in samples/png/Makefile.in samples/popup/Makefile.in @@ -78,8 +118,8 @@ samples/sashtest/Makefile.in samples/scroll/Makefile.in samples/scrollsub/Makefile.in samples/shaped/Makefile.in -samples/sound/Makefile.in samples/sockets/Makefile.in +samples/sound/Makefile.in samples/splash/Makefile.in samples/splitter/Makefile.in samples/statbar/Makefile.in @@ -89,118 +129,59 @@ samples/thread/Makefile.in samples/toolbar/Makefile.in samples/treectrl/Makefile.in samples/typetest/Makefile.in -samples/dialup/Makefile.in -samples/display/Makefile.in -samples/font/Makefile.in -samples/menu/Makefile.in -samples/memcheck/Makefile.in -samples/opengl/Makefile.in -samples/opengl/cube/Makefile.in -samples/opengl/penguin/Makefile.in -samples/opengl/isosurf/Makefile.in samples/validate/Makefile.in samples/vscroll/Makefile.in -samples/xrc/Makefile.in samples/widgets/Makefile.in samples/wizard/Makefile.in -demos/Makefile.in -demos/bombs/Makefile.in -demos/forty/Makefile.in -demos/fractal/Makefile.in -demos/poem/Makefile.in -demos/life/Makefile.in -demos/dbbrowse/Makefile.in -utils/tex2rtf/Makefile.in -utils/tex2rtf/src/Makefile.in -utils/makegen/Makefile.in -utils/HelpGen/Makefile.in -utils/HelpGen/src/Makefile.in -utils/Makefile.in -utils/hhp2cached/Makefile.in -utils/emulator/Makefile.in +samples/xrc/Makefile.in +tests/Makefile.in utils/emulator/src/Makefile.in -utils/helpview/Makefile.in +utils/HelpGen/src/Makefile.in utils/helpview/src/Makefile.in +utils/hhp2cached/Makefile.in +utils/Makefile.in +utils/tex2rtf/src/Makefile.in utils/wxrc/Makefile.in - -contrib/Makefile.in -contrib/src/Makefile.in -contrib/src/applet/Makefile.in -contrib/src/canvas/Makefile.in -contrib/src/foldbar/Makefile.in -contrib/src/ogl/Makefile.in -contrib/src/mmedia/Makefile.in -contrib/src/stc/Makefile.in -contrib/src/plot/Makefile.in -contrib/src/gizmos/Makefile.in -contrib/src/animate/Makefile.in -contrib/src/fl/Makefile.in -contrib/src/net/Makefile.in - -contrib/samples/Makefile.in -contrib/samples/foldbar/Makefile.in -contrib/samples/foldbar/extended/Makefile.in -contrib/samples/foldbar/foldpanelbar/Makefile.in -contrib/samples/gizmos/Makefile.in -contrib/samples/gizmos/multicell/Makefile.in -contrib/samples/gizmos/splittree/Makefile.in -contrib/samples/gizmos/editlbox/Makefile.in -contrib/samples/gizmos/dynsash/Makefile.in -contrib/samples/gizmos/dynsash_switch/Makefile.in -contrib/samples/gizmos/led/Makefile.in -contrib/samples/ogl/Makefile.in -contrib/samples/ogl/ogledit/Makefile.in -contrib/samples/ogl/studio/Makefile.in -contrib/samples/mmedia/Makefile.in -contrib/samples/plot/Makefile.in -contrib/samples/stc/Makefile.in -contrib/samples/applet/Makefile.in -contrib/samples/animate/Makefile.in -contrib/samples/fl/Makefile.in -contrib/samples/svg/Makefile.in -contrib/src/svg/Makefile.in - -contrib/src/deprecated/Makefile.in -contrib/samples/deprecated/Makefile.in -contrib/samples/deprecated/proplist/Makefile.in -contrib/samples/deprecated/treelay/Makefile.in -contrib/samples/deprecated/resource/Makefile.in - -contrib/utils/Makefile.in - -descrip.mms -lib/vms.opt -lib/vms_gtk.opt -contrib/samples/mmedia/descrip.mms -demos/bombs/descrip.mms -samples/calendar/descrip.mms -samples/caret/descrip.mms -samples/checklst/descrip.mms -samples/config/descrip.mms -samples/controls/descrip.mms -samples/db/descrip.mms -samples/dialogs/descrip.mms -samples/dialup/descrip.mms -samples/dnd/descrip.mms -samples/docview/descrip.mms -samples/drawing/descrip.mms -samples/font/descrip.mms -samples/image/descrip.mms -samples/mdi/descrip.mms -samples/menu/descrip.mms -samples/minimal/descrip.mms -src/common/descrip.mms -src/generic/descrip.mms -src/gtk/descrip.mms -src/html/descrip.mms -src/motif/descrip.mms -src/x11/descrip.mms -src/png/scripts/descrip.mms -src/unix/descrip.mms -src/zlib/descrip.mms -src/xml/descrip.mms -src/xrc/descrip.mms -src/regex/descrip.mms -utils/helpview/src/descrip.mms -utils/tex2rtf/src/descrip.mms - +locale/Makefile +libs/vms.opt +libs/vms_gtk.opt +./src/aui/descrip.mms +./src/gtk/descrip.mms +./src/png/scripts/descrip.mms +./src/x11/descrip.mms +./src/xml/descrip.mms +./src/xrc/descrip.mms +./src/gtk1/descrip.mms +./src/html/descrip.mms +./src/univ/descrip.mms +./src/unix/descrip.mms +./src/expat/vms/descrip.mms +./src/motif/descrip.mms +./src/common/descrip.mms +./src/generic/descrip.mms +./contrib/src/deprecated/descrip.mms +./contrib/samples/mmedia/descrip.mms +./contrib/samples/deprecated/resource/descrip.mms +./demos/bombs/descrip.mms +./samples/db/descrip.mms +./samples/aui/descrip.mms +./samples/dnd/descrip.mms +./samples/mdi/descrip.mms +./samples/xrc/descrip.mms +./samples/font/descrip.mms +./samples/menu/descrip.mms +./samples/dialogs/descrip.mms +./samples/caret/descrip.mms +./samples/erase/descrip.mms +./samples/image/descrip.mms +./samples/docview/descrip.mms +./samples/drawing/descrip.mms +./samples/checklst/descrip.mms +./samples/calendar/descrip.mms +./samples/minimal/descrip.mms +./samples/access/descrip.mms +./samples/config/descrip.mms +./samples/dialup/descrip.mms +./samples/controls/descrip.mms +./samples/shaped/descrip.mms +./descrip.mms diff --git a/distrib/scripts/manifests/vc.rsp b/distrib/scripts/manifests/vc.rsp index 102851f601..842b852ae5 100644 --- a/distrib/scripts/manifests/vc.rsp +++ b/distrib/scripts/manifests/vc.rsp @@ -1,314 +1,311 @@ -include/msvc/wx/setup.h - -build/msw/*.dsp -build/msw/*.dsw - -src/wxWindows.dsp -src/wxWindows.dsw - -src/jpeg/jpeg.dsp -src/jpeg/jpeg.dsw - -src/tiff/tiff.dsp -src/tiff/tiff.dsw - -src/zlib/zlib.dsp -src/zlib/zlib.dsw - -src/png/png.dsp -src/png/png.dsw - -src/regex/regex.dsp -src/regex/regex.dsw - -src/expat/expat.dsp - -samples/samples.dsw - +build/msw/wx_adv.dsp +build/msw/wx_aui.dsp +build/msw/wx_base.dsp +build/msw/wx_core.dsp +build/msw/wx_dbgrid.dsp +build/msw/wx.dsw +build/msw/wx_gl.dsp +build/msw/wx_html.dsp +build/msw/wx_media.dsp +build/msw/wx_net.dsp +build/msw/wx_odbc.dsp +build/msw/wx_qa.dsp +build/msw/wx_richtext.dsp +build/msw/wx_wxexpat.dsp +build/msw/wx_wxjpeg.dsp +build/msw/wx_wxpng.dsp +build/msw/wx_wxregex.dsp +build/msw/wx_wxtiff.dsp +build/msw/wx_wxzlib.dsp +build/msw/wx_xml.dsp +build/msw/wx_xrc.dsp +contrib/build/deprecated/deprecated.dsp +contrib/build/deprecated/deprecated.dsw +contrib/build/fl/fl.dsp +contrib/build/fl/fl.dsw +contrib/build/foldbar/foldbar.dsp +contrib/build/foldbar/foldbar.dsw +contrib/build/gizmos/gizmos.dsw +contrib/build/gizmos/gizmos_gizmos.dsp +contrib/build/gizmos/gizmos_gizmos_xrc.dsp +contrib/build/mmedia/mmedia.dsp +contrib/build/mmedia/mmedia.dsw +contrib/build/net/net.dsp +contrib/build/net/net.dsw +contrib/build/ogl/ogl.dsp +contrib/build/ogl/ogl.dsw +contrib/build/plot/plot.dsp +contrib/build/plot/plot.dsw +contrib/build/stc/stc.dsp +contrib/build/stc/stc.dsw +contrib/build/svg/svg.dsp +contrib/build/svg/svg.dsw +contrib/samples/deprecated/proplist/proplist.dsp +contrib/samples/deprecated/proplist/proplist.dsw +contrib/samples/deprecated/resource/resource.dsp +contrib/samples/deprecated/resource/resource.dsw +contrib/samples/deprecated/treelay/treelay.dsp +contrib/samples/deprecated/treelay/treelay.dsw +contrib/samples/fl/fl.dsw +contrib/samples/fl/fl_fl_demo1.dsp +contrib/samples/fl/fl_fl_demo2.dsp +contrib/samples/fl/fl_fl_sample1.dsp +contrib/samples/fl/fl_fl_sample2.dsp +contrib/samples/fl/fl_fl_sample3.dsp +contrib/samples/foldbar/extended/extended.dsp +contrib/samples/foldbar/extended/extended.dsw +contrib/samples/foldbar/foldpanelbar/foldtest.dsp +contrib/samples/foldbar/foldpanelbar/foldtest.dsw +contrib/samples/gizmos/dynsash/dynsash.dsp +contrib/samples/gizmos/dynsash/dynsash.dsw +contrib/samples/gizmos/dynsash_switch/dynsash_switch.dsp +contrib/samples/gizmos/dynsash_switch/dynsash_switch.dsw +contrib/samples/gizmos/editlbox/editlbox.dsp +contrib/samples/gizmos/editlbox/editlbox.dsw +contrib/samples/gizmos/led/led.dsp +contrib/samples/gizmos/led/led.dsw +contrib/samples/gizmos/multicell/multicell.dsp +contrib/samples/gizmos/multicell/multicell.dsw +contrib/samples/gizmos/splittree/splittree.dsp +contrib/samples/gizmos/splittree/splittree.dsw +contrib/samples/mmedia/mmboard.dsp +contrib/samples/mmedia/mmboard.dsw +contrib/samples/ogl/ogledit/ogledit.dsp +contrib/samples/ogl/ogledit/ogledit.dsw +contrib/samples/ogl/studio/studio.dsp +contrib/samples/ogl/studio/studio.dsw +contrib/samples/plot/plot.dsp +contrib/samples/plot/plot.dsw +contrib/samples/stc/stctest.dsp +contrib/samples/stc/stctest.dsw +contrib/samples/svg/svgtest.dsp +contrib/samples/svg/svgtest.dsw +contrib/utils/convertrc/convertrc.dsp +contrib/utils/convertrc/convertrc.dsw +demos/bombs/bombs.dsp +demos/bombs/bombs.dsw +demos/dbbrowse/dbbrowse.dsp +demos/dbbrowse/dbbrowse.dsw +demos/forty/forty.dsp +demos/forty/forty.dsw +demos/fractal/fractal.dsp +demos/fractal/fractal.dsw +demos/life/life.dsp +demos/life/life.dsw +demos/poem/poem.dsp +demos/poem/poem.dsw samples/access/access.dsp - +samples/access/access.dsw samples/animate/anitest.dsp - +samples/animate/anitest.dsw samples/artprov/artprov.dsp - +samples/artprov/artprov.dsw samples/aui/auidemo.dsp - +samples/aui/auidemo.dsw samples/calendar/calendar.dsp - +samples/calendar/calendar.dsw samples/caret/caret.dsp - +samples/caret/caret.dsw samples/checklst/checklst.dsp - +samples/checklst/checklst.dsw samples/collpane/collpane.dsp - +samples/collpane/collpane.dsw samples/combo/combo.dsp - +samples/combo/combo.dsw samples/config/config.dsp - +samples/config/config.dsw samples/console/console.dsp - +samples/console/console.dsw samples/controls/controls.dsp - +samples/controls/controls.dsw samples/dataview/dataview.dsp - +samples/dataview/dataview.dsw samples/db/db.dsp - -samples/debugrpt/debugrept.dsp - +samples/db/db.dsw +samples/debugrpt/debugrpt.dsp +samples/debugrpt/debugrpt.dsw samples/dialogs/dialogs.dsp - +samples/dialogs/dialogs.dsw samples/dialup/dialup.dsp - +samples/dialup/dialup.dsw samples/display/display.dsp - +samples/display/display.dsw samples/dnd/dnd.dsp - +samples/dnd/dnd.dsw samples/docview/docview.dsp - +samples/docview/docview.dsw samples/docvwmdi/docvwmdi.dsp - +samples/docvwmdi/docvwmdi.dsw samples/dragimag/dragimag.dsp - +samples/dragimag/dragimag.dsw samples/drawing/drawing.dsp - +samples/drawing/drawing.dsw samples/dynamic/dynamic.dsp - +samples/dynamic/dynamic.dsw samples/erase/erase.dsp - +samples/erase/erase.dsw samples/event/event.dsp - +samples/event/event.dsw samples/except/except.dsp - +samples/except/except.dsw samples/exec/exec.dsp - +samples/exec/exec.dsw samples/font/font.dsp - +samples/font/font.dsw samples/grid/grid.dsp - +samples/grid/grid.dsw samples/help/help.dsp - +samples/help/help.dsw samples/htlbox/htlbox.dsp - +samples/htlbox/htlbox.dsw samples/html/about/about.dsp - +samples/html/about/about.dsw samples/html/help/help.dsp - +samples/html/help/help.dsw samples/html/helpview/helpview.dsp - +samples/html/helpview/helpview.dsw samples/html/printing/printing.dsp - +samples/html/printing/printing.dsw samples/html/test/test.dsp - +samples/html/test/test.dsw samples/html/virtual/virtual.dsp - +samples/html/virtual/virtual.dsw samples/html/widget/widget.dsp - +samples/html/widget/widget.dsw samples/html/zip/zip.dsp - -samples/html/htmlctrl/htmlctrl.dsp - +samples/html/zip/zip.dsw samples/image/image.dsp - +samples/image/image.dsw samples/internat/internat.dsp - +samples/internat/internat.dsw +samples/ipc/ipc.dsw samples/ipc/ipc_ipcclient.dsp - samples/ipc/ipc_ipcserver.dsp - -samples/keyboard/keyboard.dsp - samples/joytest/joytest.dsp - +samples/joytest/joytest.dsw +samples/keyboard/keyboard.dsp +samples/keyboard/keyboard.dsw samples/layout/layout.dsp - +samples/layout/layout.dsw samples/listbox/listbox.dsp - +samples/listbox/listbox.dsw samples/listctrl/listctrl.dsp - +samples/listctrl/listctrl.dsw samples/mdi/mdi.dsp - +samples/mdi/mdi.dsw samples/mediaplayer/mediaplayer.dsp - +samples/mediaplayer/mediaplayer.dsw samples/memcheck/memcheck.dsp - +samples/memcheck/memcheck.dsw samples/menu/menu.dsp - +samples/menu/menu.dsw samples/mfc/mfc.dsp - -samples/minimal/minimal.dsp - +samples/mfc/mfc.dsw samples/minifram/minifram.dsp - +samples/minifram/minifram.dsw +samples/minimal/minimal.dsp +samples/minimal/minimal.dsw samples/mobile/styles/styles.dsp - +samples/mobile/styles/styles.dsw samples/mobile/wxedit/wxedit.dsp - +samples/mobile/wxedit/wxedit.dsw samples/multimon/multimon.dsp - +samples/multimon/multimon.dsw samples/nativdlg/nativdlg.dsp - +samples/nativdlg/nativdlg.dsw samples/notebook/notebook.dsp - +samples/notebook/notebook.dsw samples/oleauto/oleauto.dsp - +samples/oleauto/oleauto.dsw +samples/opengl/cube/cube.dsp +samples/opengl/cube/cube.dsw +samples/opengl/isosurf/isosurf.dsp +samples/opengl/isosurf/isosurf.dsw +samples/opengl/penguin/penguin.dsp +samples/opengl/penguin/penguin.dsw samples/ownerdrw/ownerdrw.dsp - +samples/ownerdrw/ownerdrw.dsw samples/png/png.dsp - +samples/png/png.dsw samples/popup/popup.dsp - +samples/popup/popup.dsw samples/power/power.dsp - +samples/power/power.dsw samples/printing/printing.dsp - +samples/printing/printing.dsw samples/propsize/propsize.dsp - +samples/propsize/propsize.dsw samples/regtest/regtest.dsp - -samples/render/*.dsp - -samples/richtext/*.dsp - +samples/regtest/regtest.dsw +samples/render/render.dsw +samples/render/render_renddll.dsp +samples/render/render_render.dsp +samples/richtext/richtext.dsp +samples/richtext/richtext.dsw samples/rotate/rotate.dsp - +samples/rotate/rotate.dsw samples/sashtest/sashtest.dsp - +samples/sashtest/sashtest.dsw samples/scroll/scroll.dsp - +samples/scroll/scroll.dsw samples/scrollsub/scrollsub.dsp - +samples/scrollsub/scrollsub.dsw samples/shaped/shaped.dsp - +samples/shaped/shaped.dsw samples/sockets/sockets_client.dsp +samples/sockets/sockets.dsw samples/sockets/sockets_server.dsp - samples/sound/sound.dsp - +samples/sound/sound.dsw samples/splash/splash.dsp - +samples/splash/splash.dsw samples/splitter/splitter.dsp - +samples/splitter/splitter.dsw samples/statbar/statbar.dsp - +samples/statbar/statbar.dsw samples/taskbar/taskbar.dsp - +samples/taskbar/taskbar.dsw samples/text/text.dsp - +samples/text/text.dsw samples/thread/thread.dsp - +samples/thread/thread.dsw samples/toolbar/toolbar.dsp - +samples/toolbar/toolbar.dsw samples/treectrl/treectrl.dsp - +samples/treectrl/treectrl.dsw samples/typetest/typetest.dsp - +samples/typetest/typetest.dsw samples/validate/validate.dsp - +samples/validate/validate.dsw samples/vscroll/vscroll.dsp - -samples/wizard/wizard.dsp - +samples/vscroll/vscroll.dsw samples/widgets/widgets.dsp - -samples/opengl/cube/cube.dsp - -samples/opengl/isosurf/isosurf.dsp - -samples/opengl/penguin/penguin.dsp - -demos/bombs/bombs.dsp - -demos/dbbrowse/dbbrowse.dsp - -demos/forty/forty.dsp - -demos/fractal/fractal.dsp - -demos/life/life.dsp - -demos/poem/poem.dsp - -utils/wxrc/wxrc.dsp - -utils/tex2rtf/src/tex2rtf_tex2rtf.dsp -utils/tex2rtf/src/tex2rtf_tex2rtf_gui.dsp - +samples/widgets/widgets.dsw +samples/wizard/wizard.dsp +samples/wizard/wizard.dsw +samples/xrc/xrcdemo.dsp +samples/xrc/xrcdemo.dsw +tests/test.dsw +tests/test_printfbench.dsp +tests/test_test.dsp +tests/test_test_gui.dsp +utils/emulator/src/emulator.dsp +utils/emulator/src/emulator.dsw utils/HelpGen/src/helpgen.dsp - +utils/HelpGen/src/helpgen.dsw utils/helpview/src/helpview.dsp - -utils/helpview/src/client.dsp - -contrib/build/ogl/ogl.dsp -contrib/build/ogl/ogl.dsw - -contrib/samples/ogl/ogledit/ogledit.dsp - -contrib/samples/ogl/studio/studio.dsp - -samples/xrc/xrcdemo.dsp - -contrib/build/mmedia/mmedia.dsp -contrib/build/mmedia/mmedia.dsw - -contrib/samples/mmedia/mmboard.dsp - -contrib/build/stc/stc.dsp -contrib/build/stc/stc.dsw - -contrib/samples/stc/stctest.dsp - -contrib/utils/convertrc/convertrc.dsp - -contrib/build/plot/plot.dsp -contrib/build/plot/plot.dsw - -contrib/samples/plot/plot.dsp - -contrib/build/gizmos/gizmos.dsp -contrib/build/gizmos/gizmos.dsw - -contrib/samples/gizmos/dynsash/dynsash.dsp - -contrib/samples/gizmos/dynsash_switch/dynsash_switch.dsp - -contrib/samples/gizmos/editlbox/editlbox.dsp - -contrib/samples/gizmos/multicell/multicell.dsp - -contrib/samples/gizmos/splittree/splittree.dsp - -contrib/samples/gizmos/led/led.dsp - -contrib/build/animate/animate.dsp -contrib/build/animate/animate.dsw - -contrib/samples/animate/anitest.dsp - -contrib/samples/fl/fl.dsp - -contrib/build/net/net.dsp -contrib/build/net/net.dsw - -contrib/build/svg/svg.dsp -contrib/build/svg/svg.dsw - -contrib/build/deprecated/deprecated.dsp -contrib/build/deprecated/deprecated.dsw - -contrib/samples/deprecated/proplist/proplist.dsp - -contrib/samples/deprecated/resource/resource.dsp - -contrib/samples/deprecated/treelay/treelay.dsp - -contrib/build/foldbar/foldbar.dsp -contrib/build/foldbar/foldbar.dsw - -contrib/samples/foldbar/extended/extended.dsp - -contrib/samples/foldbar/foldpanelbar/foldtest.dsp - +utils/helpview/src/helpview.dsw utils/hhp2cached/hhp2cached.dsp - -tests/*.dsp +utils/hhp2cached/hhp2cached.dsw +utils/tex2rtf/src/tex2rtf.dsw +utils/tex2rtf/src/tex2rtf_tex2rtf.dsp +utils/tex2rtf/src/tex2rtf_tex2rtf_gui.dsp +utils/wxrc/wxrc.dsp +utils/wxrc/wxrc.dsw +include/msvc/wx/setup.h +expat/expat.dsp +jpeg/jpeg.dsp +png/png.dsp +regex/regex.dsp +tiff/tiff.dsp +zlib/zlib.dsp diff --git a/distrib/scripts/manifests/wince.rsp b/distrib/scripts/manifests/wince.rsp index bd3aefbefe..95bcbfae99 100644 --- a/distrib/scripts/manifests/wince.rsp +++ b/distrib/scripts/manifests/wince.rsp @@ -1,108 +1,147 @@ +build/wince/wx_gl.vcp +build/wince/wx_mono.vcp build/wince/wx.vcw -build/wince/wx_*.vcp - -build/wince/missing - +build/wince/wx_wxexpat.vcp +build/wince/wx_wxjpeg.vcp +build/wince/wx_wxpng.vcp +build/wince/wx_wxzlib.vcp +contrib/build/deprecated/deprecated.vcp +contrib/build/deprecated/deprecated.vcw +contrib/build/fl/fl.vcp +contrib/build/fl/fl.vcw +contrib/build/foldbar/foldbar.vcp +contrib/build/foldbar/foldbar.vcw +contrib/build/gizmos/gizmos_gizmos.vcp +contrib/build/gizmos/gizmos_gizmos_xrc.vcp +contrib/build/gizmos/gizmos.vcw +contrib/build/mmedia/mmedia.vcp +contrib/build/mmedia/mmedia.vcw +contrib/build/net/net.vcp +contrib/build/net/net.vcw +contrib/build/ogl/ogl.vcp +contrib/build/ogl/ogl.vcw +contrib/build/plot/plot.vcp +contrib/build/plot/plot.vcw +contrib/build/stc/stc.vcp +contrib/build/stc/stc.vcw +contrib/build/svg/svg.vcp +contrib/build/svg/svg.vcw +contrib/samples/deprecated/proplist/proplist.vcp +contrib/samples/deprecated/proplist/proplist.vcw +contrib/samples/deprecated/resource/resource.vcp +contrib/samples/deprecated/resource/resource.vcw +contrib/samples/deprecated/treelay/treelay.vcp +contrib/samples/deprecated/treelay/treelay.vcw +contrib/samples/fl/fl_fl_demo1.vcp +contrib/samples/fl/fl_fl_demo2.vcp +contrib/samples/fl/fl_fl_sample1.vcp +contrib/samples/fl/fl_fl_sample2.vcp +contrib/samples/fl/fl_fl_sample3.vcp +contrib/samples/fl/fl.vcw +contrib/samples/foldbar/extended/extended.vcp +contrib/samples/foldbar/extended/extended.vcw +contrib/samples/foldbar/foldpanelbar/foldtest.vcp +contrib/samples/foldbar/foldpanelbar/foldtest.vcw +contrib/samples/gizmos/dynsash/dynsash.vcp +contrib/samples/gizmos/dynsash/dynsash.vcw +contrib/samples/gizmos/dynsash_switch/dynsash_switch.vcp +contrib/samples/gizmos/dynsash_switch/dynsash_switch.vcw +contrib/samples/gizmos/editlbox/editlbox.vcp +contrib/samples/gizmos/editlbox/editlbox.vcw +contrib/samples/gizmos/led/led.vcp +contrib/samples/gizmos/led/led.vcw +contrib/samples/gizmos/multicell/multicell.vcp +contrib/samples/gizmos/multicell/multicell.vcw +contrib/samples/gizmos/splittree/splittree.vcp +contrib/samples/gizmos/splittree/splittree.vcw +contrib/samples/mmedia/mmboard.vcp +contrib/samples/mmedia/mmboard.vcw +contrib/samples/ogl/ogledit/ogledit.vcp +contrib/samples/ogl/ogledit/ogledit.vcw +contrib/samples/ogl/studio/studio.vcp +contrib/samples/ogl/studio/studio.vcw +contrib/samples/plot/plot.vcp +contrib/samples/plot/plot.vcw +contrib/samples/stc/stctest.vcp +contrib/samples/stc/stctest.vcw +contrib/samples/svg/svgtest.vcp +contrib/samples/svg/svgtest.vcw +contrib/utils/convertrc/convertrc.vcp +contrib/utils/convertrc/convertrc.vcw +demos/bombs/bombs.vcp +demos/bombs/bombs.vcw +demos/dbbrowse/dbbrowse.vcp +demos/dbbrowse/dbbrowse.vcw +demos/forty/forty.vcp +demos/forty/forty.vcw +demos/fractal/fractal.vcp +demos/fractal/fractal.vcw +demos/life/life.vcp +demos/life/life.vcw +demos/poem/poem.vcp +demos/poem/poem.vcw samples/access/access.vcp samples/access/access.vcw - samples/animate/anitest.vcp samples/animate/anitest.vcw - samples/artprov/artprov.vcp samples/artprov/artprov.vcw - samples/aui/auidemo.vcp samples/aui/auidemo.vcw - -samples/calendar/arttest.vcp -samples/calendar/arttest.vcw - samples/calendar/calendar.vcp samples/calendar/calendar.vcw - samples/caret/caret.vcp samples/caret/caret.vcw - samples/checklst/checklst.vcp samples/checklst/checklst.vcw - samples/collpane/collpane.vcp samples/collpane/collpane.vcw - -samples/config/config.vcp samples/combo/combo.vcp samples/combo/combo.vcw - samples/config/config.vcp samples/config/config.vcw - -samples/console/console.vcp -samples/console/console.vcw - samples/controls/controls.vcp samples/controls/controls.vcw - samples/dataview/dataview.vcp samples/dataview/dataview.vcw - samples/db/db.vcp samples/db/db.vcw - samples/debugrpt/debugrpt.vcp samples/debugrpt/debugrpt.vcw - samples/dialogs/dialogs.vcp samples/dialogs/dialogs.vcw - samples/dialup/dialup.vcp samples/dialup/dialup.vcw - samples/display/display.vcp samples/display/display.vcw - samples/dnd/dnd.vcp samples/dnd/dnd.vcw - -samples/dragimag/dragimag.vcp -samples/dragimag/dragimag.vcw - samples/docview/docview.vcp samples/docview/docview.vcw - samples/docvwmdi/docvwmdi.vcp samples/docvwmdi/docvwmdi.vcw - +samples/dragimag/dragimag.vcp +samples/dragimag/dragimag.vcw samples/drawing/drawing.vcp samples/drawing/drawing.vcw - samples/dynamic/dynamic.vcp samples/dynamic/dynamic.vcw - samples/erase/erase.vcp samples/erase/erase.vcw - samples/event/event.vcp samples/event/event.vcw - -samples/exec/exec.vcp -samples/exec/exec.vcw - samples/except/except.vcp samples/except/except.vcw - +samples/exec/exec.vcp +samples/exec/exec.vcw samples/font/font.vcp samples/font/font.vcw - samples/grid/grid.vcp samples/grid/grid.vcw - samples/help/help.vcp samples/help/help.vcw - samples/htlbox/htlbox.vcp samples/htlbox/htlbox.vcw - samples/html/about/about.vcp samples/html/about/about.vcw samples/html/help/help.vcp @@ -111,8 +150,6 @@ samples/html/helpview/helpview.vcp samples/html/helpview/helpview.vcw samples/html/printing/printing.vcp samples/html/printing/printing.vcw -samples/html/htmlctrl/helpctrl.vcp -samples/html/htmlctrl/helpctrl.vcw samples/html/test/test.vcp samples/html/test/test.vcw samples/html/virtual/virtual.vcp @@ -121,302 +158,123 @@ samples/html/widget/widget.vcp samples/html/widget/widget.vcw samples/html/zip/zip.vcp samples/html/zip/zip.vcw - samples/image/image.vcp samples/image/image.vcw - samples/internat/internat.vcp samples/internat/internat.vcw - -samples/keyboard/keyboard.vcp -samples/keyboard/keyboard.vcw - samples/ipc/ipc_ipcclient.vcp -samples/ipc/ipc_ipcclient.vcw samples/ipc/ipc_ipcserver.vcp -samples/ipc/ipc_ipcserver.vcw - +samples/ipc/ipc.vcw samples/joytest/joytest.vcp samples/joytest/joytest.vcw - +samples/keyboard/keyboard.vcp +samples/keyboard/keyboard.vcw samples/layout/layout.vcp samples/layout/layout.vcw - samples/listbox/listbox.vcp samples/listbox/listbox.vcw - samples/listctrl/listctrl.vcp samples/listctrl/listctrl.vcw - samples/mdi/mdi.vcp samples/mdi/mdi.vcw - samples/mediaplayer/mediaplayer.vcp samples/mediaplayer/mediaplayer.vcw - samples/memcheck/memcheck.vcp samples/memcheck/memcheck.vcw - samples/menu/menu.vcp samples/menu/menu.vcw - samples/mfc/mfc.vcp samples/mfc/mfc.vcw - -samples/minimal/minimal.vcp -samples/minimal/minimal.vcw - samples/minifram/minifram.vcp samples/minifram/minifram.vcw - +samples/minimal/minimal.vcp +samples/minimal/minimal.vcw samples/mobile/styles/styles.vcp samples/mobile/styles/styles.vcw samples/mobile/wxedit/wxedit.vcp samples/mobile/wxedit/wxedit.vcw - samples/multimon/multimon.vcp samples/multimon/multimon.vcw - samples/nativdlg/nativdlg.vcp samples/nativdlg/nativdlg.vcw - samples/notebook/notebook.vcp samples/notebook/notebook.vcw - samples/oleauto/oleauto.vcp samples/oleauto/oleauto.vcw - +samples/opengl/cube/cube.vcp +samples/opengl/cube/cube.vcw +samples/opengl/isosurf/isosurf.vcp +samples/opengl/isosurf/isosurf.vcw +samples/opengl/penguin/penguin.vcp +samples/opengl/penguin/penguin.vcw samples/ownerdrw/ownerdrw.vcp samples/ownerdrw/ownerdrw.vcw - samples/png/png.vcp samples/png/png.vcw - samples/popup/popup.vcp samples/popup/popup.vcw - samples/power/power.vcp samples/power/power.vcw - samples/printing/printing.vcp samples/printing/printing.vcw - samples/propsize/propsize.vcp samples/propsize/propsize.vcw - samples/regtest/regtest.vcp samples/regtest/regtest.vcw - samples/render/render_renddll.vcp -samples/render/render_renddll.vcw samples/render/render_render.vcp -samples/render/render_render.vcw - +samples/render/render.vcw samples/richtext/richtext.vcp samples/richtext/richtext.vcw - samples/rotate/rotate.vcp samples/rotate/rotate.vcw - samples/sashtest/sashtest.vcp samples/sashtest/sashtest.vcw - samples/scroll/scroll.vcp samples/scroll/scroll.vcw - samples/scrollsub/scrollsub.vcp samples/scrollsub/scrollsub.vcw - samples/shaped/shaped.vcp samples/shaped/shaped.vcw - -samples/sockets/client.vcp -samples/sockets/server.vcp -samples/sockets/client.vcw -samples/sockets/server.vcw - +samples/sockets/sockets_client.vcp +samples/sockets/sockets_server.vcp +samples/sockets/sockets.vcw +samples/sound/sound.vcp +samples/sound/sound.vcw samples/splash/splash.vcp samples/splash/splash.vcw - samples/splitter/splitter.vcp samples/splitter/splitter.vcw - samples/statbar/statbar.vcp samples/statbar/statbar.vcw - samples/taskbar/taskbar.vcp samples/taskbar/taskbar.vcw - samples/text/text.vcp samples/text/text.vcw - samples/thread/thread.vcp samples/thread/thread.vcw - samples/toolbar/toolbar.vcp samples/toolbar/toolbar.vcw - samples/treectrl/treectrl.vcp samples/treectrl/treectrl.vcw - samples/typetest/typetest.vcp samples/typetest/typetest.vcw - samples/validate/validate.vcp samples/validate/validate.vcw - samples/vscroll/vscroll.vcp samples/vscroll/vscroll.vcw - -samples/wizard/wizard.vcp -samples/wizard/wizard.vcw - samples/widgets/widgets.vcp samples/widgets/widgets.vcw - -samples/opengl/cube/cube.vcp -samples/opengl/cube/cube.vcw -samples/opengl/isosurf/isosurf.vcp -samples/opengl/isosurf/isosurf.vcw -samples/opengl/penguin/penguin.vcp -samples/opengl/penguin/penguin.vcw - -demos/bombs/bombs.vcp -demos/bombs/bombs.vcw - -demos/dbbrowse/dbbrowse.vcp -demos/dbbrowse/dbbrowse.vcw - -demos/forty/forty.vcp -demos/forty/forty.vcw - -demos/fractal/fractal.vcp -demos/fractal/fractal.vcw - -demos/life/life.vcp -demos/life/life.vcw -demos/life/setup/wince/build.bat -demos/life/setup/wince/register.bat -demos/life/setup/wince/life.ico -demos/life/setup/wince/life.inf -demos/life/setup/wince/install.ini -demos/life/setup/wince/readme.txt -demos/life/setup/wince/Common/breeder.lif -demos/life/setup/wince/Common/life.htp - -demos/poem/poem.vcp -demos/poem/poem.vcw - -utils/tex2rtf/src/tex2rtf.vcp -utils/tex2rtf/src/tex2rtf.vcw - -utils/hhp2cached/hhp2cached.vcp -utils/hhp2cached/hhp2cached.vcw - -utils/helpgen/src/helpgen.vcp -utils/helpgen/src/helpgen.vcw - -utils/helpview/src/helpview.vcp -utils/helpview/src/helpview.vcw -utils/helpview/src/client.vcp -utils/helpview/src/client.vcw - -contrib/build/ogl/ogl.vcp -contrib/build/ogl/ogl.vcw - -contrib/samples/ogl/ogledit/ogledit.vcp -contrib/samples/ogl/ogledit/ogledit.vcw -contrib/samples/ogl/studio/studio.vcp -contrib/samples/ogl/studio/studio.vcw - -src/xrc/xrc.vcp -src/xrc/xrc.vcw - +samples/wizard/wizard.vcp +samples/wizard/wizard.vcw samples/xrc/xrcdemo.vcp samples/xrc/xrcdemo.vcw - -contrib/build/mmedia/mmedia.vcp -contrib/build/mmedia/mmedia.vcw - -contrib/samples/mmedia/mmboard.vcp -contrib/samples/mmedia/mmboard.vcw - -contrib/build/stc/stc.vcp -contrib/build/stc/stc.vcw - -contrib/samples/stc/stctest.vcp -contrib/samples/stc/stctest.vcw - -contrib/utils/wxrc/wxrc.vcp -contrib/utils/wxrc/wxrc.vcw - -contrib/utils/convertrc/convertrc.vcp -contrib/utils/convertrc/convertrc.vcw - -contrib/build/plot/plot.vcp -contrib/build/plot/plot.vcw -contrib/samples/plot/plot.vcp -contrib/samples/plot/plot.vcw - -contrib/build/gizmos/gizmos.vcp -contrib/build/gizmos/gizmos.vcw -contrib/samples/gizmos/dynsash/dynsash.vcp -contrib/samples/gizmos/dynsash/dynsash.vcw -contrib/samples/gizmos/dynsash_switch/dynsash_switch.vcp -contrib/samples/gizmos/dynsash_switch/dynsash_switch.vcw -contrib/samples/gizmos/editlbox/editlbox.vcp -contrib/samples/gizmos/editlbox/editlbox.vcw -contrib/samples/gizmos/multicell/multicell.vcp -contrib/samples/gizmos/multicell/multicell.vcw -contrib/samples/gizmos/splittree/splittree.vcp -contrib/samples/gizmos/splittree/splittree.vcw -contrib/samples/gizmos/led/led.vcp -contrib/samples/gizmos/led/led.vcw - -contrib/build/animate/animate.vcp -contrib/build/animate/animate.vcw -contrib/samples/animate/anitest.vcp -contrib/samples/animate/anitest.vcw - -contrib/build/fl/fl.vcp -contrib/build/fl/fl.vcw -contrib/samples/fl/fl_fl_demo1.vcp -contrib/samples/fl/fl_fl_demo1.vcw -contrib/samples/fl/fl_fl_demo2.vcp -contrib/samples/fl/fl_fl_demo2.vcw -contrib/samples/fl/fl_fl_sample1.vcp -contrib/samples/fl/fl_fl_sample1.vcw -contrib/samples/fl/fl_fl_sample2.vcp -contrib/samples/fl/fl_fl_sample2.vcw -contrib/samples/fl/fl_fl_sample3.vcp -contrib/samples/fl/fl_fl_sample3.vcw - -contrib/build/net/net.vcp -contrib/build/net/net.vcw - -contrib/build/deprecated/deprecated.vcp - -contrib/samples/deprecated/proplist/proplist.vcp -contrib/samples/deprecated/proplist/proplist.vcw - -contrib/samples/deprecated/resource/resource.vcp -contrib/samples/deprecated/resource/resource.vcw - -contrib/samples/deprecated/treelay/treelay.vcp -contrib/samples/deprecated/treelay/treelay.vcw - -contrib/build/foldbar/foldbar.vcp -contrib/build/foldbar/foldbar.vcw -contrib/samples/foldbar/extended/extended.vcp -contrib/samples/foldbar/extended/extended.vcw -contrib/samples/foldbar/foldpanelbar/foldtest.vcp -contrib/samples/foldbar/foldpanelbar/foldtest.vcw - -contrib/build/svg/svg.vcp -contrib/build/svg/svg.vcw -contrib/samples/svg/svgtest.vcp -contrib/samples/svg/svgtest.vcw - -tests/*.vcp -tests/*.vcw - +utils/emulator/src/emulator.vcp +utils/emulator/src/emulator.vcw +utils/helpview/src/helpview.vcp +utils/helpview/src/helpview.vcw +utils/hhp2cached/hhp2cached.vcp +utils/hhp2cached/hhp2cached.vcw +utils/tex2rtf/src/tex2rtf.vcp +utils/tex2rtf/src/tex2rtf.vcw +build/wince/missing diff --git a/distrib/scripts/msw/makesetup.sh b/distrib/scripts/msw/makesetup.sh index 5a9d4f5e7b..82797a0166 100755 --- a/distrib/scripts/msw/makesetup.sh +++ b/distrib/scripts/msw/makesetup.sh @@ -43,7 +43,7 @@ getfilelist(){ filelist="base.rsp" contribfiles="stc.rsp contrib.rsp ogl.rsp" utilsfiles="tex2rtf.rsp utils.rsp utilmake.rsp" - commonfiles="generic.rsp jpeg.rsp tiff.rsp xml.rsp deprecated.rsp makefile.rsp $utilsfiles $contribfiles" + commonfiles="generic.rsp generic_samples.rsp jpeg.rsp tiff.rsp xml.rsp deprecated.rsp makefile.rsp $utilsfiles $contribfiles" if [ ! $port = "base" ]; then filelist="$filelist $commonfiles" diff --git a/distrib/scripts/update-manifests.sh b/distrib/scripts/update-manifests.sh new file mode 100755 index 0000000000..6638b42288 --- /dev/null +++ b/distrib/scripts/update-manifests.sh @@ -0,0 +1,102 @@ +#!/bin/sh +############################################################################## +# Name: distrib/scripts/update-manifests.sh +# Purpose: Run from this directory to update some of the manifests/*.rsp +# files that can be generated automatically (vc, dmc, makefile, +# wince). +# +# Note that it's best to run this after running bakefile_gen, +# otherwise this script can be quite slow. +# Created: 2006-11-13 +# RCS-ID: $Id$ +# Copyright: (c) 2006 Vaclav Slavik +# Licence: wxWindows licence +############################################################################## + +MANIFESTS_DIR=$(pwd)/manifests +WX_ROOT=$(cd ../.. ; pwd) + +cd $WX_ROOT + +# generates manifest from bakefile output files: +generate_manifest() +{ + manifest_file="${MANIFESTS_DIR}/$1" + formats="$2" + shift + shift + + # generate files from given format: + ( + cd ${WX_ROOT}/build/bakefiles + bakefile_gen -d ../../distrib/scripts/Bakefiles.release.bkgen \ + --format $formats --list-files | \ + sed -e "s@^${WX_ROOT}/@@" | sort | uniq \ + >$manifest_file + ) + + # and add manually added files to the list: + for f in $* ; do + echo $f >>$manifest_file + done +} + +# generates manifest from all files present in CVS under given directories: +do_list_all_cvs_files() +{ + local manifest manifest_file files subdirs d f ff s ss + + manifest="$1" + manifest_file="${MANIFESTS_DIR}/${manifest}" + shift + + for d in $* ; do + # list all files: + files=$(cat $d/CVS/Entries | sed -ne 's@^/\([^/]*\)/.*@\1@p') + for f in $files ; do + ff="$d/$f" + if [ -f $ff ] ; then + echo "$ff" >>$manifest_file + fi + done + + # recurse into subdirs: + subdirs=$(cat $d/CVS/Entries | sed -ne 's@^D/\([^/]*\)/.*@\1@p') + for s in $subdirs ; do + ss="$d/$s" + if [ -d $ss ] ; then + do_list_all_cvs_files "$manifest" "$ss" + fi + done + done +} + +list_all_cvs_files() +{ + rm -f "${MANIFESTS_DIR}/$1" + do_list_all_cvs_files $* +} + + +list_all_cvs_files generic_samples.rsp \ + samples + + +generate_manifest dmc.rsp \ + dmars,dmars_smake + +generate_manifest vc.rsp \ + msvc6prj \ + "include/msvc/wx/setup.h" \ + `(cd $WX_ROOT/src ; ls */*.ds?)` + +generate_manifest makefile.rsp \ + autoconf \ + "locale/Makefile" \ + "libs/vms.opt" \ + "libs/vms_gtk.opt" \ + `find . -name descrip.mms` + +generate_manifest wince.rsp \ + msevc4prj \ + "build/wince/missing" diff --git a/docs/tech/tn0001.txt b/docs/tech/tn0001.txt index b17a6872e0..68d9a98567 100644 --- a/docs/tech/tn0001.txt +++ b/docs/tech/tn0001.txt @@ -48,8 +48,9 @@ samples/ with demos/ where needed). 6. Add any non-standard sample's files to build/bakefiles/make_dist.mk (the makefiles copies all bmp, cpp, h, ico, png, rc, xpm and makefiles by - default) and update distrib/scripts/manifests/{generic|makefile|vc|dmc - |wince}.rsp. + default, you only need to update it if the sample uses some other files) + and run the ./update-manifests.sh script in distrib/scripts (don't forget + to check the changes to manifests/*.rsp files in). === EOF === -- 2.45.2