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
8101d0c5
Commit
8101d0c5
authored
May 11, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile CFLAGS cleanups.
parent
eead0e77
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
10 deletions
+13
-10
src/backend/Makefile
src/backend/Makefile
+2
-2
src/backend/port/Makefile.in
src/backend/port/Makefile.in
+4
-1
src/bin/pg_dump/Makefile.in
src/bin/pg_dump/Makefile.in
+2
-2
src/bin/pg_passwd/Makefile
src/bin/pg_passwd/Makefile
+1
-1
src/bin/pg_version/Makefile.in
src/bin/pg_version/Makefile.in
+2
-2
src/bin/psql/Makefile.in
src/bin/psql/Makefile.in
+2
-2
No files found.
src/backend/Makefile
View file @
8101d0c5
...
...
@@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.4
6 2000/04/08 19:38:00
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.4
7 2000/05/11 17:46:28
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -80,7 +80,7 @@ all: postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source \
ifneq
($(PORTNAME), win)
postgres
:
fmgr.h $(OBJS) $(VERSIONOBJ)
$(CC)
-o
postgres
$(OBJS)
$(OBJS1)
$(VERSIONOBJ)
$(LDFLAGS)
$(CC)
$(CFLAGS)
-o
postgres
$(OBJS)
$(OBJS1)
$(VERSIONOBJ)
$(LDFLAGS)
else
postgres
:
$(DLLOBJS) $(SRCDIR)/utils/dllinit.o postgres.def libpostgres.a
dlltool
--dllname
$@$(X)
--output-exp
$@
.exp
--def
postgres.def
...
...
src/backend/port/Makefile.in
View file @
8101d0c5
...
...
@@ -13,7 +13,7 @@
# be converted to Method 2.
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.2
0 1999/12/16 01:25:02
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.2
1 2000/05/11 17:46:31
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -38,6 +38,9 @@ qnx4/SUBSYS.o: qnx4.dir
qnx4.dir
:
$(MAKE)
-C
qnx4 all
tas.o
:
tas.s
$(CC)
$(CFLAGS)
-c
tas.o tas.s
$(LDFLAGS)
.PHONY
:
clean dep
distclean clean
:
...
...
src/bin/pg_dump/Makefile.in
View file @
8101d0c5
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.1
2 2000/03/08 01:58:19
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.1
3 2000/05/11 17:46:32
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -29,7 +29,7 @@ endif
all
:
submake pg_dump
pg_dump
:
$(OBJS) $(LIBPQDIR)/libpq.a
$(CC)
-o
pg_dump
$(OBJS)
$(LIBPQ)
$(LDFLAGS)
$(CC)
$(CFLAGS)
-o
pg_dump
$(OBJS)
$(LIBPQ)
$(LDFLAGS)
../../utils/strdup.o
:
$(MAKE)
-C
../../utils strdup.o
...
...
src/bin/pg_passwd/Makefile
View file @
8101d0c5
...
...
@@ -12,7 +12,7 @@ OBJS= pg_passwd.o
all
:
pg_passwd
pg_passwd
:
$(OBJS)
$(CC)
-o
pg_passwd
$(OBJS)
$(LDFLAGS)
$(CC)
$(CFLAGS)
-o
pg_passwd
$(OBJS)
$(LDFLAGS)
install
:
pg_passwd
$(INSTALL)
$(INSTL_EXE_OPTS)
pg_passwd
$(X)
$(BINDIR)
/pg_passwd
$(X)
...
...
src/bin/pg_version/Makefile.in
View file @
8101d0c5
...
...
@@ -7,7 +7,7 @@
# Portions Copyright (c) 1994, Regents of the University of California
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile.in,v 1.
7 2000/02/27 01:33:43 tgl
Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile.in,v 1.
8 2000/05/11 17:46:35 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -21,7 +21,7 @@ OBJS= pg_version.o $(SRCDIR)/utils/version.o @STRERROR2@
all
:
pg_version
pg_version
:
$(OBJS)
$(CC)
-o
pg_version
$(OBJS)
$(LDFLAGS)
$(CC)
$(CFLAGS)
-o
pg_version
$(OBJS)
$(LDFLAGS)
$(SRCDIR)/utils/version.o
:
$(SRCDIR)/utils/version.c $(SRCDIR)/include/version.h
$(MAKE)
-C
$(SRCDIR)
/utils version.o
...
...
src/bin/psql/Makefile.in
View file @
8101d0c5
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.2
3 2000/04/16 18:07:22 tgl
Exp $
# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.2
4 2000/05/11 17:46:35 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -58,7 +58,7 @@ endif
# End of hacks for picking up backend 'port' modules
psql
:
$(OBJS) $(LIBPQDIR)/libpq.a
$(CC)
-o
psql
$(OBJS)
$(LIBPQ)
$(LDFLAGS)
$(CC)
$(CFLAGS)
-o
psql
$(OBJS)
$(LIBPQ)
$(LDFLAGS)
help.o
:
sql_help.h
...
...
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