mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
lib.mk: Install .so irrespective of USE_PROJECT_LIB
Add install: install_LD_CONF if any .so .so.* is present, not just if $(USE_PROJECT_LIB) = true.
This commit is contained in:
parent
b75c7f084f
commit
c61158e61d
1 changed files with 5 additions and 1 deletions
|
|
@ -17,13 +17,17 @@ all:
|
|||
install:
|
||||
else
|
||||
all: $(LD_CONF) $(LIB_SO) $(LINKS_SO) $(MSVCPP_IMPLIB) $(STRIP_DONE)
|
||||
install: install_LIB install_LD_CONF
|
||||
install: install_LIB
|
||||
endif
|
||||
clean: libclean local_libclean clean.ld-conf
|
||||
distclean: clean
|
||||
|
||||
local_libclean: clean.mingw clean.unix clean.all
|
||||
|
||||
ifneq ($(wildcard *.so *.so.*),)
|
||||
install: install_LD_CONF
|
||||
endif
|
||||
|
||||
clean.unix:
|
||||
ifneq ($(TARGET),mingw)
|
||||
rm -rf *.so.* *.so st*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue