]> git.ozlabs.org Git - petitboot/blob - discover/Makefile.am
8cbb0af7c3727d6fab2d70e23606ee9e1c544adb
[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_LIBRARIES = libparser.o
23
24 libparser_o_SOURCES = \
25         parser.c \
26         parser.h \
27         parser-conf.c \
28         parser-conf.h \
29         paths.c \
30         paths.h \
31         resource.c \
32         resource.h \
33         kboot-parser.c \
34         grub2-parser.c \
35         yaboot-parser.c
36
37 libparser.o: $(libparser_o_OBJECTS)
38         $(LD) -r -o $@ $^
39
40 EXTRA_DIST = native-parser.c
41
42 sbin_PROGRAMS = pb-discover
43
44 pb_discover_SOURCES = \
45         boot.c \
46         boot.h \
47         device-handler.c \
48         device-handler.h \
49         discover-server.c \
50         discover-server.h \
51         event.c \
52         event.h \
53         event-parser.c \
54         params.c \
55         params.h \
56         parser-utils.c \
57         parser-utils.h \
58         pb-discover.c \
59         pb-discover.h \
60         udev.c \
61         udev.h \
62         user-event.c \
63         user-event.h
64
65 pb_discover_LDADD = libparser.o $(top_builddir)/lib/libpbcore.la
66
67 MAINTAINERCLEANFILES = Makefile.in