Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a0990e18
Commit
a0990e18
authored
Nov 09, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile cleanup after reorganization
parent
1d0e3083
Changes
45
Hide whitespace changes
Inline
Side-by-side
Showing
45 changed files
with
94 additions
and
106 deletions
+94
-106
src/backend/access/heap/Makefile
src/backend/access/heap/Makefile
+3
-2
src/backend/access/transam/Makefile
src/backend/access/transam/Makefile
+3
-2
src/backend/bootstrap/Makefile
src/backend/bootstrap/Makefile
+1
-2
src/backend/lib/Makefile
src/backend/lib/Makefile
+3
-2
src/backend/main/Makefile
src/backend/main/Makefile
+1
-2
src/backend/optimizer/path/Makefile
src/backend/optimizer/path/Makefile
+3
-2
src/backend/optimizer/plan/Makefile
src/backend/optimizer/plan/Makefile
+3
-2
src/backend/optimizer/prep/Makefile
src/backend/optimizer/prep/Makefile
+3
-2
src/backend/parser/Makefile
src/backend/parser/Makefile
+1
-2
src/backend/port/BSD44_derived/Makefile
src/backend/port/BSD44_derived/Makefile
+1
-2
src/backend/port/aix/Makefile
src/backend/port/aix/Makefile
+1
-2
src/backend/port/alpha/Makefile
src/backend/port/alpha/Makefile
+1
-2
src/backend/port/bsdi/Makefile
src/backend/port/bsdi/Makefile
+1
-2
src/backend/port/dgux/Makefile
src/backend/port/dgux/Makefile
+1
-2
src/backend/port/hpux/Makefile
src/backend/port/hpux/Makefile
+1
-2
src/backend/port/i386_solaris/Makefile
src/backend/port/i386_solaris/Makefile
+1
-2
src/backend/port/irix5/Makefile
src/backend/port/irix5/Makefile
+1
-2
src/backend/port/linux/Makefile
src/backend/port/linux/Makefile
+1
-2
src/backend/port/sparc/Makefile
src/backend/port/sparc/Makefile
+1
-2
src/backend/port/sparc_solaris/Makefile
src/backend/port/sparc_solaris/Makefile
+1
-2
src/backend/port/svr4/Makefile
src/backend/port/svr4/Makefile
+1
-2
src/backend/port/ultrix4/Makefile
src/backend/port/ultrix4/Makefile
+1
-2
src/backend/postmaster/Makefile
src/backend/postmaster/Makefile
+3
-2
src/backend/regex/Makefile
src/backend/regex/Makefile
+1
-2
src/backend/rewrite/Makefile
src/backend/rewrite/Makefile
+3
-2
src/backend/storage/buffer/Makefile
src/backend/storage/buffer/Makefile
+3
-2
src/backend/storage/file/Makefile
src/backend/storage/file/Makefile
+1
-2
src/backend/storage/ipc/Makefile
src/backend/storage/ipc/Makefile
+3
-2
src/backend/storage/large_object/Makefile
src/backend/storage/large_object/Makefile
+3
-2
src/backend/storage/lmgr/Makefile
src/backend/storage/lmgr/Makefile
+3
-2
src/backend/storage/page/Makefile
src/backend/storage/page/Makefile
+3
-2
src/backend/storage/smgr/Makefile
src/backend/storage/smgr/Makefile
+3
-2
src/backend/tcop/Makefile
src/backend/tcop/Makefile
+3
-2
src/backend/tioga/Makefile
src/backend/tioga/Makefile
+2
-2
src/backend/utils/Makefile
src/backend/utils/Makefile
+1
-2
src/backend/utils/error/Makefile
src/backend/utils/error/Makefile
+1
-2
src/backend/utils/fmgr/Makefile
src/backend/utils/fmgr/Makefile
+1
-2
src/backend/utils/hash/Makefile
src/backend/utils/hash/Makefile
+1
-2
src/backend/utils/init/Makefile
src/backend/utils/init/Makefile
+1
-2
src/backend/utils/mmgr/Makefile
src/backend/utils/mmgr/Makefile
+1
-2
src/backend/utils/sort/Makefile
src/backend/utils/sort/Makefile
+1
-2
src/backend/utils/time/Makefile
src/backend/utils/time/Makefile
+1
-2
src/bin/Makefile.global
src/bin/Makefile.global
+5
-6
src/bin/psql/Makefile
src/bin/psql/Makefile
+4
-4
src/interfaces/libpq/Makefile
src/interfaces/libpq/Makefile
+12
-12
No files found.
src/backend/access/heap/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for access/heap
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/access/heap/Makefile,v 1.
2 1996/10/31 08:28:50 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/access/heap/Makefile,v 1.
3 1996/11/09 06:17:34 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/access/transam/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for access/transam
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.
2 1996/11/03 09:07:03 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.
3 1996/11/09 06:17:38 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/bootstrap/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for the bootstrap module
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.
2 1996/11/08 05:55:46
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.
3 1996/11/09 06:17:44
momjian Exp $
#
#
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
...
...
@@ -23,7 +23,6 @@ include ../../Makefile.global
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../include
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
-Wno-error
...
...
src/backend/lib/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for lib (miscellaneous stuff)
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/lib/Makefile,v 1.
2 1996/10/31 10:26:26 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/lib/Makefile,v 1.
3 1996/11/09 06:17:54 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
INCLUDE_OPT
=
-I
../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/main/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for main
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/main/Makefile,v 1.
1 1996/10/27 09:47:59 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/main/Makefile,v 1.
2 1996/11/09 06:18:04 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../Makefile.global
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../include
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/optimizer/path/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for optimizer/path
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/optimizer/path/Makefile,v 1.
2 1996/10/31 10:58:58 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/optimizer/path/Makefile,v 1.
3 1996/11/09 06:18:10 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/optimizer/plan/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for optimizer/plan
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/optimizer/plan/Makefile,v 1.
2 1996/10/31 10:59:05 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/optimizer/plan/Makefile,v 1.
3 1996/11/09 06:18:17 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/optimizer/prep/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for optimizer/prep
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/optimizer/prep/Makefile,v 1.
2 1996/10/31 10:59:23 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/optimizer/prep/Makefile,v 1.
3 1996/11/09 06:18:23 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/parser/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for parser
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.
2 1996/11/08 05:57:18
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.
3 1996/11/09 06:18:34
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../Makefile.global
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../include
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
-Wno-error
...
...
src/backend/port/BSD44_derived/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/BSD44_derived
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/BSD44_derived/Attic/Makefile,v 1.
1 1996/10/27 09:49:20 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/BSD44_derived/Attic/Makefile,v 1.
2 1996/11/09 06:18:40 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/aix/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/aix
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/aix/Attic/Makefile,v 1.
1 1996/10/27 09:49:27 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/aix/Attic/Makefile,v 1.
2 1996/11/09 06:18:48 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/alpha/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/alpha
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/alpha/Attic/Makefile,v 1.
1 1996/10/27 09:49:37 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/alpha/Attic/Makefile,v 1.
2 1996/11/09 06:18:57 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/bsdi/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/bsdi
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/bsdi/Attic/Makefile,v 1.
3 1996/11/01 03:35:54
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/port/bsdi/Attic/Makefile,v 1.
4 1996/11/09 06:19:06
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/dgux/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/dgux
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/dgux/Attic/Makefile,v 1.
1 1996/10/27 09:49:57 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/dgux/Attic/Makefile,v 1.
2 1996/11/09 06:19:14 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/hpux/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/hpux
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/Makefile,v 1.
1 1996/10/27 09:50:12 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/hpux/Attic/Makefile,v 1.
2 1996/11/09 06:19:21 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/i386_solaris/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/i386_solaris
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/i386_solaris/Attic/Makefile,v 1.
1 1996/10/27 09:50:17 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/i386_solaris/Attic/Makefile,v 1.
2 1996/11/09 06:19:27 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/irix5/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/irix5
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/irix5/Attic/Makefile,v 1.
1 1996/10/27 09:50:24 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/irix5/Attic/Makefile,v 1.
2 1996/11/09 06:19:36 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/linux/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/linux
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/linux/Attic/Makefile,v 1.
1 1996/10/27 09:50:31 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/linux/Attic/Makefile,v 1.
2 1996/11/09 06:19:51 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/sparc/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/sparc
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/sparc/Attic/Makefile,v 1.
1 1996/10/27 09:50:43 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/sparc/Attic/Makefile,v 1.
2 1996/11/09 06:20:07 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/sparc_solaris/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/sparc_solaris
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/sparc_solaris/Attic/Makefile,v 1.
1 1996/10/27 09:50:50 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/sparc_solaris/Attic/Makefile,v 1.
2 1996/11/09 06:20:17 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/svr4/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/svr4
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/svr4/Attic/Makefile,v 1.
1 1996/10/27 09:50:57 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/svr4/Attic/Makefile,v 1.
2 1996/11/09 06:20:26 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/port/ultrix4/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for port/ultrix
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/ultrix4/Attic/Makefile,v 1.
1 1996/10/27 09:51:05 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/port/ultrix4/Attic/Makefile,v 1.
2 1996/11/09 06:20:36 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/postmaster/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for postmaster
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.
2 1996/11/03 04:48:27 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.
3 1996/11/09 06:20:48 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
INCLUDE_OPT
=
-I
../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/regex/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for regex
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/regex/Makefile,v 1.
1 1996/10/27 09:51:27 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/regex/Makefile,v 1.
2 1996/11/09 06:20:58 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../Makefile.global
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../include
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/rewrite/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for rewrite
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/rewrite/Makefile,v 1.
2 1996/11/03 04:51:50 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/rewrite/Makefile,v 1.
3 1996/11/09 06:21:12 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
INCLUDE_OPT
=
-I
../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/buffer/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for storage/buffer
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/buffer/Makefile,v 1.
2 1996/11/03 04:56:57 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/buffer/Makefile,v 1.
3 1996/11/09 06:21:30 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/file/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for storage/file
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/file/Makefile,v 1.
1 1996/10/27 09:52:01 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/file/Makefile,v 1.
2 1996/11/09 06:21:38 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/ipc/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for storage/ipc
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/ipc/Makefile,v 1.
2 1996/11/03 05:06:52 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/ipc/Makefile,v 1.
3 1996/11/09 06:21:47 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/large_object/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for storage/large_object
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/large_object/Makefile,v 1.
2 1996/11/03 05:07:07 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/large_object/Makefile,v 1.
3 1996/11/09 06:21:59 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/lmgr/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for storage/lmgr
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Makefile,v 1.
2 1996/11/03 05:07:19 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Makefile,v 1.
3 1996/11/09 06:22:05 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/page/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for storage/page
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/page/Makefile,v 1.
2 1996/11/03 05:07:43 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/page/Makefile,v 1.
3 1996/11/09 06:22:14 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/storage/smgr/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for storage/smgr
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/smgr/Makefile,v 1.
2 1996/11/03 05:07:50 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/smgr/Makefile,v 1.
3 1996/11/09 06:22:28 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../../..
include
../../../Makefile.global
INCLUDE_OPT
=
-I
../../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/tcop/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,15 @@
# Makefile for tcop
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.
4 1996/11/08 05:59:20
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.
5 1996/11/09 06:22:37
momjian Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
INCLUDE_OPT
=
-I
../port/
$(PORTNAME)
\
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
-Wno-error
...
...
src/backend/tioga/Makefile
View file @
a0990e18
...
...
@@ -4,14 +4,14 @@
# Makefile for tioga
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/tioga/Attic/Makefile,v 1.
2 1996/11/03 06:52:43 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/backend/tioga/Attic/Makefile,v 1.
3 1996/11/09 06:22:42 momjian
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
../..
include
../../Makefile.global
INCLUDE_OPT
=
INCLUDE_OPT
=
-I
..
\
-I
../port/
$(PORTNAME)
\
-I
../../include
...
...
src/backend/utils/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/Makefile,v 1.
3 1996/11/03 09:28:31 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/Makefile,v 1.
4 1996/11/09 06:22:52 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -12,7 +12,6 @@ SRCDIR = ../..
include
../../Makefile.global
INCLUDE_OPT
=
-I
..
\
-I
../include
\
-I
../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/error/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/error
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/error/Makefile,v 1.
1 1996/10/27 09:53:33 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/error/Makefile,v 1.
2 1996/11/09 06:23:02 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/fmgr/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/fmgr
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/fmgr/Makefile,v 1.
1 1996/10/27 09:53:40 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/fmgr/Makefile,v 1.
2 1996/11/09 06:23:18 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/hash/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/hash
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/hash/Makefile,v 1.
1 1996/10/27 09:53:48 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/hash/Makefile,v 1.
2 1996/11/09 06:23:33 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/init/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/init
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/init/Makefile,v 1.
1 1996/10/27 09:54:01 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/init/Makefile,v 1.
2 1996/11/09 06:23:41 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/mmgr/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/mmgr
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Makefile,v 1.
1 1996/10/27 09:54:06 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/mmgr/Makefile,v 1.
2 1996/11/09 06:23:50 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/sort/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/sort
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/sort/Makefile,v 1.
1 1996/10/27 09:54:15 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/sort/Makefile,v 1.
2 1996/11/09 06:24:04 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/backend/utils/time/Makefile
View file @
a0990e18
...
...
@@ -4,7 +4,7 @@
# Makefile for utils/time
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/utils/time/Makefile,v 1.
1 1996/10/27 09:54:25 bryanh
Exp $
# $Header: /cvsroot/pgsql/src/backend/utils/time/Makefile,v 1.
2 1996/11/09 06:24:12 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -13,7 +13,6 @@ include ../../../Makefile.global
INCLUDE_OPT
=
-I
../..
\
-I
../../port/
$(PORTNAME)
\
-I
../../include
\
-I
../../../include
CFLAGS
+=
$(INCLUDE_OPT)
...
...
src/bin/Makefile.global
View file @
a0990e18
...
...
@@ -7,24 +7,23 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.
8 1996/08/28 23:00:07 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.
9 1996/11/09 06:24:23 momjian
Exp $
#
#-------------------------------------------------------------------------
CFLAGS
+=
-I
$(srcdir)
/backend
\
-I
$(srcdir)
/backend/include
\
-I
$(srcdir)
/libpq
\
-I
$(srcdir)
/include
-I
$(srcdir)
/include
\
-I
$(srcdir)
/libpq
#
# link with libpq, so we put it here.
#
LIBPQ
:=
-L
$(srcdir)
/libpq
/
$(objdir)
-lpq
LIBPQ
:=
-L
$(srcdir)
/libpq
-lpq
LD_ADD
+=
$(LIBPQ)
DPADD
+=
$(LIBPQ)
# LIB_DEP is the list of dependencies on libraries for the link.
LIB_DEP
+=
$(srcdir)
/libpq/
$(objdir)
/
libpq.a
LIB_DEP
+=
$(srcdir)
/libpq/libpq.a
#
# And where libpq goes, so goes the authentication stuff...
...
...
src/bin/psql/Makefile
View file @
a0990e18
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.
9 1996/11/08 06:01:27
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.
10 1996/11/09 06:24:39
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -65,10 +65,10 @@ endif
all
:
psql
psql
:
$(OBJS) $(LIBPQDIR)/
obj/
libpq.a
$(CC)
$(LDFLAGS)
-o
psql
-L
$(LIBPQDIR)
/obj
$(OBJS)
-lpq
$(LD_ADD)
psql
:
$(OBJS) $(LIBPQDIR)/libpq.a
$(CC)
$(LDFLAGS)
-o
psql
-L
$(LIBPQDIR)
$(OBJS)
-lpq
$(LD_ADD)
$(srcdir)/libpq/
obj/
libpq.a
:
$(srcdir)/libpq/libpq.a
:
$(MAKE)
-C
$(LIBPQDIR)
libpq.a
install
:
...
...
src/interfaces/libpq/Makefile
View file @
a0990e18
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.1
4 1996/11/08 21:40:1
1 momjian Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.1
5 1996/11/09 06:24:5
1 momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -36,19 +36,19 @@ endif
shlib
:=
ifdef
LINUX_ELF
ifeq
($(PORTNAME), linux)
shlib
:=
obj/
libpq.so.1
shlib
:=
libpq.so.1
endif
endif
all
:
obj/
libpq.a $(shlib) postgres.h c.h
all
:
libpq.a $(shlib) postgres.h c.h
obj/
libpq.a
:
$(OBJS)
libpq.a
:
$(OBJS)
ifdef
MK_NO_LORDER
$(AR)
$(AROPT)
obj/
libpq.a
$(OBJS)
$(AR)
$(AROPT)
libpq.a
$(OBJS)
else
$(AR)
$(AROPT)
obj/
libpq.a
`
lorder
$(OBJS)
|
tsort
`
$(AR)
$(AROPT)
libpq.a
`
lorder
$(OBJS)
|
tsort
`
endif
$(RANLIB)
obj/
libpq.a
$(RANLIB)
libpq.a
fe-lobj.o
::
../backend/fmgr.h
...
...
@@ -61,8 +61,8 @@ fe-lobj.o:: ../backend/fmgr.h
../backend/lib/dllist.o
:
$(MAKE)
-C
../backend/lib dllist.o
obj/
libpq.so.1
:
$(OBJS)
$(CC)
$(LDFLAGS)
-shared
$(OBJS)
-o
obj/
libpq.so.1
libpq.so.1
:
$(OBJS)
$(CC)
$(LDFLAGS)
-shared
$(OBJS)
-o
libpq.so.1
postgres.h
:
../include/postgres.h
# Note: ../backend/include/postgres.h needs to be named something different
...
...
@@ -128,17 +128,17 @@ install-shlib-dep :=
endif
install-libpq
:
$(INSTALL)
$(INSTL_LIB_OPTS)
obj/
libpq.a
$(DESTDIR)$(LIBDIR)
/libpq.a
$(INSTALL)
$(INSTL_LIB_OPTS)
libpq.a
$(DESTDIR)$(LIBDIR)
/libpq.a
install-shlib
:
$(INSTALL)
$(INSTL_LIB_OPTS)
obj/
libpq.so.1
$(DESTDIR)$(LIBDIR)
/libpq.so.1
$(INSTALL)
$(INSTL_LIB_OPTS)
libpq.so.1
$(DESTDIR)$(LIBDIR)
/libpq.so.1
depend dep
:
$(CC)
-MM
$(INCLUDE_OPT)
*
.c
>
depend
.PHONY
:
clean
clean
:
rm
-f
obj/libpq.a obj/
libpq.so.1
$(OBJS)
c.h postgres.h
rm
-f
libpq.a
libpq.so.1
$(OBJS)
c.h postgres.h
ifeq
(depend,$(wildcard depend))
include
depend
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment