fence-virt/man/Makefile.in
Lon Hohberger 4ae121d860 Fix fence_virt.conf man page name
Signed-off-by: Lon Hohberger <lon@users.sourceforge.net>
2010-01-12 18:44:28 -05:00

32 lines
982 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_virt.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: