chore(build): add root Makefile for project build management

This commit is contained in:
user
2026-07-19 18:02:13 +04:00
parent 0c5b288833
commit 15124aa217
+22
View File
@@ -0,0 +1,22 @@
.PHONY: all logger app tests clean
all: logger app tests
logger:
$(MAKE) -C logger
app: logger
$(MAKE) -C app
tests: logger
$(MAKE) -C tests
clean:
$(MAKE) -C logger clean
$(MAKE) -C app clean
$(MAKE) -C tests clean