summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2007c1b..00ee869 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
DESTDIR=/
CC = cc
cflags = -O0 -Wall -I. -fpic -Wformat-security -Wextra -pedantic -g3
-ldflags = $(shell pkg-config --libs sqlite3) -lmicrohttpd # -lintl
+ldflags = $(shell pkg-config --libs sqlite3) -lmicrohttpd -lmd # -lintl
PROJ = prijave
# cflags and ldflags are used so that users specifying CFLAGS and LDFLAGS do not override my flags
# += is not used, because gcc usually accepts last option, for example -O0 -O2 will use -O2