]> git.saurik.com Git - wxWidgets.git/commitdiff
Cured BC++ makefile bug; wxGrid fix; updated Motif install.txt
authorJulian Smart <julian@anthemion.co.uk>
Tue, 17 Nov 1998 23:03:15 +0000 (23:03 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 17 Nov 1998 23:03:15 +0000 (23:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1011 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

42 files changed:
docs/motif/install.txt
include/wx/generic/laywin.h
include/wx/generic/sashwin.h
include/wx/version.h
samples/checklst/makefile.b32
samples/config/makefile.b32
samples/controls/makefile.b32
samples/dialogs/makefile.b32
samples/dnd/makefile.b32
samples/docview/makefile.b32
samples/docvwmdi/makefile.b32
samples/dynamic/makefile.b32
samples/grid/makefile.b32
samples/internat/makefile.b32
samples/joytest/makefile.b32
samples/layout/makefile.b32
samples/listctrl/makefile.b32
samples/mdi/makefile.b32
samples/memcheck/makefile.b32
samples/mfc/makefile.b32
samples/minimal/makefile.b32
samples/nativdlg/makefile.b32
samples/notebook/makefile.b32
samples/ownerdrw/makefile.b32
samples/printing/makefile.b32
samples/resource/makefile.b32
samples/sashtest/makefile.b32
samples/splitter/makefile.b32
samples/tab/makefile.b32
samples/taskbar/makefile.b32
samples/thread/makefile.b32
samples/toolbar/makefile.b32
samples/treectrl/makefile.b32
samples/typetest/makefile.b32
samples/validate/makefile.b32
samples/wxsocket/makefile.b32
src/generic/gridg.cpp
src/generic/laywin.cpp
utils/dialoged/src/makefile.b32
utils/ogl/samples/ogledit/makefile.b32
utils/wxprop/src/makefile.b32
utils/wxtree/src/makefile.b32

index 1e82044fcf9ae1b7a292f0aba76dad67ff202233..9d6bd53a91218ac950c413dc9d22c376de46e9ba 100644 (file)
@@ -51,6 +51,15 @@ Notes:
   I'd prefer you to fix the problem and send the fix to me :-) or at
   least let me know about it.
 
+- If you run into problems with a missing X11/Xpm.h header, you
+  need to install the XPM package. It can be obtained from:
+
+  ftp://ftp.x.org/contrib/libraries/xpm-3.4k.tar.gz
+
+  Alternatively, edit include/motif/setup.h, set wxUSE_XPM
+  to 0, and recompile. You will not be able to load any XPMs,
+  though (currently the only supported colour bitmap format).
+
 - Please send bug reports with a description of your environment,
   compiler and the error message(s) to the wxwin-users mailing list at:
 
index cc2f79ce8bded4650b355fd390e8ae3f1a91d0f9..8383855e1b27daf729d704d3a1346e990d50e866 100644 (file)
@@ -171,7 +171,7 @@ public:
     wxLayoutAlgorithm() {}
 
     // The MDI client window is sized to whatever's left over.
-    bool LayoutMDIFrame(wxMDIParentFrame* frame);
+    bool LayoutMDIFrame(wxMDIParentFrame* frame, wxRect* rect = (wxRect*) NULL);
 
     // mainWindow is sized to whatever's left over.
     bool LayoutFrame(wxFrame* frame, wxWindow* mainWindow);
index c1023929a28da2563c19a3f882a0cc982c11853b..1b1d8e0e7e6cac314fda31cbd728fcbbb104cfba 100644 (file)
@@ -74,23 +74,23 @@ public:
 
     // Normal constructor
     wxSashWindow(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition,
-        const wxSize& size = wxDefaultSize, long style = wxSW_3D|wxCLIP_CHILDREN, const wxString& name = "splitter");
+        const wxSize& size = wxDefaultSize, long style = wxSW_3D|wxCLIP_CHILDREN, const wxString& name = "sashWindow");
     ~wxSashWindow();
 
     // Set whether there's a sash in this position
     void SetSashVisible(wxSashEdgePosition edge, bool sash);
 
     // Get whether there's a sash in this position
-    inline bool GetSashVisible(wxSashEdgePosition edge) { return m_sashes[edge].m_show; }
+    inline bool GetSashVisible(wxSashEdgePosition edge) const { return m_sashes[edge].m_show; }
 
     // Set whether there's a border in this position
     inline void SetSashBorder(wxSashEdgePosition edge, bool border) { m_sashes[edge].m_border = border; }
 
     // Get whether there's a border in this position
-    inline bool HasBorder(wxSashEdgePosition edge) { return m_sashes[edge].m_border; }
+    inline bool HasBorder(wxSashEdgePosition edge) const { return m_sashes[edge].m_border; }
 
     // Get border size
-    inline int GetEdgeMargin(wxSashEdgePosition edge) { return m_sashes[edge].m_margin; }
+    inline int GetEdgeMargin(wxSashEdgePosition edge) const { return m_sashes[edge].m_margin; }
 
     // Sets the default sash border size
     inline void SetDefaultBorderSize(int width) { m_borderSize = width; }
index 68f7db190ea2df33942fce7412001ea2281dbbe3..d5dc85bd3794010a960994e41b6cd6d22aab9119 100644 (file)
@@ -18,7 +18,7 @@
 #define wxRELEASE_NUMBER   0
 #define wxVERSION_STRING "wxWindows 2.0"
 #define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
-#define wxBETA_NUMBER      12
+#define wxBETA_NUMBER      13
 #define wxVERSION_FLOAT float(wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0))
 
 #endif
index 59adb52171187cc9a6c2108dbce03c6d886a7947..51646091bd5bd1080bd672ef919c93a5d6a488f0 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 156228fc4a9061d478a138aa1e1e65b32d0cbc75..9efb63a4c6a413cae2ebb7cf94753e654d671d16 100644 (file)
@@ -40,8 +40,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 783ce3b083168aa0278a845c1d52a86d3d16c978..c216b916ce39c8875c66f113a402b9d8579879d7 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index e314db042598c63442e0a6e3b06446e6f735c439..9adc7a3a59fcea79c3e73af6df793b35653ea49c 100644 (file)
@@ -39,8 +39,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 7644caa99a8f39331b1d1be2f0a3dd350c905172..3c621c9453db806d3df4e079400e13c7446915d8 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index f81b4d33653565d0e9fed0188de8d37e5b3554f0..af6ada9c794fa9ed7a4402b3e6cd631bbf28187e 100644 (file)
@@ -40,8 +40,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index f81b4d33653565d0e9fed0188de8d37e5b3554f0..af6ada9c794fa9ed7a4402b3e6cd631bbf28187e 100644 (file)
@@ -40,8 +40,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 4ade0dedcc8bbd17108702f7cbbd7a3375ff2fa0..6d46438ffc08f5635bc5d9704ffa65180e79e5df 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index d1707b1542c7a1dbb1d49da5ca8b9fb4b332aca5..2b65f4cc5684269d996f1e2621c71d0ccdc3a2fb 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 3396034cc7e9f3185665fc5e53afb0f15bb5e0f4..8f3f025fe1985144b9c9fed0dd75eca02a50764a 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index d889d44cee193ab83391e57ed74970ed6243e063..7720955b44085163a8aa6d0bb668c492ce34db99 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 765fe58400d3f6f4754951f72bff372814057f15..b392b020db915bf3ea25e1fb75b1a984f59b01b7 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 2218343eb0e156f715c910a9e804b3f4578da072..529b8e08449abc7d937de8154490fd88d209d2b9 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 85fad37374c4e333b6cabcd3d0200b4f49d66c5e..a1f94adf84dbcce74ff674003ff36fc9af2372ee 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 9c079154ca7dc819ff505a7199e6f7cbdc1b26e3..190001d338c73588382d0ebae8a833bd30fcb3ae 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 9f0993827dc583f5dc8db31e0f7aa01bebad5ac3..31974a561042d72529e674f89f8edbd7bfc80b8d 100644 (file)
@@ -52,8 +52,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 2e98af0de0ecf19adcda62b0bd9b5af2e2075415..3d7a859ea5c0f2b7bc3200727a614a312e941acf 100644 (file)
@@ -40,8 +40,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 0d75d381354a842b876edeed396d134f379bc676..2bc53604dd95dc62d0488886c999459767086b83 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 0c3c463b8e7b05d55ae091564fcdc0063793d7d9..54ae659bc5d37cb3943008e251ab9f587abc8a0b 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 771353702f555bc39cad6f7db47c355038f5c43e..ad4d7fffa877dd97f6c1d646d8599cc75bcae918 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index df6457fae4d55dea7f5137d19297b0c3c58263df..a27c4e2da8d45d0d9187b7702c892bcf1f5b761f 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 3807df095d16f6098b11779eeeab8b0c4e94d924..6780eb5ec3ea4a1709b74bbf19a4a25bf94942ef 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 41d21cdccbf2e8ad17f43269f03e9afc14d42fcb..53b5657332e7bfb74380ef562fdccd8a544d4bb9 100644 (file)
@@ -40,8 +40,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 9fd8e32307b49cec926ad9731a0812bd166224f5..886b39eddcd87750644c4f4f408d463c829ea39b 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index ea1478ac7256ed26ab6e756cc3d139a1a0a22c98..305f4cbfc2e15304b6aee62256cdd66fb1e8506b 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 497d91192bc0924ec22b8807d713728a15bd5ac9..bdaebda7bd40537506e26910eb37c527451e8f26 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 85a669d7627fb1f047f3556445e4f8720e5aaddb..92abaf142863a3b6635ca80a028a506013342ec0 100644 (file)
@@ -41,8 +41,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 658649b4533a98fdebf2f1e7b2fe7f39b4ba77ff..9f32c974ba6f07c3022dcf122ec8d34ff333dbbc 100644 (file)
@@ -40,8 +40,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 44aa809a54f4d02b20de24b375340621aa05cba1..0dddc9cdf832e0b7c31fda0457a2bdf870324205 100644 (file)
@@ -39,8 +39,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index ac386695cc1f36accee8d549188ade88978265d2..47c0494fdcd3ed3f5c02c893306c298cad230280 100644 (file)
@@ -40,8 +40,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 3f50a7d4a9052265d2481a527cd102fa850c702c..ebadbaf433aa072c144271456939d115e96038df 100644 (file)
@@ -42,8 +42,9 @@ c0w32.obj $(OBJECTS)
 $(TARGET)
 nul
 $(LIBS)
+$(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) -c {$< }
index 41cfc45071bbabd98fcdba06e814eb7579a9b70b..94a0ed2b5b7a1a05d1eb19c906f5afacccc3d569 100644 (file)
@@ -50,8 +50,9 @@ $(CLIENT_TARGET).exe:   $(CLIENT_OBJECTS) $(CLIENT_TARGET).res
   $(CLIENT_TARGET)
   nul
   $(LIBS)
+  $(CLIENT_TARGET).def
+  $(CLIENT_TARGET).res
 !
-          brc32 -K $(CLIENT_TARGET).res
 
 client.obj:     client.cpp
 
@@ -64,8 +65,9 @@ $(SERVER_TARGET).exe:   $(SERVER_OBJECTS) $(SERVER_TARGET).res
   $(SERVER_TARGET)
   nul
   $(LIBS)
+  $(SERVER_TARGET).def
+  $(SERVER_TARGET).res
 !
-        brc32 -K $(SERVER_TARGET).res
 
 server.obj:     server.cpp
 
index 24554d313377b720eb820d0d6dfd5709f2027405..1db2cede13c45cf149f97a51634140ce9703ef11 100644 (file)
@@ -2321,7 +2321,12 @@ void wxGenericGrid::SetGridCursor(int row, int col)
   
   m_wCursorRow = row;
   m_wCursorColumn = col;
-  SetCurrentRect(row, col);
+
+  int cw, ch;
+  GetClientSize(&cw, &ch);
+
+  SetCurrentRect(row, col, cw, ch);
+
   if (m_currentRectVisible)
     HighlightCell(& dc);
 
index 2d27635bd9bf90e2e60dd01453374f7d439ccb18..88677b37808a32591cfd34261be017ecb4f43cc4 100644 (file)
@@ -48,16 +48,13 @@ wxSashLayoutWindow::wxSashLayoutWindow(wxWindow *parent, wxWindowID id, const wx
     m_alignment = wxLAYOUT_TOP;
 }
 
-// These are the functions that wxWin will call to ascertain the window
+// This is the function that wxLayoutAlgorithm calls to ascertain the window
 // dimensions.
 void wxSashLayoutWindow::OnQueryLayoutInfo(wxQueryLayoutInfoEvent& event)
 {
   //    int flags = event.GetFlags();
     int requestedLength = event.GetRequestedLength();
 
-    // This code won't be in the final thing, it's just so we don't have to give it
-    // real windows: mock up some dimensions.
-
     event.SetOrientation(m_orientation);
     event.SetAlignment(m_alignment);
 
@@ -69,7 +66,6 @@ void wxSashLayoutWindow::OnQueryLayoutInfo(wxQueryLayoutInfoEvent& event)
 
 // Called by parent to allow window to take a bit out of the
 // client rectangle, and size itself if not in wxLAYOUT_QUERY mode.
-// Will eventually be an event.
 
 void wxSashLayoutWindow::OnCalculateLayout(wxCalculateLayoutEvent& event)
 {
@@ -168,12 +164,14 @@ void wxSashLayoutWindow::OnCalculateLayout(wxCalculateLayoutEvent& event)
 
 // Lays out windows for an MDI frame. The MDI client area gets what's left
 // over.
-bool wxLayoutAlgorithm::LayoutMDIFrame(wxMDIParentFrame* frame)
+bool wxLayoutAlgorithm::LayoutMDIFrame(wxMDIParentFrame* frame, wxRect* r)
 {
     int cw, ch;
     frame->GetClientSize(& cw, & ch);
 
     wxRect rect(0, 0, cw, ch);
+    if (r)
+        rect = * r;
 
     wxCalculateLayoutEvent event;
     event.SetRect(rect);
index 775201c4ae30ecf285a91290cd5c2fe26091423e..e7a2611ad819db99ef9000197f6fde41196815cb 100644 (file)
@@ -47,8 +47,8 @@ $(TARGET)
 nul
 $(LIBS)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 $(INCFILE):    $(MAKEFILENAME)
        copy &&!
index ffe204cf4604be0de5f044ff80717dcccdd4855a..ea10bbf38bfdb1c69bd6084d3576c9b7eaaeee23 100644 (file)
@@ -63,8 +63,8 @@ ogledit
 nul
 $(LIBS)
 ogledit.def
+ogledit.res
 !
-        brc32 -K ogledit.res
 
 .$(SRCSUFF).obj:
        bcc32 $(CPPFLAGS) $(INC) -c {$< }
index 57b94770dd7fc59385d33c08e8b1b9152b14a612..6520bd5c60eade851fef85895f4830e42cab6209 100644 (file)
@@ -62,8 +62,8 @@ $(TARGET)
 nul
 $(LIBS) $(LIBTARGET)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 $(TARGET).res :      $(TARGET).rc $(WXDIR)\include\wx\msw\wx.rc
     brc32 -r /i$(BCCDIR)\include /i$(WXDIR)\include $(TARGET)
index 764b5fd12310ac7704324551730f89b6442346da..bb7a97aeb2c3de704960d764ea9fbf51fbadb9b1 100644 (file)
@@ -59,8 +59,8 @@ $(TARGET)
 nul
 $(LIBS) $(LIBTARGET)
 $(TARGET).def
+$(TARGET).res
 !
-        brc32 -K $(TARGET).res
 
 test.obj:      test.$(SRCSUFF) test.h