I have the following makefile for my project, and I\'d like to configure it for release and debug builds. In my code, I have lots of #ifdef DEBUG macros in plac
#ifdef DEBUG
you can have a variable
DEBUG = 0
then you can use a conditional statement
ifeq ($(DEBUG),1) else endif