mirror of
https://github.com/postgres/postgres.git
synced 2026-04-24 15:47:01 -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.
7 lines
122 B
Makefile
7 lines
122 B
Makefile
AROPT = crs
|
|
DLSUFFIX = .so
|
|
CFLAGS_SL =
|
|
rpath = -rpath $(libdir)
|
|
|
|
%.so: %.o
|
|
$(LD) -shared -expect_unresolved '*' -o $@ $<
|