I\'ve looking to find a simple recommended \"minimal\" c++ makefile for linux which will use g++ to compile and link a single file and h file. Ideally the make file will not
SConstruct with debug option:
env = Environment() if ARGUMENTS.get('debug', 0): env.Append(CCFLAGS = ' -g') env.Program( source = "template.cpp" )