mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 17:37:07 +08:00
18 lines
286 B
Makefile
18 lines
286 B
Makefile
AROPT = crs
|
|
export_dynamic = -Wl,-E
|
|
rpath = -Wl,-rpath,$(libdir)
|
|
shlib_symbolic = -Wl,-Bsymbolic
|
|
allow_nonpic_in_shlib = yes
|
|
DLSUFFIX = .so
|
|
|
|
ifeq "$(findstring sparc,$(host_cpu))" "sparc"
|
|
CFLAGS_SL = -fPIC
|
|
else
|
|
CFLAGS_SL = -fpic
|
|
endif
|
|
|
|
%.so: %.o
|
|
$(CC) -shared -o $@ $<
|
|
|
|
sqlmansect = 7
|