Al of these error you mention are addressed in the updated version of the tutorial you refernced that is now part of the tinyos documentation wiki at docs.tinyos.net. I should take down the old one so as not to confuse people I guess..... either that or update it as well.
Kevin On Dec 14, 2007 9:42 AM, Stef <[EMAIL PROTECTED]> wrote: > Hi > > I've managed to install tinyos2.x on Mac Os X Leopard following the > great tutorial available at > > http://docs.google.com/View?docid=ajjph9mvqk3z_bchp66xkmgk6n&pli=1#Installing_Stow > > Nonetheless I've found two mistakes the first when compiling the > tinyos-2.x tools and the second while generating javadoc of the sdk. > > For the first mistake(installing the tinyos-2.x tools) I've had the > following message ; > > Making all in tinyos > Making all in java > Making all in env > make[3]: *** No rule to make target `-n', needed by `all-am'. Stop. > > > It's due to the fact that in Makefile I had GETENVLIB=-n libenv.jnilib > I give you extracts from differents files. > > configure.ac (tools/configure.ac) : > > 107 function jnimap { > 108 for v in $JNIVERSIONS; do > 109 echo -n "${JNIPREFIX}$1$v$JNISUFFIX " > 110 done > 111 } > > config.status (tools/config.status): > > 206 ECHO_C= ECHO_N= ECHO_T= > 207 case `echo -n x` in > 208 -n*) > 209 case `echo 'x\c'` in > 210 *c*) ECHO_T=' ';; # ECHO_T is single tab character. > 211 *) ECHO_C='\c';; > 212 esac;; > 213 *) > 214 ECHO_N='-n';; > 215 esac > > Makefile (tools/Makefile) : > 88 ECHO_C = \c > 89 ECHO_N = > 90 ECHO_T = > > > > > > And the second error is in support/sdk/java/Makefile at the last line. > > 20 javadoc -d $(JAVADOCDIR) `find -name *.java` > > I had to replace this line by > > 20 javadoc -d $(JAVADOCDIR) `find . -name *.java` > > > > > ++ > Stef > _______________________________________________ > Tinyos-help mailing list > [email protected] > https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help > -- ~Kevin
_______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
