mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +03:00
10 lines
210 B
Makefile
10 lines
210 B
Makefile
%.so: %.o
|
|
$(LD) -x -r -o $<.obj $<
|
|
@echo building shared object $@
|
|
@rm -f $@.pic
|
|
@${AR} cq $@.pic `lorder $<.obj | tsort`
|
|
${RANLIB} $@.pic
|
|
@rm -f $@
|
|
$(LD) -x -Bshareable -Bforcearchive \
|
|
-o $@ $@.pic
|