aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4a9bba4..c3076f6 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.Build=${BUILD}"
default: build
-all: clean ui build docs
+all: clean ui ui-vanilla build docs
clean:
rm -f ${BINARY}
@@ -25,6 +25,9 @@ ui:
mkdir -p web/dist/v2
cp -r frontend/dist/* web/dist/v2/
+ui-vanilla:
+ cd frontend-vanilla && ${NPM} install && ${NPM} run build
+
build:
${GO} build ${LDFLAGS} -o ${BINARY} ./cmd/neko