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

📄 makefile.am

📁 linux集群服务器软件代码包
💻 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.inSUBDIRS			= externalINCFILES		= stonith_expect_helpers.h	\			stonith_plugin_common.h		\			stonith_signal.hINCLUDES		= -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 = $(top_builddir)/lib/pils/libpils.la \		    $(top_builddir)/lib/stonith/libstonith.la \		    $(top_builddir)/lib/plugins/stonith/ipmilan.la \		    $(OPENIPMI_LIB)## librariesplugindir	   = $(stonith_plugindir)/stonith2plugin_LTLIBRARIES =	apcmaster.la	\			$(apcmastersnmp_LIB)	\			apcsmart.la		\			baytech.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 $(INCFILES)apcmaster_la_LDFLAGS	= -export-dynamic -module -avoid-versionapcmaster_la_LIBADD	= $(GLIBLIB)apcmastersnmp_la_SOURCES= apcmastersnmp.c $(INCFILES)apcmastersnmp_la_LDFLAGS= -export-dynamic -module -avoid-version @SNMPLIB@ \			  @CRYPTOLIB@apcmastersnmp_la_LIBADD	= $(GLIBLIB)apcsmart_la_SOURCES	= apcsmart.c $(INCFILES)apcsmart_la_LDFLAGS	= -export-dynamic -module -avoid-versionapcsmart_la_LIBADD	= $(GLIBLIB)baytech_la_SOURCES	= baytech.c $(INCFILES)baytech_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.h	$(INCFILES)drac3_la_LDFLAGS	= -export-dynamic -module -avoid-version -lcurl -lxml2 -lssl $(GLIBLIB)external_la_SOURCES	= external.c	$(INCFILES)external_la_LDFLAGS	= -export-dynamic -module -avoid-versionexternal_la_LIBADD	= $(top_builddir)/replace/libreplace.laibmhmc_la_SOURCES	= ibmhmc.c	$(INCFILES)ibmhmc_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	$(INCFILES)ipmilan_la_LDFLAGS	= -export-dynamic -module -avoid-versionipmilan_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(OPENIPMI_LIB) $(GLIBLIB)meatware_la_SOURCES	= meatware.c $(INCFILES)meatware_la_LDFLAGS	= -export-dynamic -module -avoid-versionmeatware_la_LIBADD	= $(GLIBLIB)null_la_SOURCES		= null.c $(INCFILES)null_la_LDFLAGS		= -export-dynamic -module -avoid-versionnull_la_LIBADD		= $(GLIBLIB)nw_rpc100s_la_SOURCES	= nw_rpc100s.c $(INCFILES)nw_rpc100s_la_LDFLAGS	= -export-dynamic -module -avoid-versionnw_rpc100s_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(GLIBLIB)rcd_serial_la_SOURCES	= rcd_serial.c $(INCFILES)rcd_serial_la_LDFLAGS	= -export-dynamic -module -avoid-versionrcd_serial_la_LIBADD	= $(GLIBLIB)rps10_la_SOURCES	= rps10.c $(INCFILES)rps10_la_LDFLAGS	= -export-dynamic -module -avoid-versionrps10_la_LIBADD		= $(GLIBLIB)ssh_la_SOURCES		= ssh.c $(INCFILES)ssh_la_LDFLAGS		= -export-dynamic -module -avoid-versionvacm_la_SOURCES		= vacm.c $(INCFILES)vacm_la_LDFLAGS		= -export-dynamic -module -avoid-versionvacm_la_LIBADD		= $(top_builddir)/replace/libreplace.lawti_nps_la_SOURCES	= wti_nps.c $(INCFILES)wti_nps_la_LDFLAGS	= -export-dynamic -module -avoid-versionwti_nps_la_LIBADD	= $(top_builddir)/replace/libreplace.la $(GLIBLIB)riloe_la_SOURCES         = riloe.c $(INCFILES)riloe_la_LDFLAGS         = -export-dynamic -module -avoid-versionriloe_la_LIBADD          = $(GLIBLIB)stonithscriptdir                =  $(stonith_plugindir)/stonith2stonithscript_SCRIPTS  		= ribcl.py 

⌨️ 快捷键说明

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