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
36c92687
Commit
36c92687
authored
Jun 12, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add makefile to warn about not using gmake.
parent
3357e1d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
34 deletions
+30
-34
Makefile
Makefile
+14
-34
src/Makefile
src/Makefile
+16
-0
No files found.
Makefile
View file @
36c92687
# The PostgreSQL make files exploit features of GNU make that other
# makes do not have. Because it is a common mistake for users to try
# to build Postgres with a different make, we have this make file
# that, as a service, will look for a GNU make and invoke it, or show
# an error message if none could be found.
# The Postgres make files exploit features of GNU make that other makes
# do not have. Because it is a common mistake for users to try to build
# Postgres with a different make, we have this make file that does nothing
# but tell the user to use GNU make.
# If the user were using GNU make now, this file would not get used
# because GNU make uses a make file named "GNUmakefile" in preference
# to "Makefile" if it exists. PostgreSQL is shipped with a
# "GNUmakefile". If the user hasn't run the configure script yet, the
# GNUmakefile won't exist yet, so we catch that case as well.
# If the user were using GNU make now, this file would not get used because
# GNU make uses a make file named "GNUmakefile" in preference to "Makefile"
# if it exists. Postgres is shipped with a "GNUmakefile".
all install clean dep depend distclean maintainer-clean
:
@
if
!
[
-f
GNUmakefile
]
;
then
\
echo
"You need to run the
\`
configure' program first. See the file"
;
\
echo
"
\`
INSTALL' for installation instructions."
;
\
false
;
\
fi
@
IFS
=
':'
;
\
for
dir
in
$$
PATH
;
do
\
for
prog
in
gmake gnumake make
;
do
\
if
[
-f
$$
dir
/
$$
prog
]
&&
(
$$
dir
/
$$
prog
--version
|
grep
GNU
>
/dev/null 2>&1
)
;
then
\
GMAKE
=
$$
dir
/
$$
prog
;
\
break
2
;
\
fi
;
\
done
;
\
done
;
\
\
if
[
x
"
$
${
GMAKE
+set
}
"
=
xset
]
;
then
\
echo
"Using GNU make found at
$
${GMAKE}
"
;
\
$
${GMAKE}
$@
;
\
else
\
echo
"You must use GNU make to build PostgreSQL."
;
\
false
;
\
fi
all install clean dep depend distclean
:
@
echo
"You must use GNU make to use Postgres. It may be installed"
@
echo
"on your system with the name 'gmake'."
@
echo
@
echo
"NOTE: If you are sure that you are using GNU make and you are"
@
echo
" still getting this message, you may simply need to run"
@
echo
" the configure program."
src/Makefile
0 → 100644
View file @
36c92687
# The Postgres make files exploit features of GNU make that other makes
# do not have. Because it is a common mistake for users to try to build
# Postgres with a different make, we have this make file that does nothing
# but tell the user to use GNU make.
# If the user were using GNU make now, this file would not get used because
# GNU make uses a make file named "GNUmakefile" in preference to "Makefile"
# if it exists. Postgres is shipped with a "GNUmakefile".
all install clean dep depend distclean
:
@
echo
"You must use GNU make to use Postgres. It may be installed"
@
echo
"on your system with the name 'gmake'."
@
echo
@
echo
"NOTE: If you are sure that you are using GNU make and you are"
@
echo
" still getting this message, you may simply need to run"
@
echo
" the configure program."
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