I have written a make file.
In the make file i have used a variable, say EXTRAFLAGS which looks like this.
EXTRAFLAGS += -D _MSC_VER
EXTRAFLAGS += -D BINARYINPUT
EXTRAFLAGS += -D ENABLEVERSION2D2
Further, I use Compiler flags
CFLAGS = -Werror -Wall -I $(INC) $(EXTRAFLAGS)
and
mingw32-gcc $(CFLAGS) -o nameofexe OBJ's
I have used this makefile with out any problems. But when i disable the preprocessor definitions, by introducing '#' ahead of one of the statments in EXTRAFLAGS, and i remake it, i am getting target up to date. I am unable to introduce Preprocessor Definitions in to the sensitive list.
A temporary work around i am using currently is, introduce a phony target clean and remove all the object files and re compiling every thing. But this is a waste of time. How can i better manage the current scenario?
EXTRAFLAGSthe files are not re-built? – Joachim Pileborg Nov 28 '11 at 6:49