BurritOS/test_programs/Makefile

13 lines
223 B
Makefile
Raw Normal View History

2023-02-08 16:01:41 +01:00
TOPDIR=.
include $(TOPDIR)/Makefile.config
#
# Main targets
#
2023-03-01 13:44:48 +01:00
dumps:
$(MAKE) dumps -C riscv_instructions/
mkdir -p ${TOPDIR}/target
find . -name '*.dump' -exec mv {} ${TOPDIR}/target \;
2023-02-08 16:01:41 +01:00
clean:
rm -rf $(TOPDIR)/target