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


1.1
date	96.07.03.23.04.07;	author vkyr;	state Exp;
branches;
next	;


desc
@@


1.1
log
@None
@
text
@# This Makefile compiles "espretty.e" with the SmallEiffel compiler. 
# 
# espretty.e -- needs the "format.e" and "format.c" files for 
# compilation.
#
# date:   $Date$
# revision: $Revision$
# author:   $Valentino Kyriakides$
#
SHELL = /bin/sh

COMP = compile

FLAGS = -o espretty 

CFILE = format.c

all: espretty

espretty: espretty
		$(COMP) espretty main $(FLAGS) $(CFILE)
@
