diff options
Diffstat (limited to 'libs.mk')
-rw-r--r-- | libs.mk | 23 |
1 files changed, 0 insertions, 23 deletions
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 |