##
##	Ohio Trollius
##	Copyright 1995 The Ohio State University
##
##	Function:	- libfreq.a
##			- runtime file system access routines
##

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

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

##
## local configuration
##
VPATH	= $(DEPTH)/share/freq
INCLUDE	= -I$(IDIR)
DEFS	= 
LCFLAGS = $(INCLUDE) $(DEFS)
AFLAGS	= rv

##
## modules and libraries
##
LIB	= libfreq.a
SRC	= rfatexit.c rfaux.c rfclose.c rflseek.c rfopen.c \
	  rfread.c rfsimplex.c rfstat.c rfwrite.c
OBJ	= rfatexit.o rfaux.o rfclose.o rflseek.o rfopen.o \
	  rfread.o rfsimplex.o rfstat.o rfwrite.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
