Files
zvfs/Makefile
2026-03-02 07:27:48 +00:00

17 lines
187 B
Makefile
Executable File

.PHONY: all clean zvfs test run-test
all: zvfs
zvfs:
$(MAKE) -C zvfs
test:
$(MAKE) -C test
run-test:
$(MAKE) -C test run-test
clean:
$(MAKE) -C zvfs clean
$(MAKE) -C test clean