summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.freebsd
blob: e242b54e596286beb89d4bf9ca5dccfd754c2891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ifdef ELF_SYSTEM
LDFLAGS+=	-export-dynamic
endif

%.so: %.o
ifdef ELF_SYSTEM
	$(LD) -x -shared -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