head	1.3;
access;
symbols;
locks; strict;
comment	@# @;


1.3
date	95.05.04.16.54.18;	author jyelon;	state Exp;
branches;
next	1.2;

1.2
date	95.04.14.04.18.51;	author milind;	state Exp;
branches;
next	1.1;

1.1
date	94.11.07.16.09.04;	author brunner;	state Exp;
branches;
next	;


desc
@@


1.3
log
@*** empty log message ***
@
text
@############################################################################
# RCS INFORMATION:
#
# 	$RCSfile: Makefile,v $
# 	$Author: milind $	$Locker: jyelon $		$State: Exp $
#	$Revision: 1.2 $	$Date: 1995/04/14 04:18:51 $
#
############################################################################
# DESCRIPTION:
#
############################################################################
# REVISION HISTORY:
#
# $Log: Makefile,v $
# Revision 1.2  1995/04/14  04:18:51  milind
# changed cc to gcc. Otherwise charm++ translator wont compile.
#
# Revision 1.1  1994/11/07  16:09:04  brunner
# Initial revision
#
############################################################################
CC = gcc
FL = -O

all: translate++ spacefilter++

translate++:process.o table.o y.tab.o lex.yy.o 
	$(CC) $(FL) lex.yy.o y.tab.o process.o table.o -o translate++

process.o: process.c t.h externs.h
	   $(CC) -c $(FL) process.c

table.o: table.c t.h externs.h
	   $(CC) -c $(FL) table.c

# some compilers crash when compiling y.tab.c and lex.yy.c with -O
lex.yy.o: lex.yy.c t.h y.tab.h externs.h
	  $(CC) -c lex.yy.c

y.tab.o: y.tab.c t.h
	 $(CC) -c y.tab.c

spacefilter++:    space.tmp.c 
		$(CC) $(FL) -o spacefilter++ space.tmp.c

clean:
	rm -f *.o translate++ spacefilter++
@


1.2
log
@changed cc to gcc. Otherwise charm++ translator wont compile.
@
text
@d5 2
a6 2
# 	$Author: brunner $	$Locker: milind $		$State: Exp $
#	$Revision: 1.1 $	$Date: 1994/11/07 16:09:04 $
d15 3
d45 3
@


1.1
log
@Initial revision
@
text
@d4 3
a6 3
# 	$RCSfile$
# 	$Author$	$Locker$		$State$
#	$Revision$	$Date$
d14 4
a17 1
# $Log$
d19 1
a19 1
CC = cc
@
