# $Id: Makefile,v 1.2 2003/05/19 09:37:13 ehood Exp $
##-----------------------------------------------------------------------##
##  Development makefile.
##-----------------------------------------------------------------------##

.PHONY: default code-check doc

TOP     = ../..
SUBDIRS = \
	  # End SUBDIRS

include $(TOP)/etc/variables.mk

##-----------------------------------------------------------------------##

PERL_FILES	= \
		  mha-mhedit \
		  # End PERL_FILES

##-----------------------------------------------------------------------##

default: code-check doc

doc: 
	pod2html --header mha-mhedit > mha-mhedit.html
	$(RM) -f pod2htm*

code-check: perl_syntax

clean: clean_local

clean_local:
	$(RM) -f pod2htm* mha-mhedit.html

distclean: clean_local

##-----------------------------------------------------------------------##

include $(TOP)/etc/rules.mk
