Files
vortex/tests/runtime/Makefile
2021-06-29 02:04:07 -04:00

16 lines
228 B
Makefile

all:
$(MAKE) -C hello
$(MAKE) -C fibonacci
$(MAKE) -C simple
run:
$(MAKE) -C hello run
$(MAKE) -C fibonacci run
$(MAKE) -C simple run
clean:
$(MAKE) -C hello clean
$(MAKE) -C fibonacci clean
$(MAKE) -C simple clean