# $Source: /hpux/shared/supp//usr/src/lib/libempty/./makefile,v $
# $Revision: 72.2 $

# makefile for libempty
#
#

# This Makefile creates a dummy library, libempty.a.  At the time of this
# writing, libndir, libbsdipc and libnet link to it.  The only purpose of
# this dummy library is to prevent old Makefiles from breaking.

LIB=	libempty.a
LIB_M=	libempty.M

OBJECTS=  hpux_rel.o
SOURCES=  hpux_rel.c

default: $(LIB)

metrics: $(LIB_M)

$(LIB): $(OBJECTS)
	rm -f libempty.a
	ar q libempty.a $(OBJECTS)

$(LIB_M): $(SOURCES)
	$(METRICS) $(CFLAGS) $(SOURCES) -o $(LIB_M)
clean:
	rm -f $(OBJECTS)

clobber:    clean
	rm -f libempty.a
