summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSimon Rettberg2015-04-28 17:55:27 +0200
committerSimon Rettberg2015-04-28 17:55:27 +0200
commit7408a04e740e9b54747bb6333ee9f9ecd098e958 (patch)
tree39da0f7a253ea5f7722695fe7e31ada8ba119990 /Makefile
parentSSL support when talking to ADS (diff)
downloadldadp-7408a04e740e9b54747bb6333ee9f9ecd098e958.tar.gz
ldadp-7408a04e740e9b54747bb6333ee9f9ecd098e958.tar.xz
ldadp-7408a04e740e9b54747bb6333ee9f9ecd098e958.zip
Fix SSL mode :)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 52d6a19..1071bf2 100644
--- a/Makefile
+++ b/Makefile
@@ -26,11 +26,12 @@ scan_ldapsearchfilterstring.o free_ldapsearchresultentry.o \
fmt_ldapsearchfilterstring.o ldap_match_sre.o \
fmt_ldapdeleterequest.o scan_ldapdeleterequest.o normalize_dn.o
-CC=gcc
+CC?=gcc
CFLAGS=-g -pipe -W -Wall -Wextra -std=gnu99 -Wno-unused-parameter
#CC=clang
#CFLAGS=-g -pipe -fsanitize=address -O1 -fno-omit-frame-pointer -W -Wall -Wextra -std=gnu99 -Wno-unused-parameter
-LIBS+=-lowfat -lssl -lcrypto
+
+LIBS+=-g -lowfat -lssl -lcrypto
%.o: %.c
$(CC) $(CFLAGS) -c $<