Jason Roscoe <[EMAIL PROTECTED]> writes:

> For example, if I have a source file called init.c, I would
> like to be able to type something like 'make init.i' and get
> the output of the preprocessor only (e.g., gcc -E).

I sometimes do:
        rm init.o
        make CC='gcc -E' init.o
        mv init.o init.i
-- 
Ben Pfaff 
http://benpfaff.org



Reply via email to