xref: /openbmc/ipmitool/src/plugins/dbus/Makefile.am (revision 069e132e)
1*069e132eSJeremy Kerr #
2*069e132eSJeremy Kerr # Copyright (c) 2015 IBM Corporation
3*069e132eSJeremy Kerr # All rights reserved.
4*069e132eSJeremy Kerr #
5*069e132eSJeremy Kerr # Redistribution and use in source and binary forms, with or without
6*069e132eSJeremy Kerr # modification,are permitted provided that the following conditions are met:
7*069e132eSJeremy Kerr #
8*069e132eSJeremy Kerr # 1. Redistributions of source code must retain the above copyright notice,
9*069e132eSJeremy Kerr #    this list of conditions and the following disclaimer.
10*069e132eSJeremy Kerr #
11*069e132eSJeremy Kerr # 2. Redistributions in binary form must reproduce the above copyright notice,
12*069e132eSJeremy Kerr #    this list of conditions and the following disclaimer in the documentation
13*069e132eSJeremy Kerr #    and/or other materials provided with the distribution.
14*069e132eSJeremy Kerr #
15*069e132eSJeremy Kerr # 3. Neither the name of the copyright holder nor the names of its contributors
16*069e132eSJeremy Kerr #    may be used to endorse or promote products derived from this software
17*069e132eSJeremy Kerr #    without specific prior written permission.
18*069e132eSJeremy Kerr #
19*069e132eSJeremy Kerr # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20*069e132eSJeremy Kerr # AND ANY EXPRESS OR IMPLIED WARRANTIES,INCLUDING, BUT NOT LIMITED TO, THE
21*069e132eSJeremy Kerr # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22*069e132eSJeremy Kerr # ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23*069e132eSJeremy Kerr # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24*069e132eSJeremy Kerr # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25*069e132eSJeremy Kerr # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26*069e132eSJeremy Kerr # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27*069e132eSJeremy Kerr # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28*069e132eSJeremy Kerr # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29*069e132eSJeremy Kerr # POSSIBILITY OF SUCH DAMAGE.
30*069e132eSJeremy Kerr #
31*069e132eSJeremy Kerr
32*069e132eSJeremy KerrMAINTAINERCLEANFILES	= Makefile.in
33*069e132eSJeremy Kerr
34*069e132eSJeremy KerrINCLUDES		= -I$(top_srcdir)/include
35*069e132eSJeremy Kerr
36*069e132eSJeremy KerrEXTRA_LTLIBRARIES	= libintf_dbus.la
37*069e132eSJeremy Kerrnoinst_LTLIBRARIES	= @INTF_DBUS_LIB@
38*069e132eSJeremy Kerrlibintf_dbus_la_LDFLAGS	= -lsystemd
39*069e132eSJeremy Kerrlibintf_dbus_la_LIBADD	= $(top_builddir)/lib/libipmitool.la
40*069e132eSJeremy Kerrlibintf_dbus_la_SOURCES	= dbus.c
41*069e132eSJeremy Kerr
42