fix breakage when user overrides CFLAGS on the make command line
authorRich Felker <dalias@aerifal.cx>
Fri, 23 Oct 2015 03:41:35 +0000 (23:41 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 23 Oct 2015 03:41:35 +0000 (23:41 -0400)
commitbe76cdcf81bdf60d2b7981d9f7d09593f88ef4e6
tree728d1e85cc6e32876168b2ddb8087d4c27bc3627
parent615629bd6fcd6ddb69ad762e679f088c7bd878e2
fix breakage when user overrides CFLAGS on the make command line

these per-target CFLAGS adjustments are mandatory additions to the
command line for building the affected targets, not part of the
user-provided CFLAGS for tuning. my intent was always that the
variable append operations would take place after user settings, but
when a variable is set on the command line, it overrides all
definitions in the makefile, including target-specific ones.

based on patch by Szabolcs Nagy.
Makefile