58 lines
1.6 KiB
Makefile
58 lines
1.6 KiB
Makefile
$(lib_binaries) += libqmath
|
|
ifeq ($(with_lib64qmath),yes)
|
|
$(lib_binaries) += lib64qmath
|
|
endif
|
|
ifeq ($(with_lib32qmath),yes)
|
|
$(lib_binaries) += lib32qmath
|
|
endif
|
|
ifeq ($(with_libn32qmath),yes)
|
|
$(lib_binaries) += libn32qmath
|
|
endif
|
|
ifeq ($(with_libx32qmath),yes)
|
|
$(lib_binaries) += libx32qmath
|
|
endif
|
|
|
|
define __do_qmath
|
|
dh_testdir
|
|
dh_testroot
|
|
mv $(install_stamp) $(install_stamp)-tmp
|
|
|
|
rm -rf $(d_l) $(d_d)
|
|
dh_installdirs -p$(p_l) $(usr_lib$(2))
|
|
$(dh_compat2) dh_movefiles -p$(p_l) $(usr_lib$(2))/libquadmath.so.*
|
|
|
|
debian/dh_doclink -p$(p_l) $(p_lbase)
|
|
$(if $(with_dbg),debian/dh_doclink -p$(p_d) $(p_lbase))
|
|
|
|
$(call do_strip_lib_dbg, $(p_l), $(p_d), $(v_dbg),,)
|
|
ln -sf libquadmath.symbols debian/$(p_l).symbols
|
|
$(cross_makeshlibs) dh_makeshlibs $(ldconfig_arg) -p$(p_l)
|
|
$(call cross_mangle_shlibs,$(p_l))
|
|
$(cross_shlibdeps) dh_shlibdeps -p$(p_l) \
|
|
$(call shlibdirs_to_search,,$(2)) \
|
|
$(if $(filter yes, $(with_common_libs)),,-- -Ldebian/shlibs.common$(2))
|
|
$(call cross_mangle_substvars,$(p_l))
|
|
echo $(p_l) $(if $(with_dbg), $(p_d)) >> debian/$(lib_binaries)
|
|
|
|
trap '' 1 2 3 15; touch $@; mv $(install_stamp)-tmp $(install_stamp)
|
|
endef
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
do_qmath = $(call __do_qmath,lib$(1)quadmath$(QUADMATH_SONAME),$(1))
|
|
|
|
$(binary_stamp)-libqmath: $(install_stamp)
|
|
$(call do_qmath,)
|
|
|
|
$(binary_stamp)-lib64qmath: $(install_stamp)
|
|
$(call do_qmath,64)
|
|
|
|
$(binary_stamp)-lib32qmath: $(install_stamp)
|
|
$(call do_qmath,32)
|
|
|
|
$(binary_stamp)-libn32qmath: $(install_stamp)
|
|
$(call do_qmath,n32)
|
|
|
|
$(binary_stamp)-libx32qmath: $(install_stamp)
|
|
$(call do_qmath,x32)
|