Hello, > was wondering if there is already a macro that will create Makefile targets > for getting the preprocessor output. 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). The main
I'm not aware about anything like that. For my debugging needs, for example, it was always enough to cut and paste the command which failed, with -E, without -c -o something.o and direct the output to less. Stepan Kasal