# Makefile for the second extended file system utility functions
#
# Copyright (C) 1993 Remy Card (card@masi.ibp.fr)
#
# This file can be redistributed under the terms of the GNU General
# Public License

LIB=		libe2p.a
OBJS=		fgetflags.o fsetflags.o fgetversion.o fsetversion.o \
		getflags.o getversion.o iod.o pf.o setflags.o setversion.o

all:		$(LIB)

$(LIB):		$(OBJS)
	ar ruv $(LIB) $(OBJS)

install:

clean:
	rm -f $(LIB) $(OBJS)

realclean clobber spotless:	clean
	rm -f *~ .depend

dep depend .depend:
	rm -f .depend
	$(CPP) -M *.c >.depend

include .depend
