# $Id: Makefile,v 1.2 2004/07/19 12:37:04 luca Exp $

VER=0.1

zonenotify: zonenotify.c zonenotify.h
	@cc zonenotify.c -o zonenotify

install: zonenotify
	@cp -f zonenotify /usr/local/bin

strip: install
	@strip /usr/local/bin/zonenotify

clean:
	@rm -f *~ *.core zonenotify

tar:
	@tar -zvcf ../zonenotify-${VER}.tar.gz -C .. \
		--exclude CVS zonenotify
