I have a number of .c and .h files with some parts of the code disabled by putting the code block in pre-processor directives e.g.
#ifdef FOOBAR
// some code that can be compiled if needed by defining FOOBAR in pre-processor.
#endif
No I need to define FOOBAR such that its defined for every file that is compiled by gcc using make.
Is there a way to do this with some option to make or Makefile ?
Thanks.