# HG changeset patch # User Michael Spacefalcon # Date 1383198606 0 # Node ID 595631eee4bcd6a2e9066553c65b8266f42755e4 # Parent 28f96757823362e05dea3c800706bdc1256e79f2 riviera hooked into nuc-fw build diff -r 28f967578233 -r 595631eee4bc nuc-fw/Makefile --- a/nuc-fw/Makefile Thu Oct 31 04:37:17 2013 +0000 +++ b/nuc-fw/Makefile Thu Oct 31 05:50:06 2013 +0000 @@ -1,4 +1,4 @@ -SUBDIR= bsp finlink include nucdemo nucleus serial sprintf sysglue +SUBDIR= bsp finlink include nucdemo nucleus riviera serial sprintf sysglue default: config.stamp ${MAKE} ${MFLAGS} -f Makefile.build $@ diff -r 28f967578233 -r 595631eee4bc nuc-fw/cfgmagic/processconf.sh --- a/nuc-fw/cfgmagic/processconf.sh Thu Oct 31 04:37:17 2013 +0000 +++ b/nuc-fw/cfgmagic/processconf.sh Thu Oct 31 05:50:06 2013 +0000 @@ -48,7 +48,7 @@ # will likely depend on the target and feature configuration, # but for now all we have is a FreeNucleus RTOS demo. -BUILD_COMPONENTS="bsp nucdemo nucleus serial sprintf sysglue" +BUILD_COMPONENTS="bsp nucdemo nucleus riviera serial sprintf sysglue" export_to_mk BUILD_COMPONENTS BUILD_DEFAULT_IMAGE=ramImage diff -r 28f967578233 -r 595631eee4bc nuc-fw/riviera/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nuc-fw/riviera/Makefile Thu Oct 31 05:50:06 2013 +0000 @@ -0,0 +1,12 @@ +SUBDIR= rvf rvm rvt + +all: ${SUBDIR} + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +FRC: