diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-12-05 16:42:17 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-12-05 16:42:17 +0100 |
commit | e5c01e102c790a918ecfda66cfce7cb5e5f8af0a (patch) | |
tree | d2ab239d8a3d664c793b3d35fd34e9f0030cede2 /Makefile | |
parent | add description of strength value (diff) | |
download | libpassphrase-e5c01e102c790a918ecfda66cfce7cb5e5f8af0a.tar.gz libpassphrase-e5c01e102c790a918ecfda66cfce7cb5e5f8af0a.tar.bz2 libpassphrase-e5c01e102c790a918ecfda66cfce7cb5e5f8af0a.tar.xz |
customisable meter
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -75,6 +75,9 @@ WARN = -Wall -Wextra -Wdouble-promotion -Wformat=2 -Winit-self -Wmissing-include STD = gnu99 # C preprocessor flags CPPFLAGS_ = $(foreach D, $(OPTIONS), -D'$(D)=1') $(foreach D, $(QUOTED_OPTIONS), -D'$(D)="$($(D))"') +ifdef PASSPHRASE_STRENGTH_LIMITS_HEADER +CPPFLAGS_ += -D'PASSPHRASE_STRENGTH_LIMITS_HEADER=$(PASSPHRASE_STRENGTH_LIMITS_HEADER)' +endif # C compiling flags CFLAGS_ = -std=$(STD) $(WARN) # Linking flags |