Consistently use "superuser" instead of "super user"
[pgsql.git] / src / makefiles / Makefile.darwin
blobb17598f0586e0d19777bc5e66f421f9528592b62
1 AROPT = crs
3 DLSUFFIX = .so
5 # env var name to use in place of LD_LIBRARY_PATH
6 ld_library_path_var = DYLD_LIBRARY_PATH
8 ifdef PGXS
9   BE_DLLLIBS = -bundle_loader $(bindir)/postgres
10 else
11   BE_DLLLIBS = -bundle_loader $(top_builddir)/src/backend/postgres
12 endif
14 # Rule for building a shared library from a single .o file
15 %.so: %.o
16         $(CC) $(CFLAGS) $< $(LDFLAGS) $(LDFLAGS_SL) -bundle $(BE_DLLLIBS) -o $@