> > What is the syntax for piping into the "compiler" without using 'shell'? > Simply "$(SED) -e <recipe> $< | $(CC) $(CFLAGS) -o $@"? Well, I will try > that anyway :)
Use "-" to tell gcc to read from stdin
Use -xc to tell that the source is a c file
so something like this:
"$(SED) -e <recipe> $< | $(CC) $(CFLAGS) - -xc -o $@"
Sam
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make
