From 52a7957cabc961d25b2eb765c34ca4e06844e197 Mon Sep 17 00:00:00 2001 From: "Alexandru N. Onea" Date: Tue, 9 Apr 2019 21:51:27 +0300 Subject: Add check action to version-bump.sh; Activate checks --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4de58df..ea9bfef 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,10 @@ export LIBDIR ?= $(PREFIX)/lib export BINDIR ?= $(PREFIX)/bin export MANDIR ?= $(PREFIX)/share/man -export TINYALSA_VERSION_MAJOR = $(shell scripts/version-bump.sh -s print major) -export TINYALSA_VERSION = $(shell scripts/version-bump.sh -s print ) +export VERSIONSCRIPT = $(shell pwd)/scripts/version-bump.sh + +export TINYALSA_VERSION_MAJOR = $(shell $(VERSIONSCRIPT) -s print major) +export TINYALSA_VERSION = $(shell $(VERSIONSCRIPT) -s print ) .PHONY: all all: @@ -16,6 +18,7 @@ all: $(MAKE) -C utils $(MAKE) -C doxygen $(MAKE) -C examples + $(VERSIONSCRIPT) check .PHONY: clean clean: -- cgit v1.2.3