aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-11-22 10:16:02 +0100
committerMattias Andrée <maandree@operamail.com>2013-11-22 10:16:02 +0100
commit5e7d3624fa967adb90504752d6ff59678a75020f (patch)
treea84d3d21c482de9f705c60e3798c66e2d04a6283 /Makefile
parentadd crypt auth module (diff)
downloadcerberus-5e7d3624fa967adb90504752d6ff59678a75020f.tar.gz
cerberus-5e7d3624fa967adb90504752d6ff59678a75020f.tar.bz2
cerberus-5e7d3624fa967adb90504752d6ff59678a75020f.tar.xz
use libpassphrase
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8e112d5..0f35a13 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ VRB_CPPFLAGS = $(foreach D, $(VRB_DEFS), -D'$(D)=$($(D))') -DAUTH=$(auth_$(AUTH)
OPTIMISE = -Os
CPPFLAGS = $(EXTRA_CPP_FLAGS) $(STR_CPPFLAGS) $(VRB_CPPFLAGS)
CFLAGS = -std=gnu99 -Wall -Wextra
-LDFLAGS =
+LDFLAGS = -lpassphrase
ifeq ($(AUTH),crypt)
LDFLAGS += -lcrypt
endif
@@ -53,7 +53,7 @@ endif
CC_FLAGS = $(CPPFLAGS) $(CFLAGS) $(OPTIMISE)
LD_FLAGS = $(LDFLAGS) $(CFLAGS) $(OPTIMISE)
-SRC = cerberus passphrase quit security login
+SRC = cerberus quit security login
ifneq ($(AUTH),none)
SRC += auth/$(AUTH)
endif