14 lines
169 B
Makefile
14 lines
169 B
Makefile
|
TOPDIR=.
|
||
|
include $(TOPDIR)/Makefile.config
|
||
|
|
||
|
#
|
||
|
# Main targets
|
||
|
#
|
||
|
objdumps:
|
||
|
$(MAKE) -C riscv_instructions
|
||
|
|
||
|
programs:
|
||
|
$(MAKE) -C programs
|
||
|
|
||
|
clean:
|
||
|
rm -rf $(TOPDIR)/target
|