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


1.8
date     93.05.16.18.48.46;  author kenm;  state Exp;
branches ;
next     1.7;

1.7
date     93.05.16.18.27.34;  author kenm;  state Exp;
branches ;
next     1.6;

1.6
date     93.02.22.16.39.46;  author kenm;  state Exp;
branches ;
next     1.5;

1.5
date     93.02.22.16.16.56;  author kenm;  state Exp;
branches ;
next     1.4;

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

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

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

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


desc
@@


1.8
log
@*** empty log message ***
@
text
@# $Header: Makefile,v 1.7 93/05/16 18:27:34 kenm Exp $
# Copyright (C) 1993 Mentor Graphics Corporation

SRCS = dosim.c main.c
OBJS = dosim.o main.o
INCDIRS = -I../util -I../edifparse -I../netlist
CFLAGS = $(XCFLAGS) -I../util -I../edifparse -I../netlist
PROG = esim
INSTDIR = ../../bin
LIBS = ../edifparse/edifparse.a ../netlist/netlist.a ../util/util.a
TAGSRCS = $(SRCS) ../util/*.c ../netlist/*.c

prog $(PROG): $(OBJS) $(LIBS)
	-/bin/rm -f $(PROG)
	$(CC) $(CFLAGS) $(OBJS) $(LIBS) -o $(PROG).new
	mv -f $(PROG).new $(PROG)

install: $(PROG)
	-/bin/rm -rf $(INSTDIR)/$(PROG)
	cp $(PROG) $(INSTDIR)/$(PROG)
	chmod 775 $(INSTDIR)/$(PROG)

tags: $(TAGSRCS)
	ctags $(TAGSRCS)

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

saber:;
	#load -C $(SRCS) $(INCDIRS) $(LIBS)

###
dosim.o: ../netlist/nets.h ../util/util.h ../util/hash.h \
	../edifparse/eprop.h
main.o: ../netlist/nets.h ../util/util.h ../util/hash.h \
	../edifparse/eprop.h ../edifparse/token.h
@


1.7
log
@added clean
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.6 93/02/22 16:39:46 kenm Exp $
d7 1
a7 1
CFLAGS = -O $(XCFLAGS) -I../util -I../edifparse -I../netlist
@


1.6
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.5 93/02/22 16:16:56 kenm Exp $
d25 2
@


1.5
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.4 93/02/22 16:15:19 kenm Exp $
d7 1
a7 1
CFLAGS = -O -I../util -I../edifparse -I../netlist
@


1.4
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.3 93/02/22 13:40:43 kenm Exp $
d15 1
a15 1
	$(CC) -z $(CFLAGS) $(OBJS) $(LIBS) -o $(PROG).new
@


1.3
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.2 93/02/22 12:11:05 kenm Exp $
d7 1
a7 1
CFLAGS = -g -I../util -I../edifparse -I../netlist
@


1.2
log
@added copyright
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.3 93/02/22 12:05:33 kenm Exp $
d4 2
a5 2
SRCS := main.c dosim.c
OBJS := main.o dosim.o
d8 4
a11 4
PROG := esim
INSTDIR := ../../bin
LIBS := ../edifparse/edifparse.a ../netlist/netlist.a ../util/util.a
TAGSRCS := $(SRCS) ../util/*.c ../netlist/*.c
@


1.1
log
@Initial revision
@
text
@d1 2
d5 1
a5 1
OBJS := $(SRCS:%.c=%.o)
d11 1
d23 2
a24 1
tags:; ctags $(SRCS) ../util/*.c ../netlist/*.c
d30 2
a31 1
dosim.o: ../netlist/nets.h ../util/util.h ../util/hash.h
d33 1
a33 1
	../edifparse/token.h
@
