index
:
naskpass.git
NCurses based replacement for askpass (related to cryptsetup).
log msg
author
committer
range
master
about
summary
refs
log
tree
commit
diff
path:
root
/
Makefile
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
toni <toni@devlap.local>
2015-10-13 17:42:21 +0200
committer
toni <matzeton@googlemail.com>
2015-10-14 23:56:48 +0200
commit
a108c1aec43d1f2a5dac0984a5fe9aa4b1c74b91
(
patch
)
tree
1596649df1c35ee4c220549a4b2436336a085f5c
/
Makefile
parent
c89e18ec972f165650a453aa8bd8b30309e323e6
(
diff
)
better ipc: using POSIX (semaphores && msg queues)
Diffstat
(limited to 'Makefile')
-rw-r--r--
Makefile
2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fe89038..1abb87a 100644
--- a/
Makefile
+++ b/
Makefile
@@ -1,6 +1,6 @@
CFLAGS ?= $(shell ncurses5-config --cflags) -Wall -D_GNU_SOURCE=1
DBGFLAGS = -g
-LDFLAGS ?= $(shell ncurses5-config --libs) -pthread
+LDFLAGS ?= $(shell ncurses5-config --libs) -pthread -lrt
CC ?= gcc
INSTALL ?= install
VERSION ?= $(shell if [ -d ./.git ]; then echo -n "git-"; git rev-parse --short HEAD; else echo "1.2a"; fi)