summaryrefslogtreecommitdiff
path: root/iconvdata/extra-module.mk
blob: 88c68041a850710e34590d675de897c3c3cabbdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod := $(firstword $(extra-modules-left))
extra-modules-left := $(strip $(filter-out $(mod),$(extra-modules-left)))

extra-objs += $(patsubst %,%.os,$($(mod)-routines))

$(objpfx)$(mod).so: $(addprefix $(objpfx),$(addsuffix .os,$($(mod)-routines)))
	$(build-module)

# Depend on libc.so so a DT_NEEDED is generated in the shared objects.
# This ensures they will load libc.so for needed symbols if loaded by
# a statically-linked program that hasn't already loaded it.
$(objpfx)$(mod).so: $(common-objpfx)libc.so

ifneq (,$(extra-modules-left))
include extra-module.mk
endif