From 55a7dabfe8dba025a8ba506fad93210355926fd8 Mon Sep 17 00:00:00 2001 From: Benedikt Galbavy Date: Sat, 18 Nov 2023 14:45:33 +0100 Subject: [PATCH] ldap to makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6a7065a..60376c6 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC = g++ ASAN_FLAGS = -fsanitize=address -fno-omit-frame-pointer -Wno-format-security CFLAGS := -g -std=c++20 -Wall -I./include -I./server -I./client -LDFLAGS += -fsanitize=address -lpthread -lssl -lcrypto +LDFLAGS += -fsanitize=address -lpthread -lssl -lcrypto -lldap -llber VPATH = server/:client/ TARGET = client server