build: Improve the toplevel Makefile
This commit is contained in:
parent
8cf4c3f5bc
commit
3e3b944e48
16
Makefile
16
Makefile
@ -1,9 +1,17 @@
|
|||||||
.PHONY: frontend
|
.PHONY: frontend
|
||||||
frontend:
|
production:
|
||||||
$(MAKE) -C frontend/ build
|
@echo Building the frontend
|
||||||
|
$(MAKE) -C frontend/ prod
|
||||||
|
|
||||||
backend:
|
@echo Building the backend
|
||||||
$(MAKE) -C backend/ build
|
$(MAKE) -C backend/ prod
|
||||||
|
|
||||||
|
development:
|
||||||
|
@echo Building the frontend
|
||||||
|
$(MAKE) -C frontend/ dev
|
||||||
|
|
||||||
|
@echo Building the backend
|
||||||
|
$(MAKE) -C backend/ dev
|
||||||
|
|
||||||
.PHONY: todo
|
.PHONY: todo
|
||||||
todo:
|
todo:
|
||||||
|
Reference in New Issue
Block a user