gpstracker/Makefile
Fabio Manganiello f349b2c5be
All checks were successful
continuous-integration/drone/push Build is passing
Added separate Makefile for frontend
2025-02-28 02:26:55 +01:00

9 lines
127 B
Makefile

.PHONY: all backend frontend
all: backend frontend
backend:
npm install && \
npm run build
frontend:
cd frontend && make