Blame lib/Makefile.am

Packit Service ed0f68
# Copyright (c) 2003 Sun Microsystems, Inc.  All Rights Reserved.
Packit Service ed0f68
# 
Packit Service ed0f68
# Redistribution and use in source and binary forms, with or without
Packit Service ed0f68
# modification, are permitted provided that the following conditions
Packit Service ed0f68
# are met:
Packit Service ed0f68
# 
Packit Service ed0f68
# Redistribution of source code must retain the above copyright
Packit Service ed0f68
# notice, this list of conditions and the following disclaimer.
Packit Service ed0f68
# 
Packit Service ed0f68
# Redistribution in binary form must reproduce the above copyright
Packit Service ed0f68
# notice, this list of conditions and the following disclaimer in the
Packit Service ed0f68
# documentation and/or other materials provided with the distribution.
Packit Service ed0f68
# 
Packit Service ed0f68
# Neither the name of Sun Microsystems, Inc. or the names of
Packit Service ed0f68
# contributors may be used to endorse or promote products derived
Packit Service ed0f68
# from this software without specific prior written permission.
Packit Service ed0f68
# 
Packit Service ed0f68
# This software is provided "AS IS," without a warranty of any kind.
Packit Service ed0f68
# ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
Packit Service ed0f68
# INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
Packit Service ed0f68
# PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED.
Packit Service ed0f68
# SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL NOT BE LIABLE
Packit Service ed0f68
# FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
Packit Service ed0f68
# OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.  IN NO EVENT WILL
Packit Service ed0f68
# SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA,
Packit Service ed0f68
# OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
Packit Service ed0f68
# PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
Packit Service ed0f68
# LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
Packit Service ed0f68
# EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Packit Service ed0f68
Packit Service ed0f68
AUTOMAKE_OPTIONS		= subdir-objects
Packit Service ed0f68
AM_CPPFLAGS			= -I$(top_srcdir)/include
Packit Service ed0f68
MAINTAINERCLEANFILES		= Makefile.in
Packit Service ed0f68
Packit Service ed0f68
noinst_LTLIBRARIES		= libipmitool.la
Packit Service ed0f68
libipmitool_la_SOURCES	= helper.c ipmi_sdr.c ipmi_sel.c ipmi_sol.c ipmi_pef.c \
Packit Service ed0f68
				  ipmi_lanp.c ipmi_fru.c ipmi_chassis.c ipmi_mc.c log.c            \
Packit Service ed0f68
				  dimm_spd.c ipmi_sensor.c ipmi_channel.c ipmi_event.c             \
Packit Service ed0f68
				  ipmi_session.c ipmi_strings.c ipmi_user.c ipmi_raw.c             \
Packit Service ed0f68
				  ipmi_oem.c ipmi_isol.c ipmi_sunoem.c ipmi_fwum.c ipmi_picmg.c    \
Packit Service ed0f68
				  ipmi_main.c ipmi_tsol.c ipmi_firewall.c ipmi_kontronoem.c        \
Packit Service ed0f68
				  ipmi_hpmfwupg.c ipmi_sdradd.c ipmi_ekanalyzer.c ipmi_gendev.c    \
Packit Service ed0f68
				  ipmi_ime.c ipmi_delloem.c ipmi_dcmi.c hpm2.c ipmi_vita.c \
Packit Service ed0f68
				  ipmi_lanp6.c ipmi_cfgp.c \
Packit Service ed0f68
				  ../src/plugins/lan/md5.c ../src/plugins/lan/md5.h
Packit Service ed0f68
Packit Service ed0f68
libipmitool_la_LDFLAGS		= -export-dynamic
Packit Service ed0f68
libipmitool_la_LIBADD		= -lm
Packit Service ed0f68
libipmitool_la_DEPENDENCIES	= 
Packit Service ed0f68