mirror of
https://github.com/postgres/postgres.git
synced 2026-03-29 13:53:46 -04:00
somewhat by adding CFLAGS where the compiler is used and Makefile.shlib already used CFLAGS.
30 lines
489 B
Makefile
30 lines
489 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) $(CFLAGS) -shared -o $@ $<
|
|
else
|
|
$(LD) $(LDREL) $(LDOUT) $<.obj -x $<
|
|
@echo building shared object $@
|
|
@rm -f $@.pic
|
|
@${AR} cq $@.pic $<.obj
|
|
${RANLIB} $@.pic
|
|
@rm -f $@
|
|
$(LD) -x -Bshareable -Bforcearchive -o $@ $@.pic
|
|
endif
|
|
|
|
sqlmansect = 7
|