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
eefd10c6
Commit
eefd10c6
authored
Oct 05, 2007
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix distprep and maintainer-clean targets so that ecpg's .def files are
made and removed at the correct times.
parent
b8f41d50
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
9 deletions
+31
-9
src/interfaces/ecpg/compatlib/Makefile
src/interfaces/ecpg/compatlib/Makefile
+11
-3
src/interfaces/ecpg/ecpglib/Makefile
src/interfaces/ecpg/ecpglib/Makefile
+10
-3
src/interfaces/ecpg/pgtypeslib/Makefile
src/interfaces/ecpg/pgtypeslib/Makefile
+10
-3
No files found.
src/interfaces/ecpg/compatlib/Makefile
View file @
eefd10c6
...
@@ -2,9 +2,10 @@
...
@@ -2,9 +2,10 @@
#
#
# Makefile for ecpg compatibility library
# Makefile for ecpg compatibility library
#
#
# Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.3
5 2007/10/04 18:32:07
tgl Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/compatlib/Makefile,v 1.3
6 2007/10/05 01:51:40
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -46,8 +47,12 @@ snprintf.c: % : $(top_srcdir)/src/port/%
...
@@ -46,8 +47,12 @@ snprintf.c: % : $(top_srcdir)/src/port/%
# Since we can't assume that Windows boxes will have sed, the .DEF files are
# Since we can't assume that Windows boxes will have sed, the .DEF files are
# always built and included in distribution tarballs.
# always built and included in distribution tarballs.
distprep
:
def-files
.PHONY
:
def-files
.PHONY
:
def-files
def-files
:
$(srcdir)/libecpg_compatdll.def $(srcdir)/blibecpg_compatdll.def
def-files
:
$(srcdir)/libecpg_compatdll.def $(srcdir)/blibecpg_compatdll.def
$(srcdir)/libecpg_compatdll.def
:
exports.txt
$(srcdir)/libecpg_compatdll.def
:
exports.txt
echo
'; DEF file for MS VC++'
>
$@
echo
'; DEF file for MS VC++'
>
$@
echo
'LIBRARY LIBECPG_COMPAT'
>>
$@
echo
'LIBRARY LIBECPG_COMPAT'
>>
$@
...
@@ -93,5 +98,8 @@ installdirs:
...
@@ -93,5 +98,8 @@ installdirs:
uninstall
:
uninstall-lib
uninstall
:
uninstall-lib
clean distclean
maintainer-clean
:
clean-lib
clean distclean
:
clean-lib
rm
-f
$(OBJS)
snprintf.c exports.list
rm
-f
$(OBJS)
snprintf.c exports.list
maintainer-clean
:
distclean
rm
-f
$(srcdir)
/libecpg_compatdll.def
$(srcdir)
/blibecpg_compatdll.def
src/interfaces/ecpg/ecpglib/Makefile
View file @
eefd10c6
...
@@ -2,9 +2,10 @@
...
@@ -2,9 +2,10 @@
#
#
# Makefile for ecpg library
# Makefile for ecpg library
#
#
# Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.5
2 2007/10/04 20:54:08
tgl Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/Makefile,v 1.5
3 2007/10/05 01:51:40
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -64,7 +65,10 @@ $(top_builddir)/src/port/pg_config_paths.h:
...
@@ -64,7 +65,10 @@ $(top_builddir)/src/port/pg_config_paths.h:
# Since we can't assume that Windows boxes will have sed, the .DEF files are
# Since we can't assume that Windows boxes will have sed, the .DEF files are
# always built and included in distribution tarballs.
# always built and included in distribution tarballs.
distprep
:
def-files
.PHONY
:
def-files
.PHONY
:
def-files
def-files
:
$(srcdir)/libecpgdll.def $(srcdir)/blibecpgdll.def
def-files
:
$(srcdir)/libecpgdll.def $(srcdir)/blibecpgdll.def
$(srcdir)/libecpgdll.def
:
exports.txt
$(srcdir)/libecpgdll.def
:
exports.txt
...
@@ -112,6 +116,9 @@ installdirs:
...
@@ -112,6 +116,9 @@ installdirs:
uninstall
:
uninstall-lib
uninstall
:
uninstall-lib
clean distclean
maintainer-clean
:
clean-lib
clean distclean
:
clean-lib
rm
-f
$(OBJS)
rm
-f
$(OBJS)
rm
-f
path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c exports.list
rm
-f
path.c pgstrcasecmp.c snprintf.c strlcpy.c thread.c exports.list
maintainer-clean
:
distclean
rm
-f
$(srcdir)
/libecpgdll.def
$(srcdir)
/blibecpgdll.def
src/interfaces/ecpg/pgtypeslib/Makefile
View file @
eefd10c6
...
@@ -2,9 +2,10 @@
...
@@ -2,9 +2,10 @@
#
#
# Makefile for ecpg pgtypes library
# Makefile for ecpg pgtypes library
#
#
# Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.3
7 2007/10/04 18:32:07
tgl Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.3
8 2007/10/05 01:51:40
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -44,7 +45,10 @@ include $(top_srcdir)/src/Makefile.shlib
...
@@ -44,7 +45,10 @@ include $(top_srcdir)/src/Makefile.shlib
# Since we can't assume that Windows boxes will have sed, the .DEF files are
# Since we can't assume that Windows boxes will have sed, the .DEF files are
# always built and included in distribution tarballs.
# always built and included in distribution tarballs.
distprep
:
def-files
.PHONY
:
def-files
.PHONY
:
def-files
def-files
:
$(srcdir)/libpgtypesdll.def $(srcdir)/blibpgtypesdll.def
def-files
:
$(srcdir)/libpgtypesdll.def $(srcdir)/blibpgtypesdll.def
$(srcdir)/libpgtypesdll.def
:
exports.txt
$(srcdir)/libpgtypesdll.def
:
exports.txt
...
@@ -100,5 +104,8 @@ installdirs:
...
@@ -100,5 +104,8 @@ installdirs:
uninstall
:
uninstall-lib
uninstall
:
uninstall-lib
clean distclean
maintainer-clean
:
clean-lib
clean distclean
:
clean-lib
rm
-f
$(OBJS)
pgstrcasecmp.c rint.c snprintf.c exports.list
rm
-f
$(OBJS)
pgstrcasecmp.c rint.c snprintf.c exports.list
maintainer-clean
:
distclean
rm
-f
$(srcdir)
/libpgtypesdll.def
$(srcdir)
/blibpgtypesdll.def
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