Skip to content

Commit a82f9ff

Browse files
committed
New LDOUT makefile variable for QNX os.
1 parent ff6fe15 commit a82f9ff

File tree

56 files changed

+109
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+109
-108
lines changed

src/Makefile.global.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.61 1999/12/10 05:00:36 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.62 1999/12/13 22:32:15 momjian Exp $
1111
#
1212
# NOTES
1313
# Essentially all Postgres make files include this file and use the
@@ -211,6 +211,7 @@ CFLAGS_SL= @SHARED_LIB@
211211
LIBS= @LIBS@
212212
LDFLAGS= @LDFLAGS@ $(LIBS)
213213
LDREL= -r
214+
LDOUT= -o
214215
DLSUFFIX= @DLSUFFIX@
215216
LN_S= @LN_S@
216217
TAR= @tar@

src/backend/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#
3535
#
3636
# IDENTIFICATION
37-
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.40 1999/12/09 19:14:23 momjian Exp $
37+
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.41 1999/12/13 22:32:16 momjian Exp $
3838
#
3939
#-------------------------------------------------------------------------
4040

@@ -109,7 +109,7 @@ catalog/global1.description catalog/local1_template1.description:
109109
# The postgres.o target is needed by the rule in Makefile.global that
110110
# creates the exports file when MAKE_EXPORTS = true.
111111
postgres.o: $(OBJS)
112-
$(CC) $(LDREL) -o postgres.o $(OBJS) $(LDFLAGS)
112+
$(CC) $(LDREL) $(LDOUT) postgres.o $(OBJS) $(LDFLAGS)
113113

114114
############################################################################
115115
# The following targets are specified in make commands that appear in the

src/backend/access/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for the access methods module
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/Makefile,v 1.4 1999/12/09 19:14:24 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/Makefile,v 1.5 1999/12/13 22:32:17 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -18,7 +18,7 @@ OBJS = common/SUBSYS.o gist/SUBSYS.o hash/SUBSYS.o heap/SUBSYS.o \
1818
all: submake SUBSYS.o
1919

2020
SUBSYS.o: $(OBJS)
21-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
21+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

2323
.PHONY: submake
2424
submake:

src/backend/access/common/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/common
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/common/Makefile,v 1.14 1999/12/09 19:14:25 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/common/Makefile,v 1.15 1999/12/13 22:32:20 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -23,7 +23,7 @@ OBJS = heaptuple.o indextuple.o indexvalid.o printtup.o \
2323
all: SUBSYS.o
2424

2525
SUBSYS.o: $(OBJS)
26-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
26+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2727

2828
heaptuple.o heapvalid.o tupdesc.o: ../../fmgr.h
2929

src/backend/access/gist/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/gist
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/gist/Makefile,v 1.7 1999/12/09 19:14:26 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/gist/Makefile,v 1.8 1999/12/13 22:32:21 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -18,7 +18,7 @@ OBJS = gist.o gistget.o gistscan.o giststrat.o
1818
all: SUBSYS.o
1919

2020
SUBSYS.o: $(OBJS)
21-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
21+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

2323
depend dep:
2424
$(CC) -MM $(CFLAGS) *.c >depend

src/backend/access/hash/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/hash
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/hash/Makefile,v 1.7 1999/12/09 19:14:27 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/hash/Makefile,v 1.8 1999/12/13 22:32:23 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,7 +19,7 @@ OBJS = hash.o hashfunc.o hashinsert.o hashovfl.o hashpage.o hashscan.o \
1919
all: SUBSYS.o
2020

2121
SUBSYS.o: $(OBJS)
22-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
22+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2323

2424
depend dep:
2525
$(CC) -MM $(CFLAGS) *.c >depend

src/backend/access/heap/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/heap
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/heap/Makefile,v 1.7 1999/12/09 19:14:28 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/heap/Makefile,v 1.8 1999/12/13 22:32:24 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -18,7 +18,7 @@ OBJS = heapam.o hio.o stats.o
1818
all: SUBSYS.o
1919

2020
SUBSYS.o: $(OBJS)
21-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
21+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

2323
depend dep:
2424
$(CC) -MM $(CFLAGS) *.c >depend

src/backend/access/index/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/index
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.7 1999/12/09 19:14:29 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/index/Makefile,v 1.8 1999/12/13 22:32:26 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -18,7 +18,7 @@ OBJS = genam.o indexam.o istrat.o
1818
all: SUBSYS.o
1919

2020
SUBSYS.o: $(OBJS)
21-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
21+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

2323
depend dep:
2424
$(CC) -MM $(CFLAGS) *.c >depend

src/backend/access/nbtree/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/nbtree
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/nbtree/Makefile,v 1.7 1999/12/09 19:14:30 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/nbtree/Makefile,v 1.8 1999/12/13 22:32:28 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,7 +19,7 @@ OBJS = nbtcompare.o nbtinsert.o nbtpage.o nbtree.o nbtscan.o nbtsearch.o \
1919
all: SUBSYS.o
2020

2121
SUBSYS.o: $(OBJS)
22-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
22+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2323

2424
depend dep:
2525
$(CC) -MM $(CFLAGS) *.c >depend

src/backend/access/rtree/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/rtree
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/Makefile,v 1.7 1999/12/09 19:14:31 momjian Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/Makefile,v 1.8 1999/12/13 22:32:30 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -18,7 +18,7 @@ OBJS = rtget.o rtproc.o rtree.o rtscan.o rtstrat.o
1818
all: SUBSYS.o
1919

2020
SUBSYS.o: $(OBJS)
21-
$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
21+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

2323
depend dep:
2424
$(CC) -MM $(CFLAGS) *.c >depend

0 commit comments

Comments
 (0)