CFLAGS = $(CFLAGS) -O Why it causes an infinite loop? The first time $(CFLAGS) is null so the right side will be expanded to "null -O". There will be no second time as null is a final value and CFLAGS becomes -O
_______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
