##
##	Ohio Trollius
##	Copyright 1995 The Ohio State University
##
##	Function:	- libnreq.a
##			- network request library
##

DEPTH   = ../../../..

##
## global configuration
##
include $(DEPTH)/Config/config

##
## local configuration
##
VPATH	= $(DEPTH)/share/nreq:$(DEPTH)/share/rreq:../../../otb/t/nreq
INCLUDE	= -I$(IDIR)
DEFS	= 
LCFLAGS = $(INCLUDE) $(DEFS)
AFLAGS	= rv

##
## modules and libraries
##
LIB	= libnreq.a
SRC     = bfiprobe.c bfiselect.c bfrecv.c bfselect.c \
	  drecv.c dsend.c dsfr.c frecv.c getnet.c getrent.c getnodes.c \
	  nprobe.c nrecv.c nsend.c precv.c psend.c \
	  trecv.c tsend.c
OBJ     = bfiprobe.o bfiselect.o bfrecv.o bfselect.o \
	  drecv.o dsend.o dsfr.o frecv.o getnet.o getrent.o getnodes.o \
	  nprobe.o nrecv.o nsend.o precv.o psend.o \
	  trecv.o tsend.o

all: $(LIB)

$(LIB): $(OBJ)
	$(RM) $(LIB)
	$(AR) $(AFLAGS) $(LIB) $(OBJ)

install: $(LIB)

clean:
	$(RM) $(OBJ) $(LIB)

##
## depend:
##
include	$(DEPTH)/Config/depend

##
## automatic dependencies and rules
##
include Depends
