Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fafd564

Browse files
committed
Recent commits added created files that weren't getting deleted by
'make clean'.
1 parent f6c5da9 commit fafd564

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

src/bin/pg_controldata/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1998-2002, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.8 2004/05/25 01:00:23 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.9 2004/05/26 17:24:01 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -37,4 +37,4 @@ uninstall:
3737
rm -f $(DESTDIR)$(bindir)/pg_controldata$(X)
3838

3939
clean distclean maintainer-clean:
40-
rm -f pg_controldata$(X) pg_controldata.o pg_crc.o pg_crc.c exec.c
40+
rm -f pg_controldata$(X) $(OBJS) pg_crc.c exec.c

src/bin/scripts/Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.27 2004/05/25 01:00:27 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.28 2004/05/26 17:24:05 tgl Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

@@ -31,10 +31,10 @@ dropuser: dropuser.o common.o exec.o dumputils.o $(top_builddir)/src/backend/par
3131
clusterdb: clusterdb.o common.o exec.o dumputils.o $(top_builddir)/src/backend/parser/keywords.o
3232
vacuumdb: vacuumdb.o common.o exec.o
3333

34-
exec.c: % : $(top_srcdir)/src/port/%
34+
dumputils.c: % : $(top_srcdir)/src/bin/pg_dump/%
3535
rm -f $@ && $(LN_S) $< .
3636

37-
dumputils.c: % : $(top_srcdir)/src/bin/pg_dump/%
37+
exec.c: % : $(top_srcdir)/src/port/%
3838
rm -f $@ && $(LN_S) $< .
3939

4040
print.c mbprint.c : % : $(top_srcdir)/src/bin/psql/%
@@ -63,4 +63,6 @@ uninstall:
6363

6464

6565
clean distclean maintainer-clean:
66-
rm -f $(addsuffix $(X), $(PROGRAMS)) $(addsuffix .o, $(PROGRAMS)) common.o dumputils.o print.o mbprint.o dumputils.c exec.c print.c mbprint.c
66+
rm -f $(addsuffix $(X), $(PROGRAMS)) $(addsuffix .o, $(PROGRAMS))
67+
rm -f common.o dumputils.o exec.o print.o mbprint.o
68+
rm -f dumputils.c exec.c print.c mbprint.c

src/interfaces/ecpg/pgtypeslib/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.20 2004/05/24 01:01:38 momjian Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.21 2004/05/26 17:24:07 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -45,7 +45,7 @@ installdirs:
4545
uninstall: uninstall-lib
4646

4747
clean distclean maintainer-clean: clean-lib
48-
rm -f $(OBJS)
48+
rm -f $(OBJS) rint.c pgstrcasecmp.c
4949

5050
depend dep:
5151
$(CC) -MM $(CFLAGS) *.c >depend

0 commit comments

Comments
 (0)