/mandos/trunk

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

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Teddy Hogeborn
  • Date: 2009-04-17 08:26:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090417082617-eltetak5lzjyz55o
* initramfs-tools-hook: Bug fix: Add "--userid" and "--groupid" to
                        start of "plugin-runner.conf" file instead of
                        appending, to allow any preexisting options to
                        override.
* plugin-runner.conf: Improved wording.

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://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>.
 
11
# <http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html>
13
12
FORTIFY=-D_FORTIFY_SOURCE=2 -fstack-protector-all -fPIC -fPIE
14
13
LINK_FORTIFY_LD=-z relro -fPIE
15
14
LINK_FORTIFY=-pie
17
16
OPTIMIZE=-Os
18
17
LANGUAGE=-std=gnu99
19
18
htmldir=man
20
 
version=1.0.12
 
19
version=1.0.8
21
20
SED=sed
22
21
 
23
22
## Use these settings for a traditional /usr/local install
36
35
INITRAMFSTOOLS=$(DESTDIR)/usr/share/initramfs-tools
37
36
##
38
37
 
39
 
GNUTLS_CFLAGS=$(shell pkg-config --cflags-only-I gnutls)
40
 
GNUTLS_LIBS=$(shell pkg-config --libs gnutls)
 
38
GNUTLS_CFLAGS=$(shell libgnutls-config --cflags)
 
39
GNUTLS_LIBS=$(shell libgnutls-config --libs)
41
40
AVAHI_CFLAGS=$(shell pkg-config --cflags-only-I avahi-core)
42
41
AVAHI_LIBS=$(shell pkg-config --libs avahi-core)
43
42
GPGME_CFLAGS=$(shell gpgme-config --cflags; getconf LFS_CFLAGS)