On Thursday 28 September 2006 12:35 pm, Sumit Gupta wrote: > I am trying to have different versions of a same program with minor > details. Now when I do that I am trying to keep files in different folders > for that but it causing me a problem. While compiling *SurgeTelos*, the > application code looks for files in same folder *MultiHopLQI*. Details are > as follows [snip]
In TinyOS 2.x, and I assume it's the same for TinyOS 1.x, you can add to your Makefile: PFLAGS += -Isomedir ... and the somedir directory will be searched for files, ahead of the definitions placed onto the include path list by system and platform definitions when 'include $(MAKERULES)' is processed. Steve _______________________________________________ Tinyos-help mailing list [email protected] https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
