forked from altcloud/fence-virt
3094c522f4
Signed-off-by: Lon Hohberger <lon@users.sourceforge.net>
26 lines
802 B
Makefile
26 lines
802 B
Makefile
###############################################################################
|
|
###############################################################################
|
|
##
|
|
## Copyright (C) 2009 Red Hat, Inc.
|
|
##
|
|
## This copyrighted material is made available to anyone wishing to use,
|
|
## modify, copy, or redistribute it subject to the terms and conditions
|
|
## of the GNU General Public License v.2.
|
|
##
|
|
###############################################################################
|
|
###############################################################################
|
|
|
|
include ../Makefile.top
|
|
|
|
TARGETS=fence_virt.8 fence_xvm.8
|
|
|
|
all: $(TARGETS)
|
|
|
|
install: all
|
|
if [ ! -d ${DESTDIR}/${mandir}/man8 ]; then \
|
|
install -d ${DESTDIR}/${mandir}/man8 ; \
|
|
fi
|
|
install -m755 ${TARGETS} ${DESTDIR}/${mandir}/man8
|
|
|
|
clean:
|