# (C) Copyright International Business Machines Corporation 23 January 
# 1990.  All Rights Reserved. 
#  
# See the file USERAGREEMENT distributed with this software for full 
# terms and conditions of use. 
# SCCS Info: @(#)Makefile	1.9 3/21/90

include ../make/includefile

OBJECTS	=	listp.o storage.o pathfind.o porting.o asyncrpc.o
SOURCES	=	listp.c storage.c pathfind.c porting.c asyncrpc.c

all: libhaux.a

libhaux.a: $(OBJECTS)
	ar r libhaux.a $?
	$(RANLIB) libhaux.a

llib-lhaux.ln: $(OBJECTS)
	$(LINT) -Chaux $(LFLAGS) $(SOURCES)

lint:	$(OBJECTS)
	$(LINT) $(LFLAGS) $(SOURCES)

clean:
	/bin/rm -f *~ core a.out *.o *.a *.ln
