uvm32/Makefile
2025-12-08 12:18:54 +00:00

12 lines
291 B
Makefile

all:
(cd host && make)
(cd host-mini && make)
(cd host-parallel && make)
#(cd apps && make) # do not build apps by default, as they require a variety of dev tools
clean:
(cd host && make clean)
(cd host-mini && make clean)
(cd host-parallel && make clean)
(cd apps && make clean)