#/* Copyright (c) CNIDR (Work in progress) */
#
# WIDE AREA INFORMATION SERVER SOFTWARE:
#   No guarantees or restrictions.  See the readme file for the full standard
#   disclaimer.	
#
# Makefile for the wais-test directory
#

RM = /bin/rm -f

#default: index server
default: index

index:
	test.waisindex

server:
	start.myserver

clean:
	$(RM) *%
	$(RM) test-*
	$(RM) *~
	$(RM) server.log
	$(RM) core

