##############################################################################
# File:         Makefile
# Description:  for testing frobs
# Author:       Eric G. Muehle, Jed Krohnfeldt, Craig Steury
# Created:      19-Mar-88
# RCS $Header: Makefile,v 1.1 88/03/19 15:59:17 stoller Locked $
#
# (c) Copyright 1987, 1988, University of Utah, all rights reserved
##############################################################################
# Set FROBS to the location of the frobs load file.

#
# Set the variables below for your site and Lisp system:
#
# CL is the path/name of the lisp used to build Frobs.
# LSP is the extension (such as .l) for Lisp source files.
# QUIT is the name of the Lisp function used to terminate a Lisp session.
# FROBS is the location of the frobs binary

CL	 = cl
LSP      = l
QUIT	 = sys:exit
FROBS    = ..

# Turn off the implicit GNU Make LEX rule.
%.c : %.l
%.r : %.l

test:
	@echo \(progn\
		\(load\ \"$(FROBS)\/frobs\"\)\
		\(load\ \"test.$(LSP)\"\)\
		\($(QUIT)\)\)\) | $(CL)
