diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index abf2e93ff53b4665a7be383be2b9dee1e9bdc172..9b4761b5466cf911107e5304e112100175b5ad88 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,7 +16,7 @@ build_test:
     - ln -s "$(pwd)" ${APP_PATH}
     - cd ${APP_PATH}
     - make get
-    - make static
+    - make standalone
     - make build
   tags:
     - linux
diff --git a/Makefile b/Makefile
index 1b59f985c0a2f1236e76a323e9656fd3eb3d0907..9c86e073f6cbfa564c6839d5bdbb9fa337d35a55 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,8 @@ TAGS ?= gtk_3_18
 all: icon locales get build
 
 get:
-	go get -tags $(TAGS) . ./standalone
+	go get -tags $(TAGS) ./...
+	go get -tags "$(TAGS) standalone" ./...
 
 build:
 	go build -tags $(TAGS) -ldflags "-X main.version=`git describe --tags`"