In the process of learning tinyos i have discovered that I am totally clueless about makefiles.
there are many optional compile time features that can be used by way of declaring preprocessor variables
to use them you have to do things like
CFLAGS="-DPACKET_LINK" this enables a certain feature.
and CFLAGS="-DPACKET_LINK" "-DLOW_POWER" enables two features.
can someone dissect these lines for me and tell me whats going on? Not in terms of tinyos, but in terms of makefiles!
Thanks!