lib.mk: Fix install target for USE_PROJECT_LIB = false

This commit is contained in:
Jan Lindemann 2009-06-30 12:14:29 +00:00 committed by Jan Lindemann
commit 289f9c5100

View file

@ -8,11 +8,17 @@ include $(MODDIR)/make/rules.mk
all: $(LD_CONF)
ifeq ($(USE_PROJECT_LIB),false)
ifeq ($(TARGET),mingw)
SHOBJS += $(wildcard *.dll)
else
SHOBJS += $(wildcard *.so)
endif
all:
install: $(INSTALLED_SHOBJS)
else
all: $(LIB_SO) $(LINKS_SO) $(MSVCPP_IMPLIB) $(STRIP_DONE)
endif
install: install_LIB install_LD_CONF
endif
clean: libclean local_libclean clean.ld-conf
distclean: clean