include objs

V2		= ..
 
include $(V2)/Makefile.inc
 
LIB             = $(FORTOBJ)

$(LIB): $(OBJS)
	$(BIND) -o $@ $(BINDFLAGS) $(OBJS)
	ar r $(ARLIB) $(OBJS)
	ranlib $(ARLIB)

clean:
	rm -f $(OBJS) $(LIB)

