13 lines
223 B
Makefile
13 lines
223 B
Makefile
TOPDIR=.
|
|
include $(TOPDIR)/Makefile.config
|
|
|
|
#
|
|
# Main targets
|
|
#
|
|
dumps:
|
|
$(MAKE) dumps -C riscv_instructions/
|
|
mkdir -p ${TOPDIR}/target
|
|
find . -name '*.dump' -exec mv {} ${TOPDIR}/target \;
|
|
|
|
clean:
|
|
rm -rf $(TOPDIR)/target
|