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
22a9537f
Commit
22a9537f
authored
Feb 27, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up dependencies for version.o.
parent
01eea27c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
src/utils/Makefile
src/utils/Makefile
+11
-6
No files found.
src/utils/Makefile
View file @
22a9537f
...
...
@@ -4,7 +4,7 @@
# Makefile for utils
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/utils/Attic/Makefile,v 1.
6 1999/01/17 06:20:03 momjian
Exp $
# $Header: /cvsroot/pgsql/src/utils/Attic/Makefile,v 1.
7 2000/02/27 01:18:46 tgl
Exp $
#
# About strdup: Some systems have strdup in their standard library, others
# don't. Ones that don't will use this make file to compile the strdup.c
...
...
@@ -13,10 +13,14 @@
# because the strdup.c in this directory may conflict with the strdup()
# prototype from the system library and cause a compile error.
#
# getopt.o is likewise built only on request.
#
# dllinit.o is only built on Win32 platform.
#
#-------------------------------------------------------------------------
SRCDIR
=
..
include
..
/Makefile.global
include
$(SRCDIR)
/Makefile.global
all
:
version.o
...
...
@@ -26,10 +30,11 @@ depend dep:
$(CC)
$(CFLAGS)
-MM
*
.c
>
depend
clean
:
rm
-f
version.o
ifeq
($(PORTNAME), win)
rm
-f
dllinit.o
endif
rm
-f
dllinit.o getopt.o strdup.o version.o
# Make sure version.o has proper dependency on version.h,
# even if we didn't do make depend.
version.o
:
version.c $(SRCDIR)/include/version.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