[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GNU Make enhansment patch - batching compiles
From: |
Eli Zaretskii |
Subject: |
Re: GNU Make enhansment patch - batching compiles |
Date: |
Fri, 04 May 2001 10:32:40 +0300 |
> From: "Jason Wessel" <address@hidden>
> Date: Thu, 3 May 2001 14:00:42 -0500
>
> > I thought about doing that from the rule which is normally used to
> > compile .java into .class. Something like this:
> >
> > %.class : %.java
> > echo '$< \\' >> files_list
> >
>
> Using an implicit rule is not really what I want to do
It's not important. What I meant was that you can put something like
the above into every rule which normally generates a compiled file.
In effect, you will be using the file files_list as the accumulator
for the value of the variable you wanted.