build: Improve the toplevel Makefile
This commit is contained in:
parent
8cf4c3f5bc
commit
3e3b944e48
16
Makefile
16
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:
|
||||
|
Reference in New Issue
Block a user