lib.mk: Install all available .a archives

Install all $(wildcard *.a) libs to INSTALL_LIBDIR, not only
lib$(LIBNAME).a.
This commit is contained in:
Jan Lindemann 2007-08-20 22:33:03 +00:00 committed by Jan Lindemann
commit b2c2c7326f

View file

@ -10,7 +10,8 @@ all: $(LIB_SO) $(LINKS_SO) $(MSVCPP_IMPLIB) $(STRIP_DONE)
include $(MODDIR)/make/rules.mk
install: $(LOCAL_TARGETS) all target-dir.done $(INSTALLED_LIB_A) $(INSTALLED_LIB_SO) $(INSTALLED_LINKS_SO)
install: $(LOCAL_TARGETS) all target-dir.done \
$(sort $(INSTALLED_LIB_A) $(INSTALLED_LIB_SO) $(INSTALLED_LINKS_SO) $(wildcard *.a))
clean: libclean local_libclean
distclean: clean
local_libclean: clean.mingw clean.unix clean.all