blob: ef9fbbee64111b857627578e08e2e09b5177a65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
ifdef ELF_SYSTEM
export_dynamic = -Wl,-E
endif
%.so: %.o
ifdef ELF_SYSTEM
$(LD) -x -Bshareable -o $@ $<
else
$(LD) $(LDREL) $(LDOUT) $<.obj -x $<
@echo building shared object $@
@rm -f $@.pic
@${AR} cq $@.pic `lorder $<.obj | tsort`
${RANLIB} $@.pic
@rm -f $@
$(LD) -x -Bshareable -Bforcearchive \
-o $@ $@.pic
endif
|