Borland C++ build doesn't depend on Cygwin configure
[fw/sdcc] / doc / bccinst.txt
1 Building SDCC with Borland C++ under Windows
2
3 1: From the sdcc directory, run the command "make -f Makefile.bcc". This
4 should regenerate all the .exe files in the bin directory except for
5 sdcdb.exe (which currently doesn't build under Borland C++).
6
7 2: If you modify any source files and need to rebuild, be aware that the
8 dependancies may not be correctly calculated. The safest option is to
9 delete all .obj files and run the build again. From a Cygwin BASH
10 prompt, this can easily be done with the commmand:
11
12 $ find . \( -name '*.obj' -o -name '*.lib' -o -name '*.rul' \) -print -exec rm {} \;
13
14 or on Windows NT/2000/XP from the command prompt with the commmand:
15
16 del /s *.obj *.lib *.rul
17
18 from the sdcc directory.