# Makefile for epppt
#
# Copyright (C) Morikawa Yasuhiro, 2004.  All rights reserved.

DESTDIR=/usr/local/bin
EPPPT=epppt.pl
TGZ=epppt.tar.gz
SAMPLE=sample
SIGEN=SIGEN.htm SIGEN_PUB.htm

all: 


install:
	install -o root -g root -m 0775 $(EPPPT) $(DESTDIR)

uninstall:
	rm $(DESTDIR)/$(EPPPT)

tar:
	cd $(SAMPLE); make clean
	-rm $(TGZ) $(SIGEN)
	cd .. ; tar cvfz $(TGZ) epppt
	mv ../$(TGZ) ./
	cd $(SAMPLE); make
