#!/bin/sh
#------------------------------------------------------------------------------
#  Projekt  : CLICC - a Common Lisp to C Compiler
#             -----------------------------------
#  Function : Compiling a C file which was generated by clicc
#
#  $Source: /tmp_mnt/home/apply/public/clicc-0.6.1/bin/RCS/clg,v $
#  $Author: wg $
#  $Revision: 1.5 $
#  $Date: 1993/07/01 16:47:26 $
#------------------------------------------------------------------------------

S=$1
shift
gmake -f $CLICCROOT/lib/makefile.cl "SOURCE=$S" "OPTIMIZE=-g" $* "CC=acc"
