# Makefile for the CrontabHistory package
# Copyright 2008 Parliament Hill Computers Ltd, all rights reserved.
# Author: ADDW December 2008
# SCCS: %W% %G% %U%

# Makefile for docs directory

MANDIR=$(DESTDIR)/share/man/man1

all:
	:

clean:
	:

install:
	mkdir -p $(MANDIR)
	install -m 644 CrontabHistory.1 $(MANDIR)

# end
