head     1.1;
access   ;
symbols  ;
locks    ; strict;
comment  @@;


1.1
date     90.02.23.12.22.40;  author ram;  state Exp;
branches ;
next     ;


desc
@Working code version as of 2/23/90.
@



1.1
log
@Initial revision
@
text
@;;; -*- Mode:Lisp; Package: User -*-
;;;
;;; **********************************************************************
;;; This code was written as part of the Spice Lisp project at
;;; Carnegie-Mellon University, and has been placed in the public domain.
;;; Spice Lisp is currently incomplete and under active development.
;;; If you want to use this code or any part of Spice Lisp, please contact
;;; Scott Fahlman (FAHLMAN@@CMUC). 
;;; **********************************************************************
;;;
;;;    Generate the Lisp version of all the Matchmaker interfaces.

(in-package "MM-LISP-GEN")
(in-package "USER")

(load "mm:mm.fasl")
(load-mm)
(setq mm-lisp-gen::*user-check-typetypes* :none)
(setf (default-directory) "icode:")
(mm "idefs:mach.mm" :lisp :user :verbose nil)
(mm "idefs:netname.mm" :lisp :user :verbose nil)
@
