/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

  • Committer: Teddy Hogeborn
  • Date: 2009-10-25 19:16:56 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091025191656-zc9xzphyanlr88hq
Tags: version-1.0.14-1
* Makefile (version): Changed to "1.0.14".
* NEWS (Version 1.0.14): New entry.
* debian/changelog (1.0.14-1): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#DEBUG=-ggdb3
10
10
# For info about _FORTIFY_SOURCE, see
11
11
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
12
 
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC -fPIE
13
 
LINK_FORTIFY_LD=-z relro -fPIE
14
 
LINK_FORTIFY=-pie
 
12
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC
 
13
LINK_FORTIFY_LD=-z relro -z now
 
14
LINK_FORTIFY=
 
15
ifndef BROKEN_PIE
 
16
FORTIFY += -fPIE
 
17
LINK_FORTIFY_LD += -fPIE
 
18
LINK_FORTIFY += -pie
 
19
endif
15
20
#COVERAGE=--coverage
16
21
OPTIMIZE=-Os
17
22
LANGUAGE=-std=gnu99
18
23
htmldir=man
19
 
version=1.0.8
 
24
version=1.0.14
20
25
SED=sed
21
26
 
22
27
## Use these settings for a traditional /usr/local install
35
40
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
36
41
##
37
42
 
38
 
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
39
 
GNUTLS_LIBS=$(shell libgnutls-config --libs)
 
43
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
 
44
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
40
45
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
41
46
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
42
47
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)