aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-11-23 22:05:21 +0100
committerMattias Andrée <maandree@operamail.com>2013-11-23 22:05:21 +0100
commitb85a41caa489e780f361c4b8121d6e52160c0590 (patch)
tree46418f66dfff2cadb423f9a0a701f6c8f2c86292 /Makefile
parentm (diff)
downloadlibpassphrase-b85a41caa489e780f361c4b8121d6e52160c0590.tar.gz
libpassphrase-b85a41caa489e780f361c4b8121d6e52160c0590.tar.bz2
libpassphrase-b85a41caa489e780f361c4b8121d6e52160c0590.tar.xz
draft of PASSPHRASE_MOVE option implementation
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b20e0a0..8ccea46 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,17 @@ LIB = /lib
INCLUDE = /include
OPTIONS =
-# PASSPHRASE_ECHO: Do not hide the passphrase
-# PASSPHRASE_STAR: Use '*' for each character instead of no echo
-# PASSPHRASE_REALLOC: Soften security by using `realloc`
+# PASSPHRASE_ECHO: Do not hide the passphrase
+# PASSPHRASE_STAR: Use '*' for each character instead of no echo
+# PASSPHRASE_REALLOC: Soften security by using `realloc`
+# PASSPHRASE_MOVE: Enable move of point
+# PASSPHRASE_INSERT: Enable insert mode
+# PASSPHRASE_OVERRIDE: Enable override mode
+# PASSPHRASE_DELETE: Enable reversed erase command
+# PASSPHRASE_CONTROL: Enable use of control key combinations
+# PASSPHRASE_DEDICATED: Enable use of dedicated keys
+# DEFAULT_INSERT: Use insert mode as default
+# PASSPHRASE_INVALID: Prevent duplication of non-initialised memory
OPTIMISE = -Os
CPPFLAGS = $(foreach D, $(OPTIONS), -D'$(D)=1')