mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-16 03:17:00 +08:00
another section if required by the platform (instead of the old way of building them in section "l" and always transforming them to the platform-specific section). This speeds up the installation on common platforms, and it avoids some funny business with the man page tools and build process.
11 lines
177 B
Makefile
11 lines
177 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 $@ $<
|