>>>>> "DM" == Doug MacEachern <[EMAIL PROTECTED]> writes:

DM> On Thu, 20 Jun 2002, H Jayakumar wrote:
>> What I meant was to make the makefile generated (makefile.modperl) also
>> build preprocessed files along with the object files. 
>> 
>> The rule is present 
>> .c.i:
>> $(MODPERL_CPPRUN) $(MODPERL_CCFLAGS) -c $< > $*.i
>> 
>> but the list *.i is missing.

DM> why do you need a list of *.i?

But there is no such list, is there?  The "$*.i" bit in the Makefile
is not a file globbing pattern, it is the variable $* followed by .i
so you can say "make foo.i" and it will do the above command to
transform foo.c into foo.i.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to