If you try to run the "make" in a Windows language
different than English, it will not compile, since the
"Program Files" folder is translated.
In Portuguese (Brazil) it is "Arquivos de Programas",
and changing the line (in makefile.mak):
DCC = "C:\Program Files\Borland\Delphi$(v)\Bin\dcc32.exe"
to
DCC = "C:\Arquivos de
Programas\Borland\Delphi$(v)\Bin\dcc32.exe"
solves the problem. It couldn't be read from Windows?
Anyway, i would suggest change the install.doc to:
-------begin-of-install.txt-------
1.Certify that makefile.mak is pointing to your Delphi
folder
2.Run make
3.Copy Bin\fds70.bpl for Delphi7 or Bin\fds60.bpl for
Delphi6
to a folder specified in your PATH environment variable
(winnt\system32;Borland\Delphi7\bin).
4.Add Lib60 for Delphi6
or Lib70 for Delphi7
to Library Path (Tools|Environment Options|Library).
5.Add Src to Delphi Browsing Path (Tools|Environment
Options|Library).
6.Component|Install Packages...
Add Bin\dclfds60.bpl package for Delphi6
Add Bin\dclfds70.bpl package for Delphi7.
or
open and compile fds60.dpk(Delphi6) or fds70(Delphi7)
and then open, install dclfds60.dpk(Delphi6) or
dclfds70.dpk(Delphi7)
-------end-of-install.txt-------
Thanks