diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-05 21:17:45 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1997-01-05 21:17:45 +0000 |
commit | 227015b08ec10e8422b33bc988951fdd1d0ce5d0 (patch) | |
tree | be927b1d1d1e0a3de85588ec035cf496076a3e69 /src/backend | |
parent | 068a4c53afedd5d8a03790608479ffc1274ebaa8 (diff) | |
download | postgresql-227015b08ec10e8422b33bc988951fdd1d0ce5d0.tar.gz postgresql-227015b08ec10e8422b33bc988951fdd1d0ce5d0.zip |
Standardize all LDADD to LD_ADD.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index 40b6b264ece..97552283c39 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -34,7 +34,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.17 1996/11/23 09:51:57 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.18 1997/01/05 21:17:21 bryanh Exp $ # #------------------------------------------------------------------------- @@ -62,7 +62,7 @@ endif all: postgres $(EXP) global1.bki.source local1_template1.bki.source postgres: postgres_group1 postgres_group2 postgres_group3 postgres_group4 - $(CC) $(LDFLAGS) -o postgres $(OBJS) $(LDADD) + $(CC) $(LDFLAGS) -o postgres $(OBJS) $(LD_ADD) postgres_group1: $(MAKE) -C access all @@ -98,7 +98,7 @@ global1.bki.source local1_template1.bki.source: # The postgres.o target is needed by the rule in Makefile.global that # creates the exports file when MAKE_EXPORTS = true. postgres.o: $(OBJS) - $(CC) $(LDFLAGS) -r -o postgres.o $(OBJS) $(LDADD) + $(CC) $(LDFLAGS) -r -o postgres.o $(OBJS) $(LD_ADD) ############################################################################ @@ -208,7 +208,7 @@ $(BINDIR) $(LIBDIR) $(HEADERDIR): # are up to date. It saves the time of doing all the submakes. .PHONY: quick quick: $(OBJS) - $(CC) $(LDFLAGS) -o postgres $(OBJS) $(LDADD) + $(CC) $(LDFLAGS) -o postgres $(OBJS) $(LD_ADD) # # Build the file, "./ID", used by the "gid" (grep-for-identifier) tool |