fixed dumps not properly move into target

This commit is contained in:
Rémi Rativel 2023-04-04 14:50:25 +02:00
parent 8e81358e51
commit d4f8ba2e32

View File

@ -7,7 +7,7 @@ include $(TOPDIR)/Makefile.config
dumps:
$(MAKE) dumps -C riscv_instructions/
mkdir -p ${TOPDIR}/target/dumps/
find . -name '*.dump' -exec mv {} ${TOPDIR}/target/dumps/ \;
find . -path ${TOPDIR}/target -prune -o -name '*.dump' -exec mv {} ${TOPDIR}/target/dumps/ \;
user_lib:
$(MAKE) -C userlib/