app=libwimeut.a
objs=ut.o array.o link.o list.o

all:$(app)

$(app):$(objs)
	ar rcs $@ $^

clean:
	$(RM) $(app) $(objs)

install:

uninstall:
