Consistently use "superuser" instead of "super user"
[pgsql.git] / src / makefiles / Makefile.freebsd
blob75db21ba14501b6d82068f8e4887ac7787817088
1 AROPT = cr
3 export_dynamic = -Wl,-export-dynamic
4 rpath = -Wl,-R'$(rpathdir)'
6 DLSUFFIX = .so
8 # extra stuff for $(with_temp_install)
9 # we need this to get LD_LIBRARY_PATH searched ahead of the compiled-in
10 # rpath, if no DT_RUNPATH is present in the executable. The conditions
11 # under which DT_RUNPATH are added seem unpredictable, so be safe.
13 define with_temp_install_extra
14 LD_LIBRARY_PATH_RPATH=1
15 endef
17 # Rule for building a shared library from a single .o file
18 %.so: %.o
19         $(CC) $(CFLAGS) $< $(LDFLAGS) $(LDFLAGS_SL) -shared -o $@