# This is the makefile for the report interpreter subsystem of
# LifeLines.
#
# Copyright(c) by T. T. Wetmore IV, 1993, all rights reserved.

CC=cc
CFLAGS=
AR=ar
ARFLAGS=-cr
HDRS=../hdrs
OFILES= alloc.o builtin.o date.o eval.o functab.o indiseq.o interp.o \
	intrpseq.o lex.o more.o rassa.o traverse.o write.o yacc.o

interp.a: $(OFILES)
	$(AR) $(ARFLAGS) interp.a $(OFILES)

.c.o:
	$(CC) $(CFLAGS) -c -I$(HDRS) $<
