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

LIB = libaccdate.a

all:	./libaccdate.a

clean:
	-rm -f  libaccdate.a
	-rm -f  *.o
	-rm -f  *%
	-rm -f *~

./libaccdate.a : libaccdate.a(cdate.o)

cdate.o:	cdate.c  
	$(C) -c $(CFLAGS) -o $@ $<

ranlib :
	ranlib $(LIB)	
