# -*- Mode: makefile -*-
# $Id: Makefile,v 1.2 2002/07/10 04:37:38 adam Exp $

# drive odcl tests

LISP		:= lisp
LISPFLAGS	:= -batch

.PHONY: test
test:
	$(LISP) $(LISPFLAGS) -load run-tests

tags:	TAGS
TAGS:	*.lisp
	etags *.lisp

.PHONY: clean
clean:
	rm -f *.ufsl *.x86f *.sparcf *.fasl *.err
	rm -f *~ *.bak *.orig .#*

.PHONY: distclean
distclean: clean
	rm -f TAGS
