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
9093238c
Commit
9093238c
authored
Aug 17, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix up paths to $(SRCDIR)
parent
f63f5680
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
30 deletions
+30
-30
src/interfaces/libpq/Makefile
src/interfaces/libpq/Makefile
+30
-30
No files found.
src/interfaces/libpq/Makefile
View file @
9093238c
...
...
@@ -7,15 +7,15 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.3
6 1997/07/29 14:08:34 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.3
7 1997/08/17 00:33:28 scrappy
Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
..
include
..
/Makefile.global
SRCDIR
=
..
/..
include
$(SRCDIR)
/Makefile.global
# We need the backend directory here for its fmgr.h
INCLUDE_OPT
=
-I
../include
-I
..
/backend
INCLUDE_OPT
=
-I
$(SRCDIR)
/include
-I
$(SRCDIR)
/backend
CFLAGS
+=
$(INCLUDE_OPT)
...
...
@@ -60,32 +60,32 @@ else
endif
$(RANLIB)
libpq.a
fe-lobj.o
:
..
/backend/fmgr.h
fe-lobj.o
:
$(SRCDIR)
/backend/fmgr.h
# We need to compile this with special options for shared libs,
# so we can't use the object in
..
/backend
dllist.c
:
..
/backend/lib/dllist.c
-
ln
-s
..
/backend/lib/dllist.c .
# so we can't use the object in
$(SRCDIR)
/backend
dllist.c
:
$(SRCDIR)
/backend/lib/dllist.c
-
ln
-s
$(SRCDIR)
/backend/lib/dllist.c .
pqcomprim.c
:
..
/backend/libpq/pqcomprim.c
-
ln
-s
..
/backend/libpq/pqcomprim.c .
pqcomprim.c
:
$(SRCDIR)
/backend/libpq/pqcomprim.c
-
ln
-s
$(SRCDIR)
/backend/libpq/pqcomprim.c .
# The following rules cause dependencies in the backend directory to
# get made if they don't exist, but don't cause them to get remade if they
# are out of date.
..
/backend/fmgr.h
:
$(MAKE)
-C
..
/backend fmgr.h
$(SRCDIR)
/backend/fmgr.h
:
$(MAKE)
-C
$(SRCDIR)
/backend fmgr.h
$(shlib)
:
$(OBJS)
$(LD)
$(LDFLAGS_SL)
-o
$@
$(OBJS)
ln
-sf
$@
libpq.so
c.h
:
..
/include/c.h
c.h
:
$(SRCDIR)
/include/c.h
rm
-f
c.h
echo
"#undef PORTNAME"
>
c.h
echo
"#define PORTNAME
$(PORTNAME)
"
>>
c.h
cat
..
/include/c.h
>>
c.h
cat
$(SRCDIR)
/include/c.h
>>
c.h
.PHONY
:
beforeinstall-headers install-headers
.PHONY
:
install install-libpq install-shlib-dep
...
...
@@ -96,35 +96,35 @@ install: install-headers install-libpq $(install-shlib-dep)
# so should be installed by someone else.
#
install-headers
:
beforeinstall-headers c.h
\
../include/postgres.h ..
/include/postgres_ext.h
\
../include/config.h ..
/include/libpq/pqcomm.h
\
../include/libpq/libpq-fs.h ..
/include/lib/dllist.h
\
..
/include/utils/geo_decls.h libpq-fe.h
$(INSTALL)
$(INSTLOPTS)
..
/include/os.h
\
$(SRCDIR)/include/postgres.h $(SRCDIR)
/include/postgres_ext.h
\
$(SRCDIR)/include/config.h $(SRCDIR)
/include/libpq/pqcomm.h
\
$(SRCDIR)/include/libpq/libpq-fs.h $(SRCDIR)
/include/lib/dllist.h
\
$(SRCDIR)
/include/utils/geo_decls.h libpq-fe.h
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/os.h
\
$(HEADERDIR)
/os.h
$(INSTALL)
$(INSTLOPTS)
..
/include/config.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/config.h
\
$(HEADERDIR)
/config.h
$(INSTALL)
$(INSTLOPTS)
..
/include/postgres.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/postgres.h
\
$(HEADERDIR)
/postgres.h
$(INSTALL)
$(INSTLOPTS)
..
/include/postgres_ext.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/postgres_ext.h
\
$(HEADERDIR)
/postgres_ext.h
$(INSTALL)
$(INSTLOPTS)
..
/include/libpq/pqcomm.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/libpq/pqcomm.h
\
$(HEADERDIR)
/libpq/pqcomm.h
$(INSTALL)
$(INSTLOPTS)
..
/include/libpq/libpq-fs.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/libpq/libpq-fs.h
\
$(HEADERDIR)
/libpq/libpq-fs.h
$(INSTALL)
$(INSTLOPTS)
..
/include/lib/dllist.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/lib/dllist.h
\
$(HEADERDIR)
/lib/dllist.h
$(INSTALL)
$(INSTLOPTS)
..
/include/utils/geo_decls.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/utils/geo_decls.h
\
$(HEADERDIR)
/utils/geo_decls.h
$(INSTALL)
$(INSTLOPTS)
..
/include/utils/elog.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/utils/elog.h
\
$(HEADERDIR)
/utils/elog.h
$(INSTALL)
$(INSTLOPTS)
..
/include/utils/palloc.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/utils/palloc.h
\
$(HEADERDIR)
/utils/palloc.h
$(INSTALL)
$(INSTLOPTS)
..
/include/access/attnum.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/include/access/attnum.h
\
$(HEADERDIR)
/access/attnum.h
$(INSTALL)
$(INSTLOPTS)
libpq-fe.h
$(HEADERDIR)
/libpq-fe.h
ifeq
($(PORTNAME), hpux)
$(INSTALL)
$(INSTLOPTS)
..
/backend/port/hpux/fixade.h
\
$(INSTALL)
$(INSTLOPTS)
$(SRCDIR)
/backend/port/hpux/fixade.h
\
$(HEADERDIR)
/port/hpux/fixade.h
endif
$(INSTALL)
$(INSTLOPTS)
c.h
$(HEADERDIR)
/c.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