From 35f28fa5edb50c4880e58cb2ee1ea71a2ece53a5 Mon Sep 17 00:00:00 2001 From: mappu Date: Sun, 21 May 2017 15:59:00 +1200 Subject: [PATCH] makefile: fix qbolt.a target --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a4f9db6..13960d6 100644 --- a/Makefile +++ b/Makefile @@ -3,13 +3,16 @@ export PATH := /usr/lib/mxe/usr/bin:$(PATH) GOFLAGS := -ldflags='-s -w' -gcflags='-trimpath=$(CURDIR)' -asmflags='-trimpath=$(CURDIR)' VERSION := 1.0.0 -.PHONY: all dist clean +.PHONY: all libs dist clean all: \ - qbolt/qbolt.a \ build/linux/qbolt \ build/win32/release/qbolt.exe +libs: \ + build/linux/qbolt.a \ + build/win32/qbolt.a + dist: \ build/dist/qbolt-${VERSION}-win32.zip \ build/dist/qbolt-${VERSION}-src.tar.gz \