From f73be3264cfef41046eed87ec48587e0e501c402 Mon Sep 17 00:00:00 2001 From: leitner Date: Fri, 2 Feb 2024 14:19:26 +0000 Subject: [PATCH] don't build mduptab_init_reuse (not actually used anymore) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e3dc155..71d5eac 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ ldif.a: ldif_parse.o ldap_match_mapped.o storage.a: mstorage_add.o mduptab_add.o \ bstr_diff.o mduptab_adds.o bstr_diff2.o mstorage_add_bin.o \ mstorage_init.o mstorage_init_persistent.o mstorage_unmap.o \ -mduptab_init.o mduptab_init_reuse.o mduptab_reset.o +mduptab_init.o mduptab_reset.o auth.a: auth.o @@ -229,7 +229,7 @@ WITH_UNITTEST = $(shell grep -l UNITTEST *.c) UNITTEST_BIN = $(patsubst %.c, test/%, $(WITH_UNITTEST)) test/%: %.c - $(CC) $(CFLAGS) --coverage -DUNITTEST -o $@ $^ -I. $(LDFLAGS) -fsanitize=address -fsanitize=undefined -lowfat + $(CC) $(CFLAGS) -g --coverage -DUNITTEST -o $@ $^ -I. $(LDFLAGS) -fsanitize=address -fsanitize=undefined -lowfat $@ check: $(UNITTEST_BIN)