help::
	@echo '  library -- build $(MMLIB)'

all:: 
	@$(MAKE) $(MMLIB)

library:: $(MMLIB)


$(MMLIB): $(OFILE_DIR) 
	@libstuff="";
	for i in $(CLASSES:.m=.o) ; do \
		libstuff="$$libstuff $(OFILE_DIR)/$$i"; \
	done; \
	ar rv $(MMLIB) $$libstuff;
	ranlib -s $(MMLIB)