Using gnu make, I can define target specific variable values like this:
release : CFLAGS = -std=c99 -O3 -fno-strict-aliasing
Is there a similar feature for Microsoft NMake?
Using gnu make, I can define target specific variable values like this:
release : CFLAGS = -std=c99 -O3 -fno-strict-aliasing
Is there a similar feature for Microsoft NMake?