mirror of
https://github.com/postgres/postgres.git
synced 2026-02-11 14:53:31 -05:00
13 lines
163 B
Makefile
13 lines
163 B
Makefile
AROPT = cr
|
|
|
|
DLSUFFIX = .so
|
|
ifeq ($(GCC), yes)
|
|
CFLAGS_SL = -fpic
|
|
else
|
|
CFLAGS_SL = -PIC
|
|
endif
|
|
|
|
%.so: %.o
|
|
$(LD) -assert pure-text -Bdynamic -o $@ $<
|
|
|
|
sqlmansect = 7
|