From 26a64a315bb40474d79671fb06b26ec9d338a128 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Sat, 26 Jul 2014 17:29:38 +0100 Subject: [PATCH] only install server components --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6ae97bb..847114a 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,10 @@ sysconfdir = /etc/djrandom all: version.go $(JS_TARGET) install: all - go get ./... - go install ./... + go get ./server/... + go get ./mapreduce/... + go install ./server/... + go install ./mapreduce/... rsync -ar ./ui/static/ $(sysconfdir)/static/ rsync -ar ./ui/templates/ $(sysconfdir)/templates/ install -m 755 -o root -g root djrandom.init /etc/init.d/djrandom -- GitLab