mirror of
https://github.com/postgres/postgres.git
synced 2025-12-07 00:02: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.
13 lines
193 B
Makefile
13 lines
193 B
Makefile
# used by initdb
|
|
SHELL=/bin/sh5
|
|
AROPT = crs
|
|
|
|
DLSUFFIX = .so
|
|
# "-G 0" works for both DEC cc and GNU cc.
|
|
CFLAGS_SL = -G 0
|
|
|
|
%.so: %.c
|
|
$(CC) -c -G 0 $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
|
|
|
sqlmansect = 7
|