File tree Expand file tree Collapse file tree 6 files changed +23
-19
lines changed Expand file tree Collapse file tree 6 files changed +23
-19
lines changed Original file line number Diff line number Diff line change 6
6
# Copyright (c) 1994, Regents of the University of California
7
7
#
8
8
# IDENTIFICATION
9
- # $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile.in,v 1.43 1999/02/23 12:56:55 scrappy Exp $
9
+ # $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/Makefile.in,v 1.44 1999/06/30 23:57:23 tgl Exp $
10
10
#
11
11
# -------------------------------------------------------------------------
12
12
@@ -41,8 +41,9 @@ typename.o : typename.c ../include/ecpgtype.h
41
41
42
42
43
43
.PHONY : clean
44
- clean :
45
- rm -f lib$(NAME ) .a $(shlib ) $(OBJS )
44
+
45
+ clean : clean-shlib
46
+ rm -f lib$(NAME ) .a $(OBJS )
46
47
ifeq ($(PORTNAME ) , win)
47
48
rm -f $(NAME).def
48
49
endif
Original file line number Diff line number Diff line change 6
6
# Copyright (c) 1994, Regents of the University of California
7
7
#
8
8
# IDENTIFICATION
9
- # $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.34 1999/02/07 22:10:45 tgl Exp $
9
+ # $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.35 1999/06/30 23:57:24 tgl Exp $
10
10
#
11
11
# -------------------------------------------------------------------------
12
12
@@ -50,8 +50,9 @@ beforeinstall-headers:
50
50
51
51
52
52
.PHONY : clean
53
- clean :
54
- rm -f $(OBJS ) $(shlib ) lib$(NAME ) .a
53
+
54
+ clean : clean-shlib
55
+ rm -f $(OBJS ) lib$(NAME ) .a
55
56
56
57
depend dep :
57
58
$(CC ) -MM $(CFLAGS ) * .c > depend
Original file line number Diff line number Diff line change 6
6
# Copyright (c) 1994, Regents of the University of California
7
7
#
8
8
# IDENTIFICATION
9
- # $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.14 1999/05/27 14:28:40 momjian Exp $
9
+ # $Header: /cvsroot/pgsql/src/interfaces/libpq++/Attic/Makefile.in,v 1.15 1999/06/30 23:57:27 tgl Exp $
10
10
#
11
11
# -------------------------------------------------------------------------
12
12
@@ -87,8 +87,9 @@ beforeinstall-headers:
87
87
@if [ ! -d $( LIBPGXXHEADERDIR) ]; then mkdir $(LIBPGXXHEADERDIR ) ; fi
88
88
89
89
.PHONY : clean
90
- clean :
91
- rm -f libpq++.a $(shlib ) $(OBJS )
90
+
91
+ clean : clean-shlib
92
+ rm -f libpq++.a $(OBJS )
92
93
$(MAKE ) -C examples clean
93
94
94
95
dep depend :
Original file line number Diff line number Diff line change 6
6
# Copyright (c) 1994, Regents of the University of California
7
7
#
8
8
# IDENTIFICATION
9
- # $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.45 1999/03/07 23:05:57 tgl Exp $
9
+ # $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.46 1999/06/30 23:57:25 tgl Exp $
10
10
#
11
11
# -------------------------------------------------------------------------
12
12
@@ -83,8 +83,9 @@ install-headers: libpq-fe.h libpq-int.h
83
83
84
84
85
85
.PHONY : clean
86
- clean :
87
- rm -f libpq.a $(shlib ) $(OBJS )
86
+
87
+ clean : clean-shlib
88
+ rm -f libpq.a $(OBJS )
88
89
rm -f dllist.c common.c wchar.c conv.c big5.c
89
90
ifeq ($(PORTNAME ) , win)
90
91
rm -f pq.def
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile.in,v 1.10 1999/01/17 06:19:43 momjian Exp $
10
+ # $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile.in,v 1.11 1999/06/30 23:57:29 tgl Exp $
11
11
#
12
12
#-------------------------------------------------------------------------
13
13
@SET_MAKE@
@@ -65,8 +65,8 @@ install-ini: odbcinst.ini
65
65
66
66
.PHONY: clean
67
67
68
- clean:
69
- -rm -f lib$(NAME).a $(shlib) $( OBJS)
68
+ clean: clean-shlib
69
+ -rm -f lib$(NAME).a $(OBJS)
70
70
71
71
.PHONY: distclean
72
72
@@ -76,7 +76,7 @@ distclean: clean
76
76
ifeq ($(PORTNAME), win)
77
77
@if [ $SRCDIR != $ODBCSRCDIR ]; then rm -f template makefiles port; fi
78
78
else
79
- @if [ $SRCDIR ne $ODBCSRCDIR ]; then rm -f template makefiles port
79
+ @if [ $SRCDIR ne $ODBCSRCDIR ]; then rm -f template makefiles port; fi
80
80
endif
81
81
82
82
.PHONY: standalone
Original file line number Diff line number Diff line change 4
4
# Makefile for the plpgsql shared object
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.16 1999/03/21 02:27:46 tgl Exp $
7
+ # $Header: /cvsroot/pgsql/src/pl/plpgsql/src/Attic/Makefile.in,v 1.17 1999/06/30 23:57:31 tgl Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
@@ -77,8 +77,8 @@ pl_scan.c: scan.l
77
77
78
78
.PHONY : install clean
79
79
80
- clean :
81
- rm -f lib$(NAME ) .a $( shlib )
80
+ clean : clean-shlib
81
+ rm -f lib$(NAME ) .a
82
82
rm -f * .o pl.tab.h pl_gram.c pl_scan.c
83
83
# And the garbage that might have been left behind by partial build:
84
84
rm -f y.tab.c y.tab.h lex.yy.c
You can’t perform that action at this time.
0 commit comments