#=====================================================================
	
CONFIG = $(FMT)/src/Configvc.mk
include $(CONFIG)
CC       =       gcc
LIB = ./libahio.a

all:	./libahio.a

clean:
	-rm -f ./libahio.a
	-rm -f  *.o
	-rm -f  *%
	-rm -f *~

./libahio.a : ./libahio.a( ioroutin.o ah2asc.o)


ranlib :
	ranlib $(LIB)	

