mirror of
https://github.com/postgres/postgres.git
synced 2026-02-11 23:03:25 -05:00
17 lines
295 B
Makefile
17 lines
295 B
Makefile
AROPT = crs
|
|
export_dynamic = -export-dynamic
|
|
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
|