The project that I am trying to build has default flags
CFLAGS = -Wall -g -O2
CXXFLAGS = -g -O2
I need to append a flag -w
to both these variables (to remove: 'consider all warnings as errors')
I have a method to work it out, give
make 'CFLAGS=-Wall -g -O2 -w'; 'CXXFLAGS=-g -O2 -w'
OR
Run ./configure
and statically modify Makefile
But I want to append my options with the existing options while running configure
or make
The post Where to add a CFLAG, such as -std=gnu99, into an autotools project conveniently uses a macro to achieve this.