vjfw/Makefile

14 lines
176 B
Makefile
Raw Permalink Normal View History

2024-05-25 14:07:17 +00:00
SRC_DIR := ./dist
DEST_DIR := ../web
all: install build copy
install:
@npm install
build:
@npm run build
copy:
@rsync -av --exclude='index.html' $(SRC_DIR)/ $(DEST_DIR)