From mboxrd@z Thu Jan 1 00:00:00 1970 From: jparsons@sourceware.org Date: 16 Aug 2006 17:38:03 -0000 Subject: [Cluster-devel] cluster/fence/bin Makefile Message-ID: <20060816173803.7272.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Branch: STABLE Changes by: jparsons at sourceware.org 2006-08-16 17:38:03 Modified files: fence/bin : Makefile Log message: apc snmp bindir support Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/fence/bin/Makefile.diff?cvsroot=cluster&only_with_tag=STABLE&r1=1.3.2.1.6.4&r2=1.3.2.1.6.5 --- cluster/fence/bin/Attic/Makefile 2006/01/26 16:29:45 1.3.2.1.6.4 +++ cluster/fence/bin/Attic/Makefile 2006/08/16 17:38:02 1.3.2.1.6.5 @@ -18,6 +18,7 @@ SBINPROGS= \ fence_ack_manual \ fence_apc \ + fence_apc_snmp \ fence_rsa \ fence_bladecenter \ fence_brocade \ @@ -36,6 +37,10 @@ fence_ipmilan \ fenced +SHAREPROGS = \ + powernet369.mib \ + README_SNMP + include ${top_srcdir}/make/defines.mk @@ -54,6 +59,12 @@ for v in ${SBINPROGS}; do \ install -m755 $${v} ${sbindir}; \ done + if [ ! -d ${sharedir} ]; then \ + install -d ${sharedir}; \ + fi + for v in ${SHAREPROGS}; do \ + install -m644 $${v} ${sharedir}; \ + done uninstall: ${UNINSTALL} ${SBINPROGS} ${sbindir}