# 
# Makefile for ArpHound documentation
#
# Copyright (C) 2002-2003 Matthieu Notalle
#
# $Id: Makefile,v 1.4 2003/09/29 14:19:03 cvs Exp $

MANPAGES= arphound.8 arphound.conf.5
include ../Makefile.common

default: install

install:
	@$(INSTALL) -d -m 755 $(MANDIR)
	@$(INSTALL) -d -m 755 $(MANDIR)/man5
	@$(INSTALL) -d -m 755 $(MANDIR)/man8
	@$(INSTALL) -m 644 arphound.8 $(MANDIR)/man8/arphound.8
	@$(INSTALL) -m 644 arphound.conf.5 $(MANDIR)/man5/arphound.conf.5

uninstall:
	$(RM) $(MANDIR)/man8/arphound.8
	$(RM) $(MANDIR)/man5/arphound.conf.5


#clean:
#	${RM} arphound.8.oops arphound.conf.5.oops


