mirror of
https://github.com/postgres/postgres.git
synced 2026-03-23 19:04:11 -04:00
path into executables and shared libraries (-rpath or -R for most). Can be disabled with --disable-rpath, since some binary packaging standards do not like this option.
8 lines
142 B
Makefile
8 lines
142 B
Makefile
AROPT = crs
|
|
export_dynamic = -export-dynamic
|
|
rpath = -Wl,-rpath,$(libdir)
|
|
DLSUFFIX = .so
|
|
CFLAGS_SL = -fpic
|
|
|
|
%.so: %.o
|
|
$(CC) -shared -o $@ $<
|