mirror of
https://github.com/postgres/postgres.git
synced 2026-02-11 14:53:31 -05:00
11 lines
234 B
Makefile
11 lines
234 B
Makefile
ifdef LINUX_ELF
|
|
# test for __ELF__ in C code so do not need LINUX_ELF defined
|
|
# - thomas 1997-12-29
|
|
#CFLAGS+= -DLINUX_ELF
|
|
LDFLAGS+= -export-dynamic -Wl,-rpath -Wl,$(LIBDIR)
|
|
endif
|
|
MK_NO_LORDER= true
|
|
|
|
%.so: %.o
|
|
$(CC) -shared -o $@ $<
|
|
|