mirror of
https://github.com/postgres/postgres.git
synced 2026-03-05 06:43:23 -05:00
30 lines
494 B
Makefile
30 lines
494 B
Makefile
AROPT = cr
|
|
|
|
ifdef ELF_SYSTEM
|
|
export_dynamic = -Wl,-E
|
|
rpath = -Wl,-R$(rpathdir)
|
|
endif
|
|
|
|
DLSUFFIX = .so
|
|
|
|
ifeq ($(findstring sparc,$(host_cpu)), sparc)
|
|
CFLAGS_SL = -fPIC -DPIC
|
|
else
|
|
CFLAGS_SL = -fpic -DPIC
|
|
endif
|
|
|
|
|
|
%.so: %.o
|
|
ifdef ELF_SYSTEM
|
|
$(CC) -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
|
|
|
|
sqlmansect = 7
|