~ubuntu-branches/ubuntu/natty/libgcrypt11/natty-proposed

« back to all changes in this revision

Viewing changes to random/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2009-02-21 13:46:58 UTC
  • mto: (1.1.6 upstream) (2.1.3 squeeze)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20090221134658-855twvcr4ezk2ron
ImportĀ upstreamĀ versionĀ 1.4.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for cipher modules
 
2
# Copyright (C) 2008 Free Software Foundation, Inc.
 
3
#
 
4
# This file is part of Libgcrypt.
 
5
#
 
6
# Libgcrypt is free software; you can redistribute it and/or modify
 
7
# it under the terms of the GNU Lesser General Public License as
 
8
# published by the Free Software Foundation; either version 2.1 of
 
9
# the License, or (at your option) any later version.
 
10
#
 
11
# Libgcrypt is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
# GNU Lesser General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU Lesser General Public
 
17
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
 
18
 
 
19
# Process this file with automake to produce Makefile.in
 
20
 
 
21
# Need to include ../src in addition to top_srcdir because gcrypt.h is
 
22
# a built header.
 
23
AM_CPPFLAGS = -I../src -I$(top_srcdir)/src 
 
24
AM_CFLAGS = $(GPG_ERROR_CFLAGS)
 
25
 
 
26
noinst_LTLIBRARIES = librandom.la
 
27
 
 
28
GCRYPT_MODULES = @GCRYPT_RANDOM@
 
29
 
 
30
librandom_la_DEPENDENCIES = $(GCRYPT_MODULES)
 
31
librandom_la_LIBADD = $(GCRYPT_MODULES)
 
32
 
 
33
librandom_la_SOURCES = \
 
34
random.c random.h \
 
35
rand-internal.h \
 
36
random-csprng.c \
 
37
random-fips.c \
 
38
rndhw.c
 
39
 
 
40
if USE_RANDOM_DAEMON
 
41
librandom_la_SOURCES += random-daemon.c 
 
42
endif USE_RANDOM_DAEMON
 
43
 
 
44
 
 
45
EXTRA_librandom_la_SOURCES = \
 
46
rndlinux.c \
 
47
rndegd.c \
 
48
rndunix.c \
 
49
rndw32.c