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