diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-11-23 22:05:21 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-11-23 22:05:21 +0100 |
commit | b85a41caa489e780f361c4b8121d6e52160c0590 (patch) | |
tree | 46418f66dfff2cadb423f9a0a701f6c8f2c86292 /Makefile | |
parent | m (diff) | |
download | libpassphrase-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-- | Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -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') |