#/* 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 
RMFLAGS = -f

#default: index server
default: index

index:
	./test.waisindex

server:
	./start.myserver

clean:
	$(RM) $(RMFLAGS) *%
	$(RM) $(RMFLAGS) test-*
	$(RM) $(RMFLAGS) *~
	$(RM) $(RMFLAGS) server.log
	$(RM) $(RMFLAGS) core
	$(RM) $(RMFLAGS) INFO*
	$(RM) $(RMFLAGS) *dct
	$(RM) $(RMFLAGS) *doc
	$(RM) $(RMFLAGS) *fn
	$(RM) $(RMFLAGS) *hl
	$(RM) $(RMFLAGS) *cat
	$(RM) $(RMFLAGS) *src



