Hi everyone. I'm not being able to make the Hello application in the CentOS Virtual Machine.<br>Please see below the steps I took to build RTEMS and then try building the Hello World app.<br><br>1) Created the folder TEST in /home/rtems.<br>

<br>2) In the terminal, inside the folder TEST:<br>  2.1) export PATH=/opt/rtems-4.11/bin:${PATH}<br>  2.2)  ~/rtems-4.11-work/rtems/configure --target=sparc-rtems4.11  --disable-posix --disable-networking --disable-cxx --enable-rtemsbsp=sis --enable-tests=samples<br>

  2.3) gmake all<br><br>3) Copied the folder Samples from ~/rtems-4.11-work/rtems/testsuites/samples. Pasted it inside the TEST folder.<br><br>-- The HELLO folder, inside Samples, has the following contents:<br><div style="margin-left:40px">

hello.doc<br>hello.scn<br>init.c<br>Makefile.am<br>Makefile.in<br></div><br>3.1) still inside the Terminal: export RTEMS_MAKEFILE_PATH=/home/rtems/test/sparc-rtems4.11/sis<br><br>3.2) I have tried 2 commands to try in making it, unsuccessfully though. See below:<br>

<br>[rtems@localhost hello]$ make<br>make: *** No targets specified and no makefile found.  Stop.<br>[rtems@localhost hello]$ make -f Makefile.am<br>Makefile.am:12: /make/custom/@RTEMS_BSP@.cfg: No such file or directory<br>

Makefile.am:13: /../automake/<a href="http://compile.am">compile.am</a>: No such file or directory<br>Makefile.am:14: /../automake/<a href="http://leaf.am">leaf.am</a>: No such file or directory<br>Makefile.am:24: /../automake/<a href="http://local.am">local.am</a>: No such file or directory<br>

make: *** No rule to make target `/../automake/<a href="http://local.am">local.am</a>'.  Stop.<br>[rtems@localhost hello]$ make -f Makefile.in<br>Makefile.in:16: *** missing separator.  Stop.<br><br>I guess I'm missing something or just trying to build Hello World in the wrong folder.<br>

Can you guys help me out?<br>