#==============================================================================
#                                tests/Makefile
#------------------------------------------------------------------------------
# Makefile to run Tcl-SIPP tests.
#------------------------------------------------------------------------------
# $Id: Makefile,v 4.0 1993/11/27 21:28:20 markd Rel $
#==============================================================================

include ../Config.mk
SHELL=/bin/sh

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

MBINDIR  = ../master/bin${ARCH}
TSIPP    = ${MBINDIR}/tsipp

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

all:
	@echo "To run tests do a 'make test'"

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

test:
	${TSIPP} all

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

clean: 
	rm -f *.rle *.ppm *.pbm core

