From a4eb5621b9827a311aa2d460d7b02c0f64069319 Mon Sep 17 00:00:00 2001 From: Isin Altinkaya Date: Tue, 26 Dec 2023 19:35:27 +0100 Subject: [PATCH] [build,test] Change libs order, keep systemwide HTSSRC in tests for speed --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 67f5bdf..9938bab 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ $(info [INFO] -> Updated CXXFLAGS to "$(CXXFLAGS)") $(info [INFO] -> LIBS was "$(LIBS)") -LIBS := -lz -lm -lbz2 -llzma -lcurl -lpthread $(THIS_LIBHTS) $(THIS_CRYPTOLIB) +LIBS := $(THIS_LIBHTS) $(THIS_CRYPTOLIB) -lz -lm -lbz2 -llzma -lcurl -lpthread $(info [INFO] -> Updated LIBS to "$(LIBS)") $(info ) @@ -204,7 +204,7 @@ FLAGS := $(CPPFLAGS) $(CXXFLAGS) # Versioning -VERSION = v0.4 +VERSION = v0.4.1 ifneq ($(wildcard .git),) VERSION := $(VERSION)-$(shell git describe --always)