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.mk | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 libs.mk (limited to 'libs.mk') diff --git a/libs.mk b/libs.mk deleted file mode 100644 index fc59935..0000000 --- a/libs.mk +++ /dev/null @@ -1,23 +0,0 @@ -# See LICENSE file for copyright and license details. - -LIBDIR = lib - -LIBSTR_VER = 0.0.0-a1 -LIBSTR = cstr-${LIBSTR_VER} -LIBSTR_INC = -I${LIB_DIR}/${LIBSTR}/src -LIBSTR_LIB = -L${LIB_DIR}/${LIBSTR} -l:libstr.a - -LIBINC = ${LIBSTR_INC} -LIBS = ${LIBSTR_LIB} - -clean-libs: - rm -rf ${LIBDIR} - -libs: ${LIBDIR} ${LIBDIR}/${LIBSTR} - -${LIBDIR}: - @mkdir -p $@ - -${LIBDIR}/${LIBSTR}: - fetch -o - https://git.alessandroiezzi.it/libs/c/cstr.git/snapshot/${LIBSTR}.tar.gz | tar xzf - -C ${LIBDIR} - cd $@ && make -- cgit v1.2.3