From 9d014a2b631515278b38237c4eeaeaf612707e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Wed, 26 Sep 2018 15:16:26 +0200 Subject: [PATCH] Add build-all make target --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 25e9fa1..e8f1a0d 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,9 @@ build-windows: @echo "Building dist/ooni.exe" CC=x86_64-w64-mingw32-gcc GOOS=windows GOARCH=amd64 CGO_ENABLED=1 go build -o dist/ooni.exe -x cmd/ooni/main.go +build-all: build build-windows +.PHONY: build-all + download-mk-libs: @echo "updating mk-libs" @cd vendor/github.com/measurement-kit/go-measurement-kit && ./download-libs.sh