diff --git a/Makefile b/Makefile index 3ac4dd9..250aaac 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,17 @@ .PHONY: frontend -frontend: - $(MAKE) -C frontend/ build +production: + @echo Building the frontend + $(MAKE) -C frontend/ prod -backend: - $(MAKE) -C backend/ build + @echo Building the backend + $(MAKE) -C backend/ prod + +development: + @echo Building the frontend + $(MAKE) -C frontend/ dev + + @echo Building the backend + $(MAKE) -C backend/ dev .PHONY: todo todo: