3
0
corteza/Makefile
2024-07-03 16:48:34 +01:00

9 lines
257 B
Makefile

.PHONY: dev
dev:
@echo "---Processing libs---"
@(cd $(CURDIR)/lib && make dev) || (echo "Failed to build libs"; exit 1)
@echo "---Processing clients---"
@(cd $(CURDIR)/client && make dev) || (echo "Failed to yarn clients"; exit 1)
.DEFAULT_GOAL := dev