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
0474dcb6
Commit
0474dcb6
authored
Feb 19, 2008
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor backend makefiles to remove lots of duplicate code
parent
a74e0414
Changes
53
Hide whitespace changes
Inline
Side-by-side
Showing
53 changed files
with
137 additions
and
443 deletions
+137
-443
src/backend/access/Makefile
src/backend/access/Makefile
+2
-16
src/backend/access/common/Makefile
src/backend/access/common/Makefile
+2
-6
src/backend/access/gin/Makefile
src/backend/access/gin/Makefile
+2
-8
src/backend/access/gist/Makefile
src/backend/access/gist/Makefile
+2
-8
src/backend/access/hash/Makefile
src/backend/access/hash/Makefile
+2
-8
src/backend/access/heap/Makefile
src/backend/access/heap/Makefile
+2
-8
src/backend/access/index/Makefile
src/backend/access/index/Makefile
+2
-8
src/backend/access/nbtree/Makefile
src/backend/access/nbtree/Makefile
+2
-8
src/backend/access/transam/Makefile
src/backend/access/transam/Makefile
+2
-8
src/backend/bootstrap/Makefile
src/backend/bootstrap/Makefile
+2
-6
src/backend/catalog/Makefile
src/backend/catalog/Makefile
+4
-5
src/backend/commands/Makefile
src/backend/commands/Makefile
+2
-8
src/backend/common.mk
src/backend/common.mk
+25
-0
src/backend/executor/Makefile
src/backend/executor/Makefile
+2
-8
src/backend/lib/Makefile
src/backend/lib/Makefile
+2
-8
src/backend/libpq/Makefile
src/backend/libpq/Makefile
+2
-9
src/backend/main/Makefile
src/backend/main/Makefile
+2
-8
src/backend/nodes/Makefile
src/backend/nodes/Makefile
+2
-8
src/backend/optimizer/Makefile
src/backend/optimizer/Makefile
+2
-16
src/backend/optimizer/geqo/Makefile
src/backend/optimizer/geqo/Makefile
+2
-8
src/backend/optimizer/path/Makefile
src/backend/optimizer/path/Makefile
+2
-8
src/backend/optimizer/plan/Makefile
src/backend/optimizer/plan/Makefile
+2
-8
src/backend/optimizer/prep/Makefile
src/backend/optimizer/prep/Makefile
+2
-8
src/backend/optimizer/util/Makefile
src/backend/optimizer/util/Makefile
+2
-8
src/backend/parser/Makefile
src/backend/parser/Makefile
+2
-7
src/backend/port/Makefile
src/backend/port/Makefile
+3
-6
src/backend/postmaster/Makefile
src/backend/postmaster/Makefile
+2
-8
src/backend/regex/Makefile
src/backend/regex/Makefile
+2
-8
src/backend/rewrite/Makefile
src/backend/rewrite/Makefile
+2
-8
src/backend/storage/Makefile
src/backend/storage/Makefile
+2
-16
src/backend/storage/buffer/Makefile
src/backend/storage/buffer/Makefile
+2
-8
src/backend/storage/file/Makefile
src/backend/storage/file/Makefile
+2
-8
src/backend/storage/freespace/Makefile
src/backend/storage/freespace/Makefile
+2
-8
src/backend/storage/ipc/Makefile
src/backend/storage/ipc/Makefile
+2
-8
src/backend/storage/large_object/Makefile
src/backend/storage/large_object/Makefile
+2
-8
src/backend/storage/lmgr/Makefile
src/backend/storage/lmgr/Makefile
+3
-6
src/backend/storage/page/Makefile
src/backend/storage/page/Makefile
+2
-8
src/backend/storage/smgr/Makefile
src/backend/storage/smgr/Makefile
+2
-8
src/backend/tcop/Makefile
src/backend/tcop/Makefile
+2
-8
src/backend/tsearch/Makefile
src/backend/tsearch/Makefile
+2
-15
src/backend/utils/Makefile
src/backend/utils/Makefile
+5
-13
src/backend/utils/adt/Makefile
src/backend/utils/adt/Makefile
+2
-8
src/backend/utils/cache/Makefile
src/backend/utils/cache/Makefile
+2
-8
src/backend/utils/error/Makefile
src/backend/utils/error/Makefile
+2
-8
src/backend/utils/fmgr/Makefile
src/backend/utils/fmgr/Makefile
+2
-9
src/backend/utils/hash/Makefile
src/backend/utils/hash/Makefile
+2
-8
src/backend/utils/init/Makefile
src/backend/utils/init/Makefile
+2
-8
src/backend/utils/mb/Makefile
src/backend/utils/mb/Makefile
+3
-10
src/backend/utils/misc/Makefile
src/backend/utils/misc/Makefile
+2
-7
src/backend/utils/mmgr/Makefile
src/backend/utils/mmgr/Makefile
+2
-8
src/backend/utils/resowner/Makefile
src/backend/utils/resowner/Makefile
+2
-8
src/backend/utils/sort/Makefile
src/backend/utils/sort/Makefile
+2
-8
src/backend/utils/time/Makefile
src/backend/utils/time/Makefile
+2
-8
No files found.
src/backend/access/Makefile
View file @
0474dcb6
#
#
# Makefile for the access methods module
# Makefile for the access methods module
#
#
# $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.1
3 2007/02/09 15:55:58
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.1
4 2008/02/19 10:30:06
petere Exp $
#
#
subdir
=
src/backend/access
subdir
=
src/backend/access
...
@@ -9,19 +9,5 @@ top_builddir = ../../..
...
@@ -9,19 +9,5 @@ top_builddir = ../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
SUBDIRS
=
common gist
hash
heap index nbtree transam gin
SUBDIRS
=
common gist
hash
heap index nbtree transam gin
SUBDIROBJS
=
$
(
SUBDIRS:%
=
%/SUBSYS.o
)
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(SUBDIROBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
$(SUBDIROBJS)
:
$(SUBDIRS:%=%-recursive) ;
.PHONY
:
$(SUBDIRS:%=%-recursive)
$(SUBDIRS
:
%=%-recursive):
$(MAKE)
-C
$(
subst
-recursive
,,
$@
)
SUBSYS.o
clean
:
for
dir
in
$(SUBDIRS)
;
do
$(MAKE)
-C
$$
dir
$@
||
exit
;
done
rm
-f
SUBSYS.o
src/backend/access/common/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/common
# Makefile for access/common
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/common/Makefile,v 1.2
3 2007/01/20 17:16:10
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/common/Makefile,v 1.2
4 2008/02/19 10:30:06
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,8 +16,4 @@ OBJS = heaptuple.o indextuple.o printtup.o reloptions.o scankey.o tupdesc.o
...
@@ -16,8 +16,4 @@ OBJS = heaptuple.o indextuple.o printtup.o reloptions.o scankey.o tupdesc.o
all
:
SUBSYS.o
all
:
SUBSYS.o
SUBSYS.o
:
$(OBJS)
include
$(top_srcdir)/src/backend/common.mk
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/gin/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/gin
# Makefile for access/gin
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/gin/Makefile,v 1.
2 2007/01/20 17:16:10
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/gin/Makefile,v 1.
3 2008/02/19 10:30:06
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,10 +16,4 @@ OBJS = ginutil.o gininsert.o ginxlog.o ginentrypage.o gindatapage.o \
...
@@ -16,10 +16,4 @@ OBJS = ginutil.o gininsert.o ginxlog.o ginentrypage.o gindatapage.o \
ginbtree.o ginscan.o ginget.o ginvacuum.o ginarrayproc.o
\
ginbtree.o ginscan.o ginget.o ginvacuum.o ginarrayproc.o
\
ginbulk.o
ginbulk.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/gist/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/gist
# Makefile for access/gist
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.1
7 2007/01/20 17:16:10
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.1
8 2008/02/19 10:30:06
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
gist.o gistutil.o gistxlog.o gistvacuum.o gistget.o gistscan.o
\
OBJS
=
gist.o gistutil.o gistxlog.o gistvacuum.o gistget.o gistscan.o
\
gistproc.o gistsplit.o
gistproc.o gistsplit.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/hash/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/hash
# Makefile for access/hash
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/hash/Makefile,v 1.1
3 2007/01/20 17:16:10
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/hash/Makefile,v 1.1
4 2008/02/19 10:30:06
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
hash.o hashfunc.o hashinsert.o hashovfl.o hashpage.o hashscan.o
\
OBJS
=
hash.o hashfunc.o hashinsert.o hashovfl.o hashpage.o hashscan.o
\
hashsearch.o hashutil.o
hashsearch.o hashutil.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/heap/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/heap
# Makefile for access/heap
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/heap/Makefile,v 1.1
7 2007/09/20 17:56:30 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/access/heap/Makefile,v 1.1
8 2008/02/19 10:30:06 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
heapam.o hio.o pruneheap.o rewriteheap.o syncscan.o tuptoaster.o
OBJS
=
heapam.o hio.o pruneheap.o rewriteheap.o syncscan.o tuptoaster.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/index/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/index
# Makefile for access/index
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/index/Makefile,v 1.1
3 2007/01/20 17:16:10
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/index/Makefile,v 1.1
4 2008/02/19 10:30:06
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
genam.o indexam.o
OBJS
=
genam.o indexam.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/nbtree/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/nbtree
# Makefile for access/nbtree
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/nbtree/Makefile,v 1.1
5 2007/01/20 17:16:10
petere Exp $
# $PostgreSQL: pgsql/src/backend/access/nbtree/Makefile,v 1.1
6 2008/02/19 10:30:06
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
nbtcompare.o nbtinsert.o nbtpage.o nbtree.o nbtsearch.o
\
OBJS
=
nbtcompare.o nbtinsert.o nbtpage.o nbtree.o nbtsearch.o
\
nbtutils.o nbtsort.o nbtxlog.o
nbtutils.o nbtsort.o nbtxlog.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/access/transam/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for access/transam
# Makefile for access/transam
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/access/transam/Makefile,v 1.2
1 2005/06/17 22:32:42 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/access/transam/Makefile,v 1.2
2 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,13 +14,7 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,13 +14,7 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
clog.o transam.o varsup.o xact.o xlog.o xlogutils.o rmgr.o slru.o subtrans.o multixact.o twophase.o twophase_rmgr.o
OBJS
=
clog.o transam.o varsup.o xact.o xlog.o xlogutils.o rmgr.o slru.o subtrans.o multixact.o twophase.o twophase_rmgr.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
# ensure that version checks in xlog.c get recompiled when catversion.h changes
# ensure that version checks in xlog.c get recompiled when catversion.h changes
xlog.o
:
xlog.c $(top_srcdir)/src/include/catalog/catversion.h
xlog.o
:
xlog.c $(top_srcdir)/src/include/catalog/catversion.h
src/backend/bootstrap/Makefile
View file @
0474dcb6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#
#
# Makefile for the bootstrap module
# Makefile for the bootstrap module
#
#
# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.3
5 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.3
6 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,7 @@ override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
...
@@ -14,10 +14,7 @@ override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
OBJS
=
bootparse.o bootstrap.o
OBJS
=
bootparse.o bootstrap.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
# bootscanner is compiled as part of bootparse
# bootscanner is compiled as part of bootparse
...
@@ -50,6 +47,5 @@ bootstrap.o bootparse.o: $(srcdir)/bootstrap_tokens.h
...
@@ -50,6 +47,5 @@ bootstrap.o bootparse.o: $(srcdir)/bootstrap_tokens.h
# bootparse.c, bootstrap_tokens.h, and bootscanner.c are in the distribution
# bootparse.c, bootstrap_tokens.h, and bootscanner.c are in the distribution
# tarball, so they are not cleaned here.
# tarball, so they are not cleaned here.
clean
:
clean
:
rm
-f
SUBSYS.o
$(OBJS)
# And the garbage that might have been left behind by partial build:
# And the garbage that might have been left behind by partial build:
@rm
-f
y.tab.h
y.tab.c
y.output
lex.yy.c
@rm
-f
y.tab.h
y.tab.c
y.output
lex.yy.c
src/backend/catalog/Makefile
View file @
0474dcb6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#
#
# Makefile for backend/catalog
# Makefile for backend/catalog
#
#
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.6
5 2007/08/21 01:11:13 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.6
6 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -17,10 +17,9 @@ OBJS = catalog.o dependency.o heap.o index.o indexing.o namespace.o aclchk.o \
...
@@ -17,10 +17,9 @@ OBJS = catalog.o dependency.o heap.o index.o indexing.o namespace.o aclchk.o \
BKIFILES
=
postgres.bki postgres.description postgres.shdescription
BKIFILES
=
postgres.bki postgres.description postgres.shdescription
all
:
SUBSYS.o $(BKIFILES)
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
all
:
$(BKIFILES)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
# Note: there are some undocumented dependencies on the ordering in which
# Note: there are some undocumented dependencies on the ordering in which
# the catalog header files are assembled into postgres.bki. In particular,
# the catalog header files are assembled into postgres.bki. In particular,
...
@@ -67,4 +66,4 @@ uninstall-data:
...
@@ -67,4 +66,4 @@ uninstall-data:
rm
-f
$(
addprefix
'
$(DESTDIR)$(datadir)
'
/,
$(BKIFILES)
system_views.sql information_schema.sql sql_features.txt
)
rm
-f
$(
addprefix
'
$(DESTDIR)$(datadir)
'
/,
$(BKIFILES)
system_views.sql information_schema.sql sql_features.txt
)
clean
:
clean
:
rm
-f
SUBSYS.o
$(OBJS)
$(BKIFILES)
rm
-f
$(BKIFILES)
src/backend/commands/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for backend/commands
# Makefile for backend/commands
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/commands/Makefile,v 1.3
7 2007/08/21 01:11:14 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/commands/Makefile,v 1.3
8 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -21,10 +21,4 @@ OBJS = aggregatecmds.o alter.o analyze.o async.o cluster.o comment.o \
...
@@ -21,10 +21,4 @@ OBJS = aggregatecmds.o alter.o analyze.o async.o cluster.o comment.o \
tsearchcmds.o typecmds.o user.o vacuum.o vacuumlazy.o
\
tsearchcmds.o typecmds.o user.o vacuum.o vacuumlazy.o
\
variable.o view.o
variable.o view.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/common.mk
0 → 100644
View file @
0474dcb6
#
# Common make rules for backend
#
# $PostgreSQL: pgsql/src/backend/common.mk,v 1.1 2008/02/19 10:30:06 petere Exp $
#
SUBDIROBJS
=
$
(
SUBDIRS:%
=
%/SUBSYS.o
)
all
:
SUBSYS.o
SUBSYS.o
:
$(SUBDIROBJS) $(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
$(SUBDIROBJS)
:
$(SUBDIRS:%=%-recursive) ;
.PHONY
:
$(SUBDIRS:%=%-recursive)
$(SUBDIRS
:
%=%-recursive):
$(MAKE)
-C
$(
subst
-recursive
,,
$@
)
SUBSYS.o
clean
:
clean-local
clean-local
:
ifdef
SUBDIRS
for
dir
in
$(SUBDIRS)
;
do
$(MAKE)
-C
$$
dir
clean
||
exit
;
done
endif
rm
-f
SUBSYS.o
$(OBJS)
src/backend/executor/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for executor
# Makefile for executor
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/executor/Makefile,v 1.2
6 2007/06/11 01:16:22 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/executor/Makefile,v 1.2
7 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -23,10 +23,4 @@ OBJS = execAmi.o execCurrent.o execGrouping.o execJunk.o execMain.o \
...
@@ -23,10 +23,4 @@ OBJS = execAmi.o execCurrent.o execGrouping.o execJunk.o execMain.o \
nodeValuesscan.o nodeLimit.o nodeGroup.o
\
nodeValuesscan.o nodeLimit.o nodeGroup.o
\
nodeSubplan.o nodeSubqueryscan.o nodeTidscan.o tstoreReceiver.o spi.o
nodeSubplan.o nodeSubqueryscan.o nodeTidscan.o tstoreReceiver.o spi.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/lib/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for lib (miscellaneous stuff)
# Makefile for lib (miscellaneous stuff)
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/lib/Makefile,v 1.2
0 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/lib/Makefile,v 1.2
1 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
dllist.o stringinfo.o
OBJS
=
dllist.o stringinfo.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/libpq/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for libpq subsystem (backend half of libpq interface)
# Makefile for libpq subsystem (backend half of libpq interface)
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/libpq/Makefile,v 1.3
8 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/libpq/Makefile,v 1.3
9 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -17,11 +17,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -17,11 +17,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
be-fsstubs.o be-secure.o auth.o crypt.o hba.o ip.o md5.o pqcomm.o
\
OBJS
=
be-fsstubs.o be-secure.o auth.o crypt.o hba.o ip.o md5.o pqcomm.o
\
pqformat.o pqsignal.o
pqformat.o pqsignal.o
include
$(top_srcdir)/src/backend/common.mk
all
:
SUBSYS.o
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/main/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for main
# Makefile for main
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/main/Makefile,v 1.1
1 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/main/Makefile,v 1.1
2 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
main.o
OBJS
=
main.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/nodes/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for backend/nodes
# Makefile for backend/nodes
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/nodes/Makefile,v 1.
19 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/nodes/Makefile,v 1.
20 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,10 +16,4 @@ OBJS = nodeFuncs.o nodes.o list.o bitmapset.o tidbitmap.o \
...
@@ -16,10 +16,4 @@ OBJS = nodeFuncs.o nodes.o list.o bitmapset.o tidbitmap.o \
copyfuncs.o equalfuncs.o makefuncs.o
\
copyfuncs.o equalfuncs.o makefuncs.o
\
outfuncs.o readfuncs.o print.o read.o params.o value.o
outfuncs.o readfuncs.o print.o read.o params.o value.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/optimizer/Makefile
View file @
0474dcb6
#
#
# Makefile for optimizer
# Makefile for optimizer
#
#
# $PostgreSQL: pgsql/src/backend/optimizer/Makefile,v 1.1
3 2007/02/09 15:55:58
petere Exp $
# $PostgreSQL: pgsql/src/backend/optimizer/Makefile,v 1.1
4 2008/02/19 10:30:07
petere Exp $
#
#
subdir
=
src/backend/optimizer
subdir
=
src/backend/optimizer
...
@@ -9,19 +9,5 @@ top_builddir = ../../..
...
@@ -9,19 +9,5 @@ top_builddir = ../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
SUBDIRS
=
geqo path plan prep util
SUBDIRS
=
geqo path plan prep util
SUBDIROBJS
=
$
(
SUBDIRS:%
=
%/SUBSYS.o
)
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(SUBDIROBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
$(SUBDIROBJS)
:
$(SUBDIRS:%=%-recursive) ;
.PHONY
:
$(SUBDIRS:%=%-recursive)
$(SUBDIRS
:
%=%-recursive):
$(MAKE)
-C
$(
subst
-recursive
,,
$@
)
SUBSYS.o
clean
:
for
dir
in
$(SUBDIRS)
;
do
$(MAKE)
-C
$$
dir
$@
||
exit
;
done
rm
-f
SUBSYS.o
src/backend/optimizer/geqo/Makefile
View file @
0474dcb6
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
#
#
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/backend/optimizer/geqo/Makefile,v 1.
19 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/optimizer/geqo/Makefile,v 1.
20 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -18,10 +18,4 @@ OBJS = geqo_copy.o geqo_eval.o geqo_main.o geqo_misc.o \
...
@@ -18,10 +18,4 @@ OBJS = geqo_copy.o geqo_eval.o geqo_main.o geqo_misc.o \
geqo_selection.o
\
geqo_selection.o
\
geqo_erx.o geqo_pmx.o geqo_cx.o geqo_px.o geqo_ox1.o geqo_ox2.o
geqo_erx.o geqo_pmx.o geqo_cx.o geqo_px.o geqo_ox1.o geqo_ox2.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/optimizer/path/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for optimizer/path
# Makefile for optimizer/path
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/optimizer/path/Makefile,v 1.1
8 2007/01/20 20:45:38 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/optimizer/path/Makefile,v 1.1
9 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
allpaths.o clausesel.o costsize.o equivclass.o indxpath.o
\
OBJS
=
allpaths.o clausesel.o costsize.o equivclass.o indxpath.o
\
joinpath.o joinrels.o orindxpath.o pathkeys.o tidpath.o
joinpath.o joinrels.o orindxpath.o pathkeys.o tidpath.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/optimizer/plan/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for optimizer/plan
# Makefile for optimizer/plan
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/optimizer/plan/Makefile,v 1.1
4 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/optimizer/plan/Makefile,v 1.1
5 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
createplan.o initsplan.o planagg.o planmain.o planner.o
\
OBJS
=
createplan.o initsplan.o planagg.o planmain.o planner.o
\
setrefs.o subselect.o
setrefs.o subselect.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/optimizer/prep/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for optimizer/prep
# Makefile for optimizer/prep
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/optimizer/prep/Makefile,v 1.1
6 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/optimizer/prep/Makefile,v 1.1
7 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
prepjointree.o prepqual.o preptlist.o prepunion.o
OBJS
=
prepjointree.o prepqual.o preptlist.o prepunion.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/optimizer/util/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for optimizer/util
# Makefile for optimizer/util
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/optimizer/util/Makefile,v 1.1
7 2007/01/20 17:16:11
petere Exp $
# $PostgreSQL: pgsql/src/backend/optimizer/util/Makefile,v 1.1
8 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
clauses.o joininfo.o pathnode.o plancat.o predtest.o
\
OBJS
=
clauses.o joininfo.o pathnode.o plancat.o predtest.o
\
relnode.o restrictinfo.o tlist.o var.o
relnode.o restrictinfo.o tlist.o var.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/parser/Makefile
View file @
0474dcb6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
#
#
# Makefile for parser
# Makefile for parser
#
#
# $PostgreSQL: pgsql/src/backend/parser/Makefile,v 1.4
5 2007/06/23 22:12:51 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/parser/Makefile,v 1.4
6 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -18,11 +18,7 @@ OBJS= analyze.o gram.o keywords.o parser.o parse_agg.o parse_clause.o \
...
@@ -18,11 +18,7 @@ OBJS= analyze.o gram.o keywords.o parser.o parse_agg.o parse_clause.o \
FLEXFLAGS
=
-CF
FLEXFLAGS
=
-CF
include
$(top_srcdir)/src/backend/common.mk
all
:
SUBSYS.o
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
# scan is compiled as part of gram
# scan is compiled as part of gram
...
@@ -63,6 +59,5 @@ gram.o keywords.o parser.o: $(srcdir)/parse.h
...
@@ -63,6 +59,5 @@ gram.o keywords.o parser.o: $(srcdir)/parse.h
# gram.c, parse.h, and scan.c are in the distribution tarball, so they
# gram.c, parse.h, and scan.c are in the distribution tarball, so they
# are not cleaned here.
# are not cleaned here.
clean
:
clean
:
rm
-f
SUBSYS.o
$(OBJS)
# And the garbage that might have been left behind by partial build:
# And the garbage that might have been left behind by partial build:
@rm
-f
y.tab.h
y.tab.c
y.output
lex.yy.c
@rm
-f
y.tab.h
y.tab.c
y.output
lex.yy.c
src/backend/port/Makefile
View file @
0474dcb6
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
# be converted to Method 2.
# be converted to Method 2.
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/port/Makefile,v 1.2
4 2007/01/07 08:49:31
petere Exp $
# $PostgreSQL: pgsql/src/backend/port/Makefile,v 1.2
5 2008/02/19 10:30:07
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -32,10 +32,7 @@ ifeq ($(PORTNAME), win32)
...
@@ -32,10 +32,7 @@ ifeq ($(PORTNAME), win32)
OBJS
+=
win32/SUBSYS.o
OBJS
+=
win32/SUBSYS.o
endif
endif
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
darwin/SUBSYS.o
:
darwin.dir
darwin/SUBSYS.o
:
darwin.dir
...
@@ -62,6 +59,6 @@ ipc_test: ipc_test.o pg_sema.o pg_shmem.o
...
@@ -62,6 +59,6 @@ ipc_test: ipc_test.o pg_sema.o pg_shmem.o
$(CC)
$(CFLAGS)
$(LDFLAGS)
$(export_dynamic)
$^
$(LIBS)
-o
$@
$(CC)
$(CFLAGS)
$(LDFLAGS)
$(export_dynamic)
$^
$(LIBS)
-o
$@
distclean clean
:
distclean clean
:
rm
-f
SUBSYS.o
$(OBJS)
ipc_test ipc_test.o tas_cpp.s
rm
-f
ipc_test ipc_test.o tas_cpp.s
$(MAKE)
-C
darwin clean
$(MAKE)
-C
darwin clean
$(MAKE)
-C
win32 clean
$(MAKE)
-C
win32 clean
src/backend/postmaster/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for src/backend/postmaster
# Makefile for src/backend/postmaster
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/postmaster/Makefile,v 1.2
3 2007/07/24 04:54:09 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/postmaster/Makefile,v 1.2
4 2008/02/19 10:30:07 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
autovacuum.o bgwriter.o fork_process.o pgarch.o pgstat.o postmaster.o
\
OBJS
=
autovacuum.o bgwriter.o fork_process.o pgarch.o pgstat.o postmaster.o
\
syslogger.o walwriter.o
syslogger.o walwriter.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/regex/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for backend/regex
# Makefile for backend/regex
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/regex/Makefile,v 1.2
1 2003/11/29 19:51:55 pgsql
Exp $
# $PostgreSQL: pgsql/src/backend/regex/Makefile,v 1.2
2 2008/02/19 10:30:08 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,15 +14,9 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,15 +14,9 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
regcomp.o regerror.o regexec.o regfree.o
OBJS
=
regcomp.o regerror.o regexec.o regfree.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
# mark inclusion dependencies between .c files explicitly
# mark inclusion dependencies between .c files explicitly
regcomp.o
:
regcomp.c regc_lex.c regc_color.c regc_nfa.c regc_cvec.c regc_locale.c
regcomp.o
:
regcomp.c regc_lex.c regc_color.c regc_nfa.c regc_cvec.c regc_locale.c
regexec.o
:
regexec.c rege_dfa.c
regexec.o
:
regexec.c rege_dfa.c
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/rewrite/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for rewrite
# Makefile for rewrite
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/rewrite/Makefile,v 1.1
6 2007/01/20 17:16:12
petere Exp $
# $PostgreSQL: pgsql/src/backend/rewrite/Makefile,v 1.1
7 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
rewriteRemove.o rewriteDefine.o
\
OBJS
=
rewriteRemove.o rewriteDefine.o
\
rewriteHandler.o rewriteManip.o rewriteSupport.o
rewriteHandler.o rewriteManip.o rewriteSupport.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/Makefile
View file @
0474dcb6
#
#
# Makefile for the storage manager subsystem
# Makefile for the storage manager subsystem
#
#
# $PostgreSQL: pgsql/src/backend/storage/Makefile,v 1.1
3 2007/02/09 15:55:5
8 petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/Makefile,v 1.1
4 2008/02/19 10:30:0
8 petere Exp $
#
#
subdir
=
src/backend/storage
subdir
=
src/backend/storage
...
@@ -9,19 +9,5 @@ top_builddir = ../../..
...
@@ -9,19 +9,5 @@ top_builddir = ../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
SUBDIRS
=
buffer file freespace ipc large_object lmgr page smgr
SUBDIRS
=
buffer file freespace ipc large_object lmgr page smgr
SUBDIROBJS
=
$
(
SUBDIRS:%
=
%/SUBSYS.o
)
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(SUBDIROBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
$(SUBDIROBJS)
:
$(SUBDIRS:%=%-recursive) ;
.PHONY
:
$(SUBDIRS:%=%-recursive)
$(SUBDIRS
:
%=%-recursive):
$(MAKE)
-C
$(
subst
-recursive
,,
$@
)
SUBSYS.o
clean
:
for
dir
in
$(SUBDIRS)
;
do
$(MAKE)
-C
$$
dir
$@
||
exit
;
done
rm
-f
SUBSYS.o
src/backend/storage/buffer/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/buffer
# Makefile for storage/buffer
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/buffer/Makefile,v 1.1
8 2007/01/20 17:16:12
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/buffer/Makefile,v 1.1
9 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
buf_table.o buf_init.o bufmgr.o freelist.o localbuf.o
OBJS
=
buf_table.o buf_init.o bufmgr.o freelist.o localbuf.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/file/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/file
# Makefile for storage/file
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/file/Makefile,v 1.1
2 2007/01/20 17:16:12
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/file/Makefile,v 1.1
3 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
fd.o buffile.o
OBJS
=
fd.o buffile.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/freespace/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/freespace
# Makefile for storage/freespace
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/freespace/Makefile,v 1.
3 2007/01/20 17:16:12
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/freespace/Makefile,v 1.
4 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
freespace.o
OBJS
=
freespace.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/ipc/Makefile
View file @
0474dcb6
#
#
# Makefile for storage/ipc
# Makefile for storage/ipc
#
#
# $PostgreSQL: pgsql/src/backend/storage/ipc/Makefile,v 1.2
0 2007/01/20 17:16:12
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/ipc/Makefile,v 1.2
1 2008/02/19 10:30:08
petere Exp $
#
#
subdir
=
src/backend/storage/ipc
subdir
=
src/backend/storage/ipc
...
@@ -18,10 +18,4 @@ endif
...
@@ -18,10 +18,4 @@ endif
OBJS
=
ipc.o ipci.o pmsignal.o procarray.o shmem.o shmqueue.o
\
OBJS
=
ipc.o ipci.o pmsignal.o procarray.o shmem.o shmqueue.o
\
sinval.o sinvaladt.o
sinval.o sinvaladt.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/large_object/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/large_object
# Makefile for storage/large_object
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/large_object/Makefile,v 1.1
2 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/large_object/Makefile,v 1.1
3 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
inv_api.o
OBJS
=
inv_api.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/lmgr/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/lmgr
# Makefile for storage/lmgr
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/lmgr/Makefile,v 1.2
2 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/lmgr/Makefile,v 1.2
3 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,7 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,7 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
lmgr.o lock.o proc.o deadlock.o lwlock.o spin.o s_lock.o
OBJS
=
lmgr.o lock.o proc.o deadlock.o lwlock.o spin.o s_lock.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
ifdef
TAS
ifdef
TAS
TASPATH
=
$(top_builddir)
/src/backend/port/tas.o
TASPATH
=
$(top_builddir)
/src/backend/port/tas.o
...
@@ -31,4 +28,4 @@ check: s_lock_test
...
@@ -31,4 +28,4 @@ check: s_lock_test
./s_lock_test
./s_lock_test
clean distclean maintainer-clean
:
clean distclean maintainer-clean
:
rm
-f
SUBSYS.o
$(OBJS)
s_lock_test
rm
-f
s_lock_test
src/backend/storage/page/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/page
# Makefile for storage/page
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/page/Makefile,v 1.1
2 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/page/Makefile,v 1.1
3 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
bufpage.o itemptr.o
OBJS
=
bufpage.o itemptr.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/storage/smgr/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for storage/smgr
# Makefile for storage/smgr
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/storage/smgr/Makefile,v 1.1
6 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/storage/smgr/Makefile,v 1.1
7 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
md.o smgr.o smgrtype.o
OBJS
=
md.o smgr.o smgrtype.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/tcop/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for tcop
# Makefile for tcop
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/tcop/Makefile,v 1.2
8 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/tcop/Makefile,v 1.2
9 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -18,10 +18,4 @@ ifneq (,$(filter $(PORTNAME),cygwin win32))
...
@@ -18,10 +18,4 @@ ifneq (,$(filter $(PORTNAME),cygwin win32))
override
CPPFLAGS
+=
-DWIN32_STACK_RLIMIT
=
$(WIN32_STACK_RLIMIT)
override
CPPFLAGS
+=
-DWIN32_STACK_RLIMIT
=
$(WIN32_STACK_RLIMIT)
endif
endif
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/tsearch/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
#
#
# Copyright (c) 2006-2008, PostgreSQL Global Development Group
# Copyright (c) 2006-2008, PostgreSQL Global Development Group
#
#
# $PostgreSQL: pgsql/src/backend/tsearch/Makefile,v 1.
5 2008/02/18 16:04:32
petere Exp $
# $PostgreSQL: pgsql/src/backend/tsearch/Makefile,v 1.
6 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
subdir
=
src/backend/tsearch
subdir
=
src/backend/tsearch
...
@@ -21,13 +21,7 @@ OBJS = ts_locale.o ts_parse.o wparser.o wparser_def.o dict.o \
...
@@ -21,13 +21,7 @@ OBJS = ts_locale.o ts_parse.o wparser.o wparser_def.o dict.o \
dict_ispell.o regis.o spell.o
\
dict_ispell.o regis.o spell.o
\
to_tsany.o ts_utils.o
to_tsany.o ts_utils.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$^
depend dep
:
$(CC)
-MM
$(CFLAGS)
*
.c
>
depend
.PHONY
:
install-data
.PHONY
:
install-data
install-data
:
$(DICTFILES) installdirs
install-data
:
$(DICTFILES) installdirs
...
@@ -43,10 +37,3 @@ uninstall-data:
...
@@ -43,10 +37,3 @@ uninstall-data:
for
i
in
$(DICTFILES)
;
\
for
i
in
$(DICTFILES)
;
\
do
rm
-rf
'
$(DESTDIR)$(datadir)
/
$(DICTDIR)
/'
$$
i
||
exit
;
\
do
rm
-rf
'
$(DESTDIR)$(datadir)
/
$(DICTDIR)
/'
$$
i
||
exit
;
\
done
done
clean distclean maintainer-clean
:
rm
-f
SUBSYS.o
$(OBJS)
ifeq
(depend,$(wildcard depend))
include
depend
endif
src/backend/utils/Makefile
View file @
0474dcb6
#
#
# Makefile for utils
# Makefile for utils
#
#
# $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.2
5 2007/02/09 15:55:5
8 petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.2
6 2008/02/19 10:30:0
8 petere Exp $
#
#
subdir
=
src/backend/utils
subdir
=
src/backend/utils
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
OBJS
=
fmgrtab.o
SUBDIRS
=
adt cache error fmgr
hash
init mb misc mmgr resowner
sort time
SUBDIRS
=
adt cache error fmgr
hash
init mb misc mmgr resowner
sort time
SUBDIROBJS
=
$
(
SUBDIRS:%
=
%/SUBSYS.o
)
include
$(top_srcdir)/src/backend/common.mk
all
:
SUBSYS.o
fmgroids.h
all
:
fmgroids.h
SUBSYS.o
:
fmgrtab.o $(SUBDIROBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
$(SUBDIROBJS)
:
$(SUBDIRS:%=%-recursive) ;
.PHONY
:
$(SUBDIRS:%=%-recursive)
$(SUBDIRS
:
%=%-recursive): fmgroids.h
$(SUBDIRS
:
%=%-recursive): fmgroids.h
$(MAKE)
-C
$(
subst
-recursive
,,
$@
)
SUBSYS.o
fmgroids.h fmgrtab.c
:
Gen_fmgrtab.sh $(top_srcdir)/src/include/catalog/pg_proc.h
fmgroids.h fmgrtab.c
:
Gen_fmgrtab.sh $(top_srcdir)/src/include/catalog/pg_proc.h
AWK
=
'
$(AWK)
'
$(SHELL)
$<
$(top_srcdir)
/src/include/catalog/pg_proc.h
AWK
=
'
$(AWK)
'
$(SHELL)
$<
$(top_srcdir)
/src/include/catalog/pg_proc.h
clean
:
clean
:
for
dir
in
$(SUBDIRS)
;
do
$(MAKE)
-C
$$
dir
$@
||
exit
;
done
rm
-f
fmgroids.h fmgrtab.c
rm
-f
SUBSYS.o fmgrtab.o fmgroids.h fmgrtab.c
src/backend/utils/adt/Makefile
View file @
0474dcb6
#
#
# Makefile for utils/adt
# Makefile for utils/adt
#
#
# $PostgreSQL: pgsql/src/backend/utils/adt/Makefile,v 1.6
8 2007/10/13 23:06:26 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/utils/adt/Makefile,v 1.6
9 2008/02/19 10:30:08 petere
Exp $
#
#
subdir
=
src/backend/utils/adt
subdir
=
src/backend/utils/adt
...
@@ -33,10 +33,4 @@ OBJS = acl.o arrayfuncs.o array_userfuncs.o arrayutils.o bool.o \
...
@@ -33,10 +33,4 @@ OBJS = acl.o arrayfuncs.o array_userfuncs.o arrayutils.o bool.o \
like.o
:
like.c like_match.c
like.o
:
like.c like_match.c
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/cache/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/cache
# Makefile for utils/cache
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/cache/Makefile,v 1.2
2 2007/08/21 01:11:19 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/utils/cache/Makefile,v 1.2
3 2008/02/19 10:30:08 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -15,10 +15,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
catcache.o inval.o plancache.o relcache.o
\
OBJS
=
catcache.o inval.o plancache.o relcache.o
\
syscache.o lsyscache.o typcache.o ts_cache.o
syscache.o lsyscache.o typcache.o ts_cache.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/error/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/error
# Makefile for utils/error
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/error/Makefile,v 1.1
2 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/error/Makefile,v 1.1
3 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
assert.o elog.o
OBJS
=
assert.o elog.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/fmgr/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/fmgr
# Makefile for utils/fmgr
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/fmgr/Makefile,v 1.1
7 2004/05/21 20:56:49 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/utils/fmgr/Makefile,v 1.1
8 2008/02/19 10:30:08 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,11 +16,4 @@ OBJS = dfmgr.o fmgr.o funcapi.o
...
@@ -16,11 +16,4 @@ OBJS = dfmgr.o fmgr.o funcapi.o
override
CPPFLAGS
+=
-DDLSUFFIX
=
\"
$(DLSUFFIX)
\"
override
CPPFLAGS
+=
-DDLSUFFIX
=
\"
$(DLSUFFIX)
\"
include
$(top_srcdir)/src/backend/common.mk
all
:
SUBSYS.o
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/hash/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/hash
# Makefile for utils/hash
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/hash/Makefile,v 1.1
2 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/hash/Makefile,v 1.1
3 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
dynahash.o hashfn.o pg_crc.o
OBJS
=
dynahash.o hashfn.o pg_crc.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/init/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/init
# Makefile for utils/init
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/init/Makefile,v 1.2
1 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/init/Makefile,v 1.2
2 2008/02/19 10:30:08
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
flatfiles.o globals.o miscinit.o postinit.o
OBJS
=
flatfiles.o globals.o miscinit.o postinit.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/mb/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/mb
# Makefile for utils/mb
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/mb/Makefile,v 1.2
3 2007/01/20 17:16:13
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/mb/Makefile,v 1.2
4 2008/02/19 10:30:09
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -13,15 +13,8 @@ top_builddir = ../../../..
...
@@ -13,15 +13,8 @@ top_builddir = ../../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
OBJS
=
encnames.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o
OBJS
=
encnames.o conv.o mbutils.o wchar.o wstrcmp.o wstrncmp.o
DIRS
=
conversion_procs
all install installdirs
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
uninstall distprep
:
clean distclean maintainer-clean
:
clean distclean maintainer-clean
:
rm
-f
SUBSYS.o
$(OBJS)
$(MAKE)
-C
conversion_procs
$@
@
for
dir
in
$(DIRS)
;
do
$(MAKE)
-C
$$
dir
$@
;
done
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
src/backend/utils/misc/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/misc
# Makefile for utils/misc
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/misc/Makefile,v 1.2
7 2007/01/20 17:16:14
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/misc/Makefile,v 1.2
8 2008/02/19 10:30:09
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -22,11 +22,7 @@ ifdef krb_srvtab
...
@@ -22,11 +22,7 @@ ifdef krb_srvtab
override
CPPFLAGS
+=
-DPG_KRB_SRVTAB
=
'"
$(krb_srvtab)
"'
override
CPPFLAGS
+=
-DPG_KRB_SRVTAB
=
'"
$(krb_srvtab)
"'
endif
endif
include
$(top_srcdir)/src/backend/common.mk
all
:
SUBSYS.o
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
# guc-file is compiled as part of guc
# guc-file is compiled as part of guc
guc.o
:
$(srcdir)/guc-file.c
guc.o
:
$(srcdir)/guc-file.c
...
@@ -41,5 +37,4 @@ endif
...
@@ -41,5 +37,4 @@ endif
# Note: guc-file.c is not deleted by 'make clean',
# Note: guc-file.c is not deleted by 'make clean',
# since we want to ship it in distribution tarballs.
# since we want to ship it in distribution tarballs.
clean
:
clean
:
rm
-f
SUBSYS.o
$(OBJS)
@
rm
-f
lex.yy.c
@
rm
-f
lex.yy.c
src/backend/utils/mmgr/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/mmgr
# Makefile for utils/mmgr
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/mmgr/Makefile,v 1.1
2 2007/01/20 17:16:14
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/mmgr/Makefile,v 1.1
3 2008/02/19 10:30:09
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
aset.o mcxt.o portalmem.o
OBJS
=
aset.o mcxt.o portalmem.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/resowner/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/resowner
# Makefile for utils/resowner
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/resowner/Makefile,v 1.
2 2007/01/20 17:16:14
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/resowner/Makefile,v 1.
3 2008/02/19 10:30:09
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
resowner.o
OBJS
=
resowner.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/sort/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/sort
# Makefile for utils/sort
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/sort/Makefile,v 1.1
4 2007/01/20 17:16:14
petere Exp $
# $PostgreSQL: pgsql/src/backend/utils/sort/Makefile,v 1.1
5 2008/02/19 10:30:09
petere Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
logtape.o tuplesort.o tuplestore.o
OBJS
=
logtape.o tuplesort.o tuplestore.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
src/backend/utils/time/Makefile
View file @
0474dcb6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for utils/time
# Makefile for utils/time
#
#
# IDENTIFICATION
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/utils/time/Makefile,v 1.1
2 2007/02/09 03:35:34 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/utils/time/Makefile,v 1.1
3 2008/02/19 10:30:09 petere
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
...
@@ -14,10 +14,4 @@ include $(top_builddir)/src/Makefile.global
OBJS
=
combocid.o tqual.o
OBJS
=
combocid.o tqual.o
all
:
SUBSYS.o
include
$(top_srcdir)/src/backend/common.mk
SUBSYS.o
:
$(OBJS)
$(LD)
$(LDREL)
$(LDOUT)
SUBSYS.o
$(OBJS)
clean
:
rm
-f
SUBSYS.o
$(OBJS)
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