BurritOS/test/riscv_instructions/Makefile

14 lines
328 B
Makefile
Raw Normal View History

2023-03-28 17:54:05 +02:00
build:
make build -C boolean_logic/
2023-03-28 19:35:24 +02:00
make build -C jump_instructions/
make build -C simple_arithmetics/
2023-03-28 17:54:05 +02:00
2023-03-01 13:44:48 +01:00
dumps:
make dumps -C boolean_logic/
make dumps -C jump_instructions/
2023-03-08 13:02:03 +01:00
make dumps -C simple_arithmetics/
2023-03-28 17:54:05 +02:00
clean:
$(MAKE) clean -C boolean_logic/
$(MAKE) clean -C jump_instructions/
2023-04-05 15:09:10 +02:00
$(MAKE) clean -C simple_arithmetics/