From d204cf63a346701431139eab97c8374a998eca56 Mon Sep 17 00:00:00 2001 From: Alessandro Iezzi Date: Sat, 4 Feb 2023 00:59:52 +0100 Subject: Separate libs declarations from targets --- libs.config.mk | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libs.config.mk (limited to 'libs.config.mk') diff --git a/libs.config.mk b/libs.config.mk new file mode 100644 index 0000000..606718f --- /dev/null +++ b/libs.config.mk @@ -0,0 +1,11 @@ +# See LICENSE file for copyright and license details. + +LIBDIR = lib + +LIBSTR_VER = 0.0.0-a1 +LIBSTR = cstr-${LIBSTR_VER} +LIBSTR_INC = -I${LIBDIR}/${LIBSTR}/src +LIBSTR_LIB = -L${LIBDIR}/${LIBSTR} -l:libstr.a + +LIBINC = ${LIBSTR_INC} +LIBS = ${LIBSTR_LIB} -- cgit v1.2.3