1 | # schroot Makefile template |
---|
2 | # |
---|
3 | # |
---|
4 | # Copyright © 2004-2007 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 3 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, see |
---|
18 | # <http://www.gnu.org/licenses/>. |
---|
19 | # |
---|
20 | ##################################################################### |
---|
21 | |
---|
22 | include $(top_srcdir)/scripts/global.mk |
---|
23 | |
---|
24 | pkglibexecdir = $(SCHROOT_LIBEXEC_DIR) |
---|
25 | |
---|
26 | LOCAL_CXXFLAGS = $(SCHROOT_CFLAGS) -I$(top_srcdir)/bin |
---|
27 | |
---|
28 | DEFS = -DLOCALEDIR=\"$(localedir)\" -D_GNU_SOURCE |
---|
29 | |
---|
30 | pkglibexec_PROGRAMS = schroot-listmounts |
---|
31 | |
---|
32 | schroot_listmounts_SOURCES = \ |
---|
33 | schroot-listmounts-main.h \ |
---|
34 | schroot-listmounts-main.cc \ |
---|
35 | schroot-listmounts-options.h \ |
---|
36 | schroot-listmounts-options.cc \ |
---|
37 | schroot-listmounts.cc |
---|
38 | schroot_listmounts_LDADD = $(top_builddir)/bin/schroot-base/libschroot-base.la |
---|