# Makefile for the WriteRsyncBackupToTape package
# Copyright 2008 Parliament Hill Computers Ltd, all rights reserved.
# Author: ADDW December 2008
# SCCS: @(#)Makefile	1.1 12/29/08 20:09:54

# Makefile for contrib directory

PACKAGE=WriteRsyncBackupToTape
DOCDIR=$(DESTDIR)/share/doc/$(PACKAGE)-$(VERSION)
CONTRIBS=writetape
DISTDIR=../.BuildDist/$(PACKAGE)-$(VERSION)/contrib

all:
	:

clean:
	:

install:
	install -d $(DOCDIR)
	install -p -m 644 $(CONTRIBS) $(DOCDIR)

copy-dist: Makefile $(CONTRIBS)
	mkdir $(DISTDIR)
	cp -al $^ $(DISTDIR)

# end
