[lazarus] New Makefiles

Marc Weustink marc at lazarus.dommelstein.net
Sun Sep 10 17:26:00 EDT 2000


At 23:16 10-09-2000 +0200, Peter Vreman wrote:

>It's because the compiler depends also on the implementation of the units,
>because the changed amount of used registers can be different.

?? I don't understand.
IMO if you compile a unit once and don't change anything a second compile 
shouldn't recompile any unit.
Try to compile the attached example

Marc

----------------------------------------------
unit unitdep1;

interface

uses
   unitdep2;

procedure Test1;

implementation

procedure Test1;
begin
end;

end.
----------------------------------------------
unit unitdep2;

interface

procedure Test2;

implementation

uses
   unitdep1;

procedure Test2;
begin
   Test1;
end;

end.
----------------------------------------------






More information about the Lazarus mailing list