fence-virt/man/Makefile.in
Lon Hohberger a93e9220f2 Add missing man pages
Signed-off-by: Lon Hohberger <lon@users.sourceforge.net>
2010-01-06 17:01:46 -05:00

32 lines
983 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
MAN8=fence_virt.8 fence_xvm.8 fence_virtd.8
MAN5=fence_virtd.conf.5
all: $(MAN5) $(MAN8)
install: all
if [ ! -d ${DESTDIR}/${mandir}/man8 ]; then \
install -d ${DESTDIR}/${mandir}/man8 ; \
fi
install -m755 ${MAN8} ${DESTDIR}/${mandir}/man8
if [ ! -d ${DESTDIR}/${mandir}/man5 ]; then \
install -d ${DESTDIR}/${mandir}/man5 ; \
fi
install -m755 ${MAN5} ${DESTDIR}/${mandir}/man5
clean: