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

all:	$(PINV)/lib/libahio.a

clean:
	-rm -f  $(PINV)/lib/libahio.a
	-rm -f  *.o
	-rm -f  *%
	-rm -f *~

$(PINV)/lib/libahio.a : $(PINV)/lib/libahio.a( ioroutin.o ah2asc.o)


ranlib :
	ranlib $(LIB)	

