mirror of
https://github.com/postgres/postgres.git
synced 2026-02-19 02:29:10 -05:00
no evidence that any currently-supported platform needs this, and good reason to think that any platform that did need it couldn't use the static libraries anyway --- libpq, at least, has circular references. Removing the code shuts up tsort warnings about the circular references on some platforms.
18 lines
298 B
Makefile
18 lines
298 B
Makefile
AROPT = crs
|
|
rpath = -Wl,-rpath,'$(rpathdir)'
|
|
|
|
DLSUFFIX = .so
|
|
# PIC is default
|
|
CFLAGS_SL =
|
|
|
|
%.so: %.o
|
|
$(LD) -G -Bdynamic -shared -o $@ $<
|
|
|
|
override CPPFLAGS += -U_NO_XOPEN4
|
|
|
|
ifneq ($(GCC), yes)
|
|
CFLAGS += -woff 1164,1171,1185,1195,1552
|
|
endif
|
|
LDFLAGS += -Wl,-woff,15 -Wl,-woff,84
|
|
|
|
sqlmansect = 5sql
|