I am able to compile a single file using gcc with -std=c++0x option. But I can\'t do this through makefile. Here are the set of flags in my makefile (which after make compla
You can keep it in multiple lines, but you probably want to append, not to assign:
# e.g. CFLAGS += -O3 CFLAGS += -std=c++0x CFLAGS += -pg -D_DEBUG -g -c -Wall