#=====================================================================
	
CONFIG = $(FMT)/src/Configvc.mk
include $(CONFIG)	

LIB = libfdb.a

fflags +=  -w -I. -L. 

all:	./libfdb.a

clean:
	-rm -f  libfdb.a
	-rm -f  *.o
	-rm -f  *%
	-rm -f *~
	
./libfdb.a : libfdb.a(fdb.o)


ranlib :
	ranlib $(LIB)




