# Makefile for HostSentry package
# 
# Send problems/code hacks to crowland@psionic.com
#
# $Id: Makefile,v 1.4 1999/03/22 05:32:24 crowland Exp crowland $

INSTALLDIR = /usr/local/abacus/hostsentry


all:
		@echo "Usage: make install"
		@echo "" 
		@echo "NOTE: This will install the package in this" 
		@echo "      directory: $(INSTALLDIR)" 
		@echo "" 
		@echo "Edit the makefile if you wish to change these paths." 
		@echo "Any existing files will be overwritten."

install:	
		@echo "Installing HostSentry in: $(INSTALLDIR)"
		install  -d -g 0 -o root -m 0700 $(INSTALLDIR)
		install  -d -g 0 -o root -m 0700 $(INSTALLDIR)/modules
		install  -g 0 -o root -m 0700 host* $(INSTALLDIR)
		install  -g 0 -o root -m 0700 module* $(INSTALLDIR)/modules
		@echo ""
		@echo ""

