]> git.ozlabs.org Git - petitboot/blob - discover/Makefile.am
a3087ef8fefe223796427b65998f45b4a1fcc7cf
[petitboot] / discover / Makefile.am
1 #  This program is free software; you can redistribute it and/or modify
2 #  it under the terms of the GNU General Public License as published by
3 #  the Free Software Foundation; version 2 of the License.
4 #
5 #  This program is distributed in the hope that it will be useful,
6 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
7 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8 #  GNU General Public License for more details.
9 #
10 #  You should have received a copy of the GNU General Public License
11 #  along with this program; if not, write to the Free Software
12 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
13 #
14
15 AM_CPPFLAGS = -I$(top_srcdir)/lib $(DEFAULT_CPPFLAGS)
16
17 AM_CFLAGS = $(DEFAULT_CFLAGS)  \
18         -DPREFIX='"$(prefix)"' \
19         -DPKG_SHARE_DIR='"$(pkgdatadir)"' \
20         -DLOCAL_STATE_DIR='"$(localstatedir)"'
21
22 noinst_LTLIBRARIES = libparser.la
23
24 libparser_la_SOURCES = \
25         parser.c \
26         parser.h \
27         parser-conf.c \
28         parser-conf.h \
29         parser-utils.c \
30         parser-utils.h \
31         paths.c \
32         paths.h \
33         resource.c \
34         resource.h \
35         kboot-parser.c \
36         grub2-parser.c \
37         yaboot-parser.c
38
39 EXTRA_DIST = native-parser.c
40
41 libparser_la_LIBADD = $(top_builddir)/lib/libpbcore.la
42
43 sbin_PROGRAMS = pb-discover
44
45 pb_discover_SOURCES = \
46         boot.c \
47         boot.h \
48         device-handler.c \
49         device-handler.h \
50         discover-server.c \
51         discover-server.h \
52         event.c \
53         event.h \
54         event-parser.c \
55         params.c \
56         params.h \
57         pb-discover.c \
58         pb-discover.h \
59         udev.c \
60         udev.h \
61         user-event.c \
62         user-event.h
63
64 pb_discover_LDADD = libparser.la $(top_builddir)/lib/libpbcore.la
65
66 MAINTAINERCLEANFILES = Makefile.in