From 39b656ce66411a02de472a6e1068651a931e1130 Mon Sep 17 00:00:00 2001 From: Milan Skocic Date: Fri, 1 Dec 2023 06:24:33 +0100 Subject: [PATCH] TST: add build_debug target. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index e3e916b..91232fc 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,9 @@ $(LIBNAME): build copy_h copy_a shared copy_shared build: clean fpm build --profile=release +build_debug: clean + fpm build --profile=debug + shared: shared_$(PLATFORM) copy_shared: copy_shared_$(PLATFORM) @@ -50,6 +53,9 @@ copy_shared_windows: test: all fpm test --profile=release +test_debug: build_debug + fpm test --profile=debug + clean: fpm clean --all rm -f src/*.mod