Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
1719fd55
Commit
1719fd55
authored
22 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Fix some problems exposed by building outside the source tree.
parent
1426db5d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/bin/scripts/Makefile
+5
-10
5 additions, 10 deletions
src/bin/scripts/Makefile
src/interfaces/ecpg/compatlib/Makefile
+2
-2
2 additions, 2 deletions
src/interfaces/ecpg/compatlib/Makefile
with
7 additions
and
12 deletions
src/bin/scripts/Makefile
+
5
−
10
View file @
1719fd55
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.
19
2003/0
3
/1
8 22:19:46 petere
Exp $
# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.
20
2003/0
4
/1
6 05:23:55 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -16,7 +16,7 @@ include $(top_builddir)/src/Makefile.global
...
@@ -16,7 +16,7 @@ include $(top_builddir)/src/Makefile.global
SCRIPTS
:=
vacuumdb clusterdb
SCRIPTS
:=
vacuumdb clusterdb
PROGRAMS
=
createdb createlang createuser dropdb droplang dropuser
PROGRAMS
=
createdb createlang createuser dropdb droplang dropuser
override
CPPFLAGS
:=
-I
$(
libpq_srcdir
)
$(
CPPFLAGS
)
override
CPPFLAGS
:=
-I
$(
top_srcdir
)
/src/bin/pg_dump
-I
$(
top_srcdir
)
/src/bin/psql
-I
$(
libpq_srcdir
)
$(
CPPFLAGS
)
all
:
submake-libpq submake-backend $(PROGRAMS)
all
:
submake-libpq submake-backend $(PROGRAMS)
...
@@ -31,15 +31,10 @@ dropdb: dropdb.o common.o dumputils.o sprompt.o $(top_builddir)/src/backend/pars
...
@@ -31,15 +31,10 @@ dropdb: dropdb.o common.o dumputils.o sprompt.o $(top_builddir)/src/backend/pars
droplang
:
droplang.o common.o sprompt.o print.o mbprint.o
droplang
:
droplang.o common.o sprompt.o print.o mbprint.o
dropuser
:
dropuser.o common.o dumputils.o sprompt.o $(top_builddir)/src/backend/parser/keywords.o
dropuser
:
dropuser.o common.o dumputils.o sprompt.o $(top_builddir)/src/backend/parser/keywords.o
createdb.o createuser.o dropdb.o dropuser.o dumputils.o
:
dumputils.h
dumputils.c sprompt.c
:
% : $(top_srcdir)/src/bin/pg_dump/%
createlang.o droplang.o
:
print.h
print.o
:
print.h mbprint.h
dumputils.c dumputils.h sprompt.c
:
% : $(top_srcdir)/src/bin/pg_dump/%
rm
-f
$@
&&
$(
LN_S
)
$<
.
rm
-f
$@
&&
$(
LN_S
)
$<
.
print.c
print.h
mbprint.c
mbprint.h
:
% : $(top_srcdir)/src/bin/psql/%
print.c mbprint.c
:
% : $(top_srcdir)/src/bin/psql/%
rm
-f
$@
&&
$(
LN_S
)
$<
.
rm
-f
$@
&&
$(
LN_S
)
$<
.
.PHONY
:
submake-backend
.PHONY
:
submake-backend
...
@@ -65,4 +60,4 @@ uninstall:
...
@@ -65,4 +60,4 @@ uninstall:
clean distclean maintainer-clean
:
clean distclean maintainer-clean
:
rm
-f
$(
addsuffix
$(
X
)
,
$(
PROGRAMS
))
$(
addsuffix .o,
$(
PROGRAMS
))
common.o dumputils.o sprompt.o print.o mbprint.o dumputils.c
dumputils.h
sprompt.c print.c
print.h
mbprint.c
mbprint.h
rm
-f
$(
addsuffix
$(
X
)
,
$(
PROGRAMS
))
$(
addsuffix .o,
$(
PROGRAMS
))
common.o dumputils.o sprompt.o print.o mbprint.o dumputils.c sprompt.c print.c mbprint.c
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/compatlib/Makefile
+
2
−
2
View file @
1719fd55
...
@@ -4,11 +4,11 @@
...
@@ -4,11 +4,11 @@
#
#
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.
2
2003/04/
08 17:08:1
5 tgl Exp $
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.
3
2003/04/
16 05:23:5
5 tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
subdir
=
src/interfaces/ecpg/
pgtypes
lib
subdir
=
src/interfaces/ecpg/
compat
lib
top_builddir
=
../../../..
top_builddir
=
../../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment