diff --git a/examples/nxflat/Makefile b/examples/nxflat/Makefile index b852740bf..4ec5a8ea9 100644 --- a/examples/nxflat/Makefile +++ b/examples/nxflat/Makefile @@ -47,6 +47,10 @@ PRIORITY = SCHED_PRIORITY_DEFAULT STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE) MODULE = $(CONFIG_EXAMPLES_NXFLAT) +ROOTDEPPATH := --dep-path tests + +VPATH += :tests + tests/romfs.c: build tests/dirlist.c: build tests/symtab.c: build diff --git a/examples/nxflat/tests/Makefile b/examples/nxflat/tests/Makefile index 0d125aa7a..0a8aac5f7 100644 --- a/examples/nxflat/tests/Makefile +++ b/examples/nxflat/tests/Makefile @@ -33,6 +33,8 @@ # ############################################################################ +include $(TOPDIR)/Make.defs + # Most of these do no build yet #SUBDIRS = errno hello hello++ longjmp mutex pthread signal task struct SUBDIRS = errno hello struct @@ -50,7 +52,7 @@ TESTS_DIR = $(NXFLAT_DIR)/tests ROMFS_DIR = $(TESTS_DIR)/romfs ROMFS_IMG = $(TESTS_DIR)/romfs.img ROMFS_SRC = $(TESTS_DIR)/romfs.c -DIRLIST_SRC = $(TESTS_DIR)/dirlist.h +DIRLIST_SRC = $(TESTS_DIR)/dirlist.c SYMTAB_SRC = $(TESTS_DIR)/symtab.c define DIR_template @@ -79,7 +81,7 @@ $(ROMFS_IMG): install $(ROMFS_SRC): $(ROMFS_IMG) $(Q) (cd $(TESTS_DIR); xxd -i romfs.img | sed -e "s/^unsigned/const unsigned/g" >$@) -# Create the dirlist.h header file from the romfs directory +# Create the dirlist.c file from the romfs directory $(DIRLIST_SRC): install $(Q) $(TESTS_DIR)/mkdirlist.sh $(ROMFS_DIR) >$@.tmp @@ -88,7 +90,7 @@ $(DIRLIST_SRC): install # Create the exported symbol table list from the derived *-thunk.S files $(SYMTAB_SRC): install - $(Q) $(APPDIR)$(DELIM)tools$(DELIM)mksymtab.sh $(ROMFS_DIR) g_nxflat >$@.tmp + $(Q) $(APPDIR)/tools/mksymtab.sh $(ROMFS_DIR) g_nxflat >$@.tmp $(Q) $(call TESTANDREPLACEFILE, $@.tmp, $@) # Clean each subdirectory diff --git a/examples/nxflat/tests/mkdirlist.sh b/examples/nxflat/tests/mkdirlist.sh index 94e9f9283..96f928c7a 100755 --- a/examples/nxflat/tests/mkdirlist.sh +++ b/examples/nxflat/tests/mkdirlist.sh @@ -19,7 +19,7 @@ fi echo "#include " echo "" -echo "static const char *dirlist[] =" +echo "const char *dirlist[] =" echo "{" for file in `ls $dir`; do