Help me!

I recently downloaded wxWidgets from its website, and located it in C:\wx...But when I use the instructions included to compile it with Borland C++ Compiler, I get an error. First, I change the directory to C:\Borland\BCC55\bin...Then I type in make -f C:\wx\wxWidgets-2.6.3\build\msw\makefile.bcc...I press enter, and the compiler tells me that it is unable to open include file "config.bcc"! When I look inside the install.txt included, this is what is says!

Code:
Borland C++ 5.0/5.5 compilation
----------------------------------------------------------------

Compiling using the makefiles (updated 24 Sept 02):

1. Change directory to build\msw. Type 'make -f makefile.bcc' to
   make the wxWidgets core library. Ignore the compiler warnings.
   This produces a couple of libraries in the lib\bcc_lib directory.

2. Change directory to a sample or demo such as samples\minimal, and type
  'make -f makefile.bcc'. This produces a windows exe file - by default 
   in the bcc_mswd subdirectory.

Note (1): the wxWidgets makefiles assume dword structure alignment. Please
make sure that your own project or makefile settings use the
same alignment, or you could experience mysterious crashes. To
change the alignment, change CPPFLAGS in build\msw\config.bcc.

Note (2): if you get undefined _SQL... symbols at link time,
either install odbc32.lib from the BC++ CD-ROM into your BC++ lib
directory, or set wxUSE_ODBC to 0 in include\wx\msw\setup.h and
recompile wxWidgets. The same applies if compiling using the IDE.

Note (3): If you wish debug messages to be sent to the console in
debug mode, edit makefile.bcc and change /aa to /Tpe in link commands.

Compiling using the IDE files for Borland C++ 5.0: not supported - please
use version 2.4.1 (using the make utility in commandline mode works fine_

Compiling using CBuilder (v1-v6): not supported - please
use version 2.4.1 (using the make utility in commandline mode works fine_

** REMEMBER **

In all of your wxWidgets applications, your source code should include
the following preprocessor directive:

#ifdef __BORLANDC__
#pragma hdrstop
#endif

(check the samples -- e.g., \wx2\samples\minimal\minimal.cpp -- for
more details)
Notice the Note (1): the wxWidgets makefiles assume dword structure alignment. Please
make sure that your own project or makefile settings use the
same alignment, or you could experience mysterious crashes. To
change the alignment, change CPPFLAGS in build\msw\config.bcc.
! Change the CPPFLAGS to what though? Can anyone please help me!?!

Thanks!
~Matt