Add clean target to vector makefile

This commit is contained in:
Jordan Carlin 2024-09-20 16:22:25 -07:00
parent aa1a86c70e
commit 766678d076
No known key found for this signature in database

View File

@ -6,4 +6,8 @@ ieee:
$(MAKE) -C ieee
riscv:
$(MAKE) -C riscv
$(MAKE) -C riscv
clean:
$(MAKE) -C ieee clean
$(MAKE) -C riscv clean