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


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

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

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

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


desc
@added copyright
@


1.4
log
@added clean
@
text
@# $Header: Makefile,v 1.3 93/02/22 16:16:41 kenm Exp $
# Copyright (C) 1993 Mentor Graphics Corporation

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

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:; ctags $(SRCS) ../util/*.c ../netlist/*.c

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

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

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


1.3
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.2 93/02/22 16:07:59 kenm Exp $
d23 2
@


1.2
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.1 93/02/22 12:31:04 kenm Exp $
d14 1
a14 1
	$(CC) -z $(CFLAGS) $(OBJS) $(LIBS) -o $(PROG).new
@


1.1
log
@Initial revision
@
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
OBJS := main.o
d7 4
a10 4
CFLAGS = -g -I../util -I../edifparse -I../netlist
PROG := erprt
INSTDIR := ../../bin
LIBS := ../edifparse/edifparse.a ../netlist/netlist.a ../util/util.a
@
