# Makefile w3lib

# by Lamosa PAD/CPTEC/2007

# Include copmpilers options ------------------------------------
include ../../eta/src/configure/make.inc
include ./objects.mk

all: $(OBJS) clean 
	@ar r ../w3lib *.o
	@rm -f *.o
	@echo "w3lib library complete..."

%.o: %.f
	@${FC} -O -c -o $@ $<

clean:
	@rm -f ../w3lib
