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


1.4
date     93.02.22.13.39.45;  author kenm;  state Exp;
branches ;
next     1.3;

1.3
date     93.02.22.12.01.30;  author kenm;  state Exp;
branches ;
next     1.2;

1.2
date     93.02.19.17.16.02;  author kenm;  state Exp;
branches ;
next     1.1;

1.1
date     93.01.27.11.03.26;  author kenm;  state Exp;
branches ;
next     ;


desc
@@


1.4
log
@*** empty log message ***
@
text
@# $Header: Makefile,v 1.3 93/02/22 12:01:30 kenm Exp $
# Copyright (C) 1993 Mentor Graphics Corporation

SRCS = builtin.c parse.c token.c
OBJS = builtin.o parse.o token.o
CFLAGS = -g $(XCFLAGS) -I../util
LIB = edifparse.a

lib: $(LIB)

$(LIB): $(OBJS)
	/bin/rm -rf $(LIB)
	ar cr $(LIB) $(OBJS)
	ranlib $(LIB)

clean:; /bin/rm -f $(OBJS)

###
builtin.o: ../util/util.h token.h eprop.h parse.h
parse.o: ../util/util.h token.h eprop.h parse.h
token.o: ../util/util.h token.h eprop.h
@


1.3
log
@added copyright
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.2 93/02/22 11:54:00 kenm Exp $
d4 4
a7 4
SRCS := token.c parse.c builtin.c
OBJS := token.o parse.o builtin.o
CFLAGS = -g -I../util
LIB := edifparse.a
@


1.2
log
@simplify makefile so more makes will work
@
text
@d1 2
@


1.1
log
@Initial revision
@
text
@d3 1
a3 1
OBJS := $(SRCS:%.c=%.o)
d17 3
a19 3
builtin.o: ../util/util.h token.h parse.h
parse.o: ../util/util.h token.h parse.h
token.o: ../util/util.h token.h
@
