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


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

1.4
date     93.03.02.01.11.11;  author drickel;  state Exp;
branches ;
next     1.3;

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

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

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


desc
@@


1.5
log
@added clean
@
text
@# $Header: Makefile,v 1.4 93/03/02 01:11:11 drickel Exp $
# Copyright (C) 1993 Mentor Graphics Corporation

SRCS = alloc.c crash.c hash.c time.c home.c openr.c
OBJS = alloc.o crash.o hash.o time.o home.o openr.o
CFLAGS = -g $(XCFLAGS)
LIB = util.a

lib $(LIB): $(OBJS)
	ar cr $(LIB) $(OBJS)
	ranlib $(LIB)

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

###
alloc.o: util.h
hash.o: util.h hash.h
openr.o: util.h
@


1.4
log
@openr.c
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.3 93/02/22 12:05:33 kenm Exp $
d12 2
@


1.3
log
@*** empty log message ***
@
text
@d1 1
a1 1
# $Header: Makefile,v 1.2 93/02/22 11:54:00 kenm Exp $
d4 2
a5 2
SRCS = alloc.c crash.c hash.c time.c home.c
OBJS = alloc.o crash.o hash.o time.o home.o
d16 1
@


1.2
log
@added copyright
@
text
@d1 1
a1 1
# $Header: alloc.c,v 1.1 93/01/27 11:02:34 kenm Exp $
d6 1
a6 1
CFLAGS = -g
@


1.1
log
@Initial revision
@
text
@d1 7
a7 4
SRCS := alloc.c crash.c hash.c time.c home.c
OBJS := $(SRCS:%.c=%.o)
CFLAGS = -g -D_HPUX_SOURCE
LIB := util.a
@
