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
fa179dde
Commit
fa179dde
authored
Jun 30, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure symlinks for sharedlib get removed by 'make clean'.
parent
7bf29f6b
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
19 deletions
+23
-19
src/interfaces/ecpg/lib/Makefile.in
src/interfaces/ecpg/lib/Makefile.in
+4
-3
src/interfaces/libpgtcl/Makefile.in
src/interfaces/libpgtcl/Makefile.in
+4
-3
src/interfaces/libpq++/Makefile.in
src/interfaces/libpq++/Makefile.in
+4
-3
src/interfaces/libpq/Makefile.in
src/interfaces/libpq/Makefile.in
+4
-3
src/interfaces/odbc/GNUmakefile.in
src/interfaces/odbc/GNUmakefile.in
+4
-4
src/pl/plpgsql/src/Makefile.in
src/pl/plpgsql/src/Makefile.in
+3
-3
No files found.
src/interfaces/ecpg/lib/Makefile.in
View file @
fa179dde
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile.in,v 1.4
3 1999/02/23 12:56:55 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile.in,v 1.4
4 1999/06/30 23:57:23 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -41,8 +41,9 @@ typename.o : typename.c ../include/ecpgtype.h
...
@@ -41,8 +41,9 @@ typename.o : typename.c ../include/ecpgtype.h
.PHONY
:
clean
.PHONY
:
clean
clean
:
rm
-f
lib
$(NAME)
.a
$(shlib)
$(OBJS)
clean
:
clean-shlib
rm
-f
lib
$(NAME)
.a
$(OBJS)
ifeq
($(PORTNAME), win)
ifeq
($(PORTNAME), win)
rm
-f
$(NAME)
.def
rm
-f
$(NAME)
.def
endif
endif
...
...
src/interfaces/libpgtcl/Makefile.in
View file @
fa179dde
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.3
4 1999/02/07 22:10:45
tgl Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.3
5 1999/06/30 23:57:24
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -50,8 +50,9 @@ beforeinstall-headers:
...
@@ -50,8 +50,9 @@ beforeinstall-headers:
.PHONY
:
clean
.PHONY
:
clean
clean
:
rm
-f
$(OBJS)
$(shlib)
lib
$(NAME)
.a
clean
:
clean-shlib
rm
-f
$(OBJS)
lib
$(NAME)
.a
depend dep
:
depend dep
:
$(CC)
-MM
$(CFLAGS)
*
.c
>
depend
$(CC)
-MM
$(CFLAGS)
*
.c
>
depend
...
...
src/interfaces/libpq++/Makefile.in
View file @
fa179dde
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.1
4 1999/05/27 14:28:40 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.1
5 1999/06/30 23:57:27 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -87,8 +87,9 @@ beforeinstall-headers:
...
@@ -87,8 +87,9 @@ beforeinstall-headers:
@
if
[
!
-d
$(LIBPGXXHEADERDIR)
]
;
then
mkdir
$(LIBPGXXHEADERDIR)
;
fi
@
if
[
!
-d
$(LIBPGXXHEADERDIR)
]
;
then
mkdir
$(LIBPGXXHEADERDIR)
;
fi
.PHONY
:
clean
.PHONY
:
clean
clean
:
rm
-f
libpq++.a
$(shlib)
$(OBJS)
clean
:
clean-shlib
rm
-f
libpq++.a
$(OBJS)
$(MAKE)
-C
examples clean
$(MAKE)
-C
examples clean
dep depend
:
dep depend
:
...
...
src/interfaces/libpq/Makefile.in
View file @
fa179dde
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.4
5 1999/03/07 23:05:57
tgl Exp $
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.4
6 1999/06/30 23:57:25
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -83,8 +83,9 @@ install-headers: libpq-fe.h libpq-int.h
...
@@ -83,8 +83,9 @@ install-headers: libpq-fe.h libpq-int.h
.PHONY
:
clean
.PHONY
:
clean
clean
:
rm
-f
libpq.a
$(shlib)
$(OBJS)
clean
:
clean-shlib
rm
-f
libpq.a
$(OBJS)
rm
-f
dllist.c common.c wchar.c conv.c big5.c
rm
-f
dllist.c common.c wchar.c conv.c big5.c
ifeq
($(PORTNAME), win)
ifeq
($(PORTNAME), win)
rm
-f
pq.def
rm
-f
pq.def
...
...
src/interfaces/odbc/GNUmakefile.in
View file @
fa179dde
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile.in,v 1.1
0 1999/01/17 06:19:43 momjian
Exp $
# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile.in,v 1.1
1 1999/06/30 23:57:29 tgl
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
@SET_MAKE@
@SET_MAKE@
...
@@ -65,8 +65,8 @@ install-ini: odbcinst.ini
...
@@ -65,8 +65,8 @@ install-ini: odbcinst.ini
.PHONY: clean
.PHONY: clean
clean:
clean:
clean-shlib
-rm -f lib$(NAME).a $(
shlib) $(
OBJS)
-rm -f lib$(NAME).a $(OBJS)
.PHONY: distclean
.PHONY: distclean
...
@@ -76,7 +76,7 @@ distclean: clean
...
@@ -76,7 +76,7 @@ distclean: clean
ifeq ($(PORTNAME), win)
ifeq ($(PORTNAME), win)
@if [ $SRCDIR != $ODBCSRCDIR ]; then rm -f template makefiles port; fi
@if [ $SRCDIR != $ODBCSRCDIR ]; then rm -f template makefiles port; fi
else
else
@if [ $SRCDIR ne $ODBCSRCDIR ]; then rm -f template makefiles port
@if [ $SRCDIR ne $ODBCSRCDIR ]; then rm -f template makefiles port
; fi
endif
endif
.PHONY: standalone
.PHONY: standalone
...
...
src/pl/plpgsql/src/Makefile.in
View file @
fa179dde
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
# Makefile for the plpgsql shared object
# Makefile for the plpgsql shared object
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.1
6 1999/03/21 02:27:46
tgl Exp $
# $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.1
7 1999/06/30 23:57:31
tgl Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -77,8 +77,8 @@ pl_scan.c: scan.l
...
@@ -77,8 +77,8 @@ pl_scan.c: scan.l
.PHONY
:
install clean
.PHONY
:
install clean
clean
:
clean
:
clean-shlib
rm
-f
lib
$(NAME)
.a
$(shlib)
rm
-f
lib
$(NAME)
.a
rm
-f
*
.o pl.tab.h pl_gram.c pl_scan.c
rm
-f
*
.o pl.tab.h pl_gram.c pl_scan.c
# And the garbage that might have been left behind by partial build:
# And the garbage that might have been left behind by partial build:
rm
-f
y.tab.c
y.tab.h
lex.yy.c
rm
-f
y.tab.c
y.tab.h
lex.yy.c
...
...
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