# Makefile for dcppt/sample
#
# Copyright (C) GFD Dennou Club, 2005.  All rights reserved.

PERL=/usr/bin/env perl
PUBDIR=pub
SRCDIR=src
DCPPT=../dcppt.pl

all:
	$(PERL) $(DCPPT) -x

quiet:
	$(PERL) $(DCPPT) -q

debug:
	$(PERL) $(DCPPT) -q -D

clean:
	-rm -v -r $(PUBDIR)
	-rm -v $(SRCDIR)/Config.dcppt

init: clean
