On Thu, 28 Jun 2001, Anuradha wrote:
This forces me into understanding it as i am supposed to comiple with --automake first for comipling all the units called and then again comiple with -c to finally get the .o file of a unit.
Is it so?
you can do it in one step:
gpc -c --automake foo.pas -------------- foo.pas
unit foo; interface implementation uses fud; begin end. -------------- fud.pas
unit fud; interface implementation begin end.
Russ