/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to Makefile

* mandos-keygen (keygen): Warn about long key generation time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#       -Wunreachable-code 
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
 
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
 
11
# <http://www.kernel.org/doc/man-pages/online/pages/man7/feature_test_macros.7.html>
 
12
# and <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>.
12
13
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC -fPIE
13
14
LINK_FORTIFY_LD=-z relro -fPIE
14
15
LINK_FORTIFY=-pie
16
17
OPTIMIZE=-Os
17
18
LANGUAGE=-std=gnu99
18
19
htmldir=man
19
 
version=1.0.8
 
20
version=1.0.13
20
21
SED=sed
21
22
 
22
23
## Use these settings for a traditional /usr/local install
35
36
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
36
37
##
37
38
 
38
 
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
39
 
GNUTLS_LIBS=$(shell libgnutls-config --libs)
 
39
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
 
40
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
40
41
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
41
42
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
42
43
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)