9 lines
No EOL
156 B
Makefile
9 lines
No EOL
156 B
Makefile
all: build
|
|
|
|
build:
|
|
@if [ -f package-lock.json ]; then npm ci; else npm install; fi
|
|
npm run build
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)
|
|
cp -r assets $(DESTDIR)/
|