mindex.c

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

commit 406f947a21f86e3f938fe784b279f3fe021b0d81
parent 64ab1d5fcf4c36c6790b8b6a878a85861c61b617
Author: finwo <finwo@pm.me>
Date:   Sun, 15 Mar 2026 04:17:44 +0100

Fix overrides

Diffstat:
MMakefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -3,12 +3,12 @@ SRC=$(wildcard src/*.c) INCLUDES?= INCLUDES+=-I src -override CFLAGS?=-Wall -std=c99 +CFLAGS?=-Wall -std=c99 include lib/.dep/config.mk -override CFLAGS+=$(INCLUDES) -override CFLAGS+=-D_DEFAULT_SOURCE +CFLAGS+=$(INCLUDES) +CFLAGS+=-D_DEFAULT_SOURCE OBJ=$(SRC:.c=.o)