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

PUBDIR="pub"
EPPPT="../epppt.pl"

all:
	perl $(EPPPT) -x

quiet:
	perl $(EPPPT) -q

debug:
	perl $(EPPPT) -q -D

clean:
	-rm -rf $(PUBDIR)

init: clean
