⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.am

📁 在LINUX下实现HA的源代码
💻 AM
字号:
## stonith: STONITH plugins for Linux-HA## Copyright (C) 2001 Alan Robertson## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License# as published by the Free Software Foundation; either version 2# of the License, or (at your option) any later version.# # This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# # You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.#MAINTAINERCLEANFILES    = Makefile.inINCLUDES		= -I$(top_builddir)/include -I$(top_srcdir)/include \			-I$(top_builddir)/linux-ha -I$(top_srcdir)/linux-ha  \			-I$(top_builddir)/libltdl -I$(top_srcdir)/libltdl			AM_CFLAGS			= @CFLAGS@ -DST_TEXTDOMAIN='"@STONITHPKG@"' \			-DSTONITH_MODULES='"$(stonithlibdir)"' \			-DLOCALEDIR='"@LOCALE@"' EXTRA_DIST = README.meatware README.rcd_serial README.vacm README.drac3 README.ipmilan##       We need "vacmclient_api.h" and -lvacmclient to make the VACM#       plugin work.#if USE_VACMvacm_LIB = vacm.laelsevacm_LIB =endif##       We need <ucd-snmp/asn1.h>, <ucd-snmp/snmp_api.h>, <ucd-snmp/snmp.h>#       <ucd-snmp/snmp_client.h>, <ucd-snmp/mib.h>, -lsnmp and -lcrypto#       for the apcmastersnmp plugin to work#if USE_APC_SNMPapcmastersnmp_LIB = apcmastersnmp.laelseapcmastersnmp_LIB =endifif USE_OPENIPMIOPENIPMI_LIB = -lOpenIPMI -lOpenIPMIposix -lOpenIPMIutilsipmilan_LIB = ipmilan.laipmilan_TEST = ipmilantestelseOPENIPMI_LIB =ipmilan_LIB =endif##       We need <curl/curl.h>, <libxml/xmlmemory.h>, #       <libxml/parser.h>, <libxml/xpath.h>, #       <openssl/bio.h>, <openssl/evp.h>, <openssl/md5.h>, #       -lcurl, -lxml2 and -lssl for the drac3 plugin to work#if USE_DRAC3drac3_LIB = drac3.laelsedrac3_LIB =endifnoinst_PROGRAMS = $(ipmilan_TEST)ipmilantest_SOURCES = ipmilan_test.c ipmilantest_LDADD = ipmilan.la $(OPENIPMI_LIB)## librariesplugindir	   = $(stonith_plugindir)/stonithplugin_LTLIBRARIES =	apcmaster.la		\			$(apcmastersnmp_LIB)	\			apcsmart.la		\			baytech.la		\			cyclades.la		\			$(drac3_LIB)		\			external.la		\			ibmhmc.la		\			$(ipmilan_LIB)		\			meatware.la		\			null.la			\			nw_rpc100s.la		\			rcd_serial.la		\			rps10.la		\			ssh.la			\			$(vacm_LIB)		\			wti_nps.la		\			riloe.laapcmaster_la_SOURCES	= apcmaster.c stonith_signal.hapcmaster_la_LDFLAGS	= -export-dynamic -module -avoid-versionapcmaster_la_LIBADD	= $(GLIBLIB)apcmastersnmp_la_SOURCES= apcmastersnmp.capcmastersnmp_la_LDFLAGS= -export-dynamic -module -avoid-version @SNMPLIB@ \			  @CRYPTOLIB@apcmastersnmp_la_LIBADD	= $(GLIBLIB)apcsmart_la_SOURCES	= apcsmart.c stonith_signal.hapcsmart_la_LDFLAGS	= -export-dynamic -module -avoid-versionapcsmart_la_LIBADD	= $(GLIBLIB)baytech_la_SOURCES	= baytech.c stonith_signal.hbaytech_la_LDFLAGS	= -export-dynamic -module -avoid-versionbaytech_la_LIBADD	= $(GLIBLIB)drac3_la_SOURCES	= drac3.c drac3_command.c drac3_command.h drac3_hash.c drac3_hash.hdrac3_la_LDFLAGS	= -export-dynamic -module -avoid-version -lcurl -lxml2 -lssl $(GLIBLIB)#drac3_la_LIBADD		= /usr/lib/libcurl.laexternal_la_SOURCES	= external.cexternal_la_LDFLAGS	= -export-dynamic -module -avoid-versionexternal_la_LIBADD	= $(top_builddir)/replace/libreplace.laibmhmc_la_SOURCES	= ibmhmc.cibmhmc_la_LDFLAGS	= -export-dynamic -module -avoid-versionibmhmc_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(GLIBLIB)ipmilan_la_SOURCES	= ipmilan.c ipmilan.h ipmilan_command.c ipmilan_la_LDFLAGS	= -export-dynamic -module -avoid-versionipmilan_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(OPENIPMI_LIB) $(GLIBLIB)cyclades_la_SOURCES	= cyclades.c stonith_signal.hcyclades_la_LDFLAGS	= -export-dynamic -module -avoid-versioncyclades_la_LIBADD	= $(GLIBLIB)meatware_la_SOURCES	= meatware.cmeatware_la_LDFLAGS	= -export-dynamic -module -avoid-versionmeatware_la_LIBADD	= $(GLIBLIB)null_la_SOURCES		= null.cnull_la_LDFLAGS		= -export-dynamic -module -avoid-versionnull_la_LIBADD		= $(GLIBLIB)nw_rpc100s_la_SOURCES	= nw_rpc100s.cnw_rpc100s_la_LDFLAGS	= -export-dynamic -module -avoid-versionnw_rpc100s_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(GLIBLIB)rcd_serial_la_SOURCES	= rcd_serial.crcd_serial_la_LDFLAGS	= -export-dynamic -module -avoid-versionrcd_serial_la_LIBADD	= $(GLIBLIB)rps10_la_SOURCES	= rps10.crps10_la_LDFLAGS	= -export-dynamic -module -avoid-versionrps10_la_LIBADD		= $(GLIBLIB)ssh_la_SOURCES		= ssh.cssh_la_LDFLAGS		= -export-dynamic -module -avoid-versionvacm_la_SOURCES		= vacm.cvacm_la_LDFLAGS		= -export-dynamic -module -avoid-versionvacm_la_LIBADD		= $(top_builddir)/replace/libreplace.lawti_nps_la_SOURCES	= wti_nps.c stonith_signal.hwti_nps_la_LDFLAGS	= -export-dynamic -module -avoid-versionwti_nps_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(GLIBLIB) riloe_la_SOURCES         = riloe.criloe_la_LDFLAGS         = -export-dynamic -module -avoid-versionriloe_la_LIBADD          = $(GLIBLIB)stonithscriptdir                =  $(stonith_plugindir)/stonithstonithscript_SCRIPTS           = ribcl.py

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -