9 lines
127 B
Makefile
9 lines
127 B
Makefile
.PHONY: all backend frontend
|
|
all: backend frontend
|
|
|
|
backend:
|
|
npm install && \
|
|
npm run build
|
|
|
|
frontend:
|
|
cd frontend && make
|