Files
zvfs/Makefile
2026-03-09 07:53:06 +00:00

14 lines
150 B
Makefile
Executable File

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