diff options
author | Mattias Andrée <maandree@kth.se> | 2021-09-16 17:44:55 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-09-16 17:44:55 +0200 |
commit | 89b36c68813eea189886e73590452c4ca5a70f6c (patch) | |
tree | 3dcd5f875e1be42c0d2aae13ab40f6381bd6ce34 /config.mk | |
parent | fix man page (diff) | |
download | file2key-3.1.1.tar.gz file2key-3.1.1.tar.bz2 file2key-3.1.1.tar.xz |
Improve makefile3.1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,8 +1,10 @@ -PREFIX = /usr +PREFIX = /usr MANPREFIX = $(PREFIX)/share/man -CFLAGS = -std=c99 -Wall -Wextra -O2 +CC = cc + CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 +CFLAGS = -std=c99 -O2 LDFLAGS = -s -lkeccak # To use libpassphrase, add -DWITH_LIBPASSPHRASE to CPPFLAGS and -lpassphrase to LDFLAGS |