I came across a peculiar behavior while working with make. If it is expected
behavior, it would be worth documenting. If it is not, a bug should be filed.
The following variable will never receive its default assignment:
# Set default for foo
export foo
foo ?= 5
It would appear that the expo
I think Make should support Objective-C (and Objective-C++) with suffix
rules for `.m' and `.mm':
a) the suffix rule for `.m' would execute`$(CC) -ObjC'
b) same for `.mm', but it would execute `$(CC) -ObjC++'
Samuel Lauber
P.S. `.mm' only works with Apple gcc as far as I know.
--