#
# $Source: /hpux/shared/supp//usr/src/lib/libfs/./Makefile,v $
# $Revision: 78.3 $
#
# This is the make file for libfs.a.  This library contains procedures that
# are shared by the file system commands.
#

CFLAGS = -Ae
FLAGS = -D_FILE_OFFSET_BITS=64 
LIB	= libfs.a
OBJECTS = blkname.o   \
	  fserror.o	\
	  hpux_rel.o	\
	  is_mounted.o	\
	  is_swap.o	\
	  lfn_ok.o	\
	  mnt_setmntent.o \
	  setup_block_seek.o 

default: $(LIB)

setup_block_seek.o:
	$(CC) $(FLAGS) -c $<

$(LIB): $(OBJECTS)
	rm -f $(LIB)
	ar q $(LIB) $(OBJECTS) 

clean: 
	rm -f $(OBJECTS) core testprog

clobber: clean
	rm -f $(LIB)
