summaryrefslogtreecommitdiff
path: root/src/makefiles/Makefile.bsd
blob: 58df0e955d5057053d86e6df651663de7a21aa1b (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) -x -r -o $<.obj $<
	@echo building shared object $@
	@rm -f [email protected]
	@${AR} cq [email protected] `lorder $<.obj | tsort`
	${RANLIB} [email protected]
	@rm -f $@
	$(LD) -x -Bshareable -Bforcearchive \
	  -o $@ [email protected]
endif