diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-11-22 10:37:49 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-11-22 10:37:49 +0100 |
commit | eb4d860255ea9e0aa9c2a758ba074ac224c029e5 (patch) | |
tree | 6509f345347b3c3ba89c61ac27816d57855e573c /Makefile | |
parent | add install and uninstall to makefile (diff) | |
download | libpassphrase-eb4d860255ea9e0aa9c2a758ba074ac224c029e5.tar.gz libpassphrase-eb4d860255ea9e0aa9c2a758ba074ac224c029e5.tar.bz2 libpassphrase-eb4d860255ea9e0aa9c2a758ba074ac224c029e5.tar.xz |
optionally do not hide the input
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,8 +2,11 @@ PREFIX = /usr LIB = /lib INCLUDE = /include +OPTIONS = +# PASSPHRASE_ECHO: Do not hide the passphrase + OPTIMISE = -Os -CPPFLAGS = +CPPFLAGS = $(foreach D, $(OPTIONS), -D'$(D)=1') CFLAGS = -std=c90 -Wall -Wextra -fPIC LDFLAGS = -shared |