mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 07:43:11 -05:00
16 lines
258 B
Makefile
16 lines
258 B
Makefile
AROPT = crs
|
|
export_dynamic = -Wl,-E
|
|
rpath = -Wl,-rpath,'$(rpathdir)'
|
|
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
|