#
#	Simple Makefile
#

include mkrules

.SUFFIXES: .wc .html
MAJPROG	 = mboxfull
PROGS	 = mboxfull
SRCDIRS	+= webc.src

#
#	Build everything
#
all::	version.wh

#
#	Create the distribution tar file once we have removed
#	any extraneous files.
#
dist:	clean tar all

#
#	Install files in the appropriate directories.
#	This must be done as root.
#
#	The "-p" flag on install is nice, but not supported in some
#	versions of install.
#
install::
	install -m a=rx $(PROGS) $(BINDIR)
