summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.bsd
blob: 14ebbfecf337d6da731ea9015745619b78736300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ifdef ELF_SYSTEM
LDFLAGS += -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