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.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Add the compiler option -DFOOBAR to the make variable CFLAGS

link|improve this answer
It should be noted that this is not just a gcc-ism but part of the POSIX standard for C compiler invocation. – R.. Sep 25 '11 at 3:10
Thanks...although I had a few folders each with its own Makefile and I had to add this CFLAGS=... to each one of them, it worked. I wished there was such a thing while calling make. Like e.g. make -flags -DFOOBAR or something similar. But thanks for then answer. – mtahmed Sep 25 '11 at 7:49
1  
@mtahmed, there is. Just put the variable definitions on the command line of make, make CFLAGS='-O3 -march=native -DFOOBAR' – Jens Gustedt Sep 25 '11 at 12:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.