~ubuntu-branches/ubuntu/intrepid/schroot/intrepid

« back to all changes in this revision

Viewing changes to sbuild/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2006-07-08 18:33:28 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060708183328-rlo4mpldmyoda55q
Tags: 0.99.2-2ubuntu1
* remerge ubuntu changes:
  + debian/control: libpam-dev (>> 0.79-3ubuntu6)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# schroot Makefile template
 
2
#
 
3
#
 
4
# Copyright © 2004-2006  Roger Leigh <rleigh@debian.org>
 
5
#
 
6
# schroot is free software; you can redistribute it and/or modify it
 
7
# under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; either version 2 of the License, or
 
9
# (at your option) any later version.
 
10
#
 
11
# schroot is distributed in the hope that it will be useful, but
 
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
# General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 
19
# MA  02111-1307  USA
 
20
#
 
21
#####################################################################
 
22
 
 
23
localedir = $(datadir)/locale
 
24
 
 
25
AM_CXXFLAGS = $(SCHROOT_CFLAGS) -pedantic -Wall -Wcast-align -Wwrite-strings -Wswitch-default -Wcast-qual -Wunused-variable -Wredundant-decls -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wold-style-cast -Woverloaded-virtual -fstrict-aliasing
 
26
#  -Weffc++ causes too many warnings in standard headers; -Wextra is not
 
27
#  supported by GCC 3.4.
 
28
 
 
29
DEFS = -DGETTEXT_PACKAGE=\"schroot\" -DLOCALEDIR=\"$(localedir)\" -D_GNU_SOURCE
 
30
 
 
31
noinst_LTLIBRARIES = libsbuild.la
 
32
 
 
33
sbuild_public_h_sources =               \
 
34
        sbuild-auth.h                   \
 
35
        sbuild-auth-conv.h              \
 
36
        sbuild-auth-conv-tty.h          \
 
37
        sbuild-auth-message.h           \
 
38
        sbuild-chroot.h                 \
 
39
        sbuild-chroot-block-device.h    \
 
40
        sbuild-chroot-file.h            \
 
41
        sbuild-chroot-lvm-snapshot.h    \
 
42
        sbuild-chroot-plain.h           \
 
43
        sbuild-chroot-source.h          \
 
44
        sbuild-chroot-config.h          \
 
45
        sbuild-custom-error.h           \
 
46
        sbuild-custom-error.tcc         \
 
47
        sbuild-dirstream.h              \
 
48
        sbuild-environment.h            \
 
49
        sbuild-error.h                  \
 
50
        sbuild-format-detail.h          \
 
51
        sbuild-i18n.h                   \
 
52
        sbuild-keyfile.h                \
 
53
        sbuild-lock.h                   \
 
54
        sbuild-log.h                    \
 
55
        sbuild-nostream.h               \
 
56
        sbuild-parse-error.h            \
 
57
        sbuild-parse-value.h            \
 
58
        sbuild-personality.h            \
 
59
        sbuild-run-parts.h              \
 
60
        sbuild-session.h                \
 
61
        sbuild-types.h                  \
 
62
        sbuild-tr1types.h               \
 
63
        sbuild-util.h
 
64
 
 
65
sbuild_public_cc_sources =              \
 
66
        sbuild-auth.cc                  \
 
67
        sbuild-auth-conv.cc             \
 
68
        sbuild-auth-conv-tty.cc         \
 
69
        sbuild-auth-message.cc          \
 
70
        sbuild-chroot.cc                \
 
71
        sbuild-chroot-block-device.cc   \
 
72
        sbuild-chroot-file.cc           \
 
73
        sbuild-chroot-lvm-snapshot.cc   \
 
74
        sbuild-chroot-plain.cc          \
 
75
        sbuild-chroot-source.cc         \
 
76
        sbuild-chroot-config.cc         \
 
77
        sbuild-dirstream.cc             \
 
78
        sbuild-environment.cc           \
 
79
        sbuild-format-detail.cc         \
 
80
        sbuild-keyfile.cc               \
 
81
        sbuild-lock.cc                  \
 
82
        sbuild-log.cc                   \
 
83
        sbuild-nostream.cc              \
 
84
        sbuild-parse-error.cc           \
 
85
        sbuild-parse-value.cc           \
 
86
        sbuild-personality.cc           \
 
87
        sbuild-run-parts.cc             \
 
88
        sbuild-session.cc               \
 
89
        sbuild-util.cc
 
90
 
 
91
libsbuild_la_SOURCES =                  \
 
92
        $(sbuild_public_h_sources)      \
 
93
        $(sbuild_public_cc_sources)
 
94
 
 
95
nodist_libsbuild_la_SOURCES =   \
 
96
        sbuild-config.h
 
97
 
 
98
libsbuild_la_LIBADD = $(UUID_LIBS) $(PAM_LIBS) $(LOCKDEV_LIBS) $(BOOST_LIBS) $(LIBINTL)