Makefile fixes

This commit is contained in:
François Autin
2023-04-05 15:09:10 +02:00
parent cb25b09cff
commit 7179931224
7 changed files with 6 additions and 9 deletions

View File

@ -2,7 +2,7 @@ TOPDIR=.
include $(TOPDIR)/Makefile.config
all: dumps user_lib tests
all: dumps user_lib instruction_tests
#
# Main targets
#
@ -18,8 +18,9 @@ dumps:
user_lib:
$(MAKE) -C userlib/
tests: user_lib
$(MAKE) tests -C test/riscv_instructions/
syscall: user_lib
$(MAKE) build -C test/syscall_tests/
$(RM) test/syscall_tests/*.o
mkdir -p ${TOPDIR}/target/guac/
find . -name '*.guac' -exec mv {} ${TOPDIR}/target/guac/ \;