I have a C++ preprocessor written like this:
#ifdef cpp_variable //x+y; #endif
Can anyone tell me how to define this in Makefile.
The syntax is compiler specific, for gcc use the -D option like so: -Dcpp_variable.
-D
-Dcpp_variable