mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 06:13:34 -05:00
system. Some systems did not understand the 'l' section, and in general it wasn't entirely appropriate. On SCO OpenServer, the man pages won't be installed at all until someone figures out their man system.
15 lines
245 B
Makefile
15 lines
245 B
Makefile
MK_NO_LORDER=true
|
|
AROPT = crs
|
|
|
|
ifdef ELF_SYSTEM
|
|
export_dynamic = -Wl,-E
|
|
endif
|
|
|
|
DLSUFFIX = .so
|
|
CFLAGS_SL = -fpic -DPIC
|
|
|
|
%.so: %.o
|
|
ln -fs $(top_srcdir)/src/backend/postgres _APP_
|
|
$(CC) -nostart -Xlinker -soname=$@ -o $@ _APP_ $<
|
|
|
|
sqlmansect = 7
|