head     1.1;
access   ;
symbols  ;
locks    stoller:1.1; strict;
comment  @# @;


1.1
date     88.03.19.15.59.17;  author jed;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@##############################################################################
# File:         Makefile
# Description:  for testing frobs
# Author:       Eric G. Muehle, Jed Krohnfeldt, Craig Steury
# Created:      19-Mar-88
# RCS $Header: Makefile.dist,v 1.2 88/02/25 10:09:36 jed 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    = ..

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