mindex.c

In-memory ordered store and fetch library
git clone git://git.finwo.net/lib/mindex.c
Log | Files | Refs | README | LICENSE

commit 13905402c23ff756df99727d18922c64dc3dc032
parent 20f3be9378ed0f899b24cd815970ae462b2e558b
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Thu,  2 Mar 2023 22:29:52 +0100

Added config.mk and exports in package.ini

Diffstat:
MMakefile | 2+-
A__DIRNAME | 2++
Aconfig.mk | 1+
Mpackage.ini | 5+++++
4 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -1,5 +1,5 @@ SRC:= -SRC+=$(wildcard src/*.c) +include config.mk SRC+=test.c INCLUDES?= diff --git a/__DIRNAME b/__DIRNAME @@ -0,0 +1 @@ +. +\ No newline at end of file diff --git a/config.mk b/config.mk @@ -0,0 +1 @@ +SRC+=__DIRNAME/src/mindex.c diff --git a/package.ini b/package.ini @@ -1,5 +1,10 @@ [dependencies] finwo/assert=https://github.com/finwo/c-assert/archive/refs/tags/edge.tar.gz + [package] deps=lib name=finwo/mindex + +[export] +config.mk=config.mk +include/finwo/mindex.h=src/mindex.h