fence-virt/man/Makefile.in
Lon Hohberger 3094c522f4 Fix installation target for man pages
Signed-off-by: Lon Hohberger <lon@users.sourceforge.net>
2009-12-04 15:23:35 -05:00

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: