# SPDX-License-Identifier: Apache-2.0
#
# Copyright IBM Corp. 2021
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# The libsoname mechanism allows library versions providing different
# API levels to co-exist in the system.
# This is only supported on Linux right now.

$(SODIR)/$(LIBSONAME): $(SODIR)/$(LIBNAME).so
	ln -f -s $(LIBNAME).so $@

$(SODIR)/$(LIBSONAME_PRIVATE): $(SODIR)/$(LIBNAME_PRIVATE).so
	ln -f -s $(LIBNAME_PRIVATE).so $@

.PHONY: libsoname
libsoname: $(SODIR)/$(LIBSONAME) $(SODIR)/$(LIBSONAME_PRIVATE)

.PHONY: install_libsoname
install_libsoname: install_shared
	mv $(DESTDIR)$(libdir)/$(LIBNAME).so $(DESTDIR)$(libdir)/$(LIBSONAME)
	ln -f -s $(LIBSONAME) $(DESTDIR)$(libdir)/$(LIBNAME).so
