# Name and version of the pacakge
PACKAGE:=${shell grep AM_INIT_AUTOMAKE configure.in | cut -d, -f1 | cut -d'(' -f2 | sed -e 's% %%g'}
VERSION:=${shell grep AM_INIT_AUTOMAKE configure.in | cut -d, -f2 | cut -d')' -f1 | sed -e 's% %%g'}

# Do NOT include the following CVS files in the tar:
EXCLUDE_CVS_FILES=

# Put the following generated files also in the tar:
INCLUDE_NON_CVS_FILES=

# The directory where to put the release:
WWWDIR=$(HOME)/www/$(PACKAGE)

# RPM specifics:
REDHAT:=$(shell grep '^%_topdir' rpm/macros | cut -d \  -f 2)
SPECFILE=$(PACKAGE)-$(MAJOR_VERSION).spec
TARGET=i386
REL=1

#-----------------------------------------------------------------------------
srcdir=.
include $(PROTODIR)/maintainer/PTmakefile

# Generating the front page of the distribution site:
index.html: index.html.in
	echo "Fix me" > index.html

# This is executed when you type `make' (without target) before running configure.
setup-dist::
	configure --prefix=/usr

