diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-06-30 23:57:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-06-30 23:57:31 +0000 |
commit | fa179dde82da89842a93a1efd916a6751a37eac9 (patch) | |
tree | 671768f3d0abfc973ef711811ada1a26c217441e /src/interfaces/libpq | |
parent | 7bf29f6b78706d96c15188fd0b86194e55f5a5fb (diff) | |
download | postgresql-fa179dde82da89842a93a1efd916a6751a37eac9.tar.gz postgresql-fa179dde82da89842a93a1efd916a6751a37eac9.zip |
Make sure symlinks for sharedlib get removed by 'make clean'.
Diffstat (limited to 'src/interfaces/libpq')
-rw-r--r-- | src/interfaces/libpq/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/interfaces/libpq/Makefile.in b/src/interfaces/libpq/Makefile.in index 8b07a9396a7..73f333cae12 100644 --- a/src/interfaces/libpq/Makefile.in +++ b/src/interfaces/libpq/Makefile.in @@ -6,7 +6,7 @@ # Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.45 1999/03/07 23:05:57 tgl Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.46 1999/06/30 23:57:25 tgl Exp $ # #------------------------------------------------------------------------- @@ -83,8 +83,9 @@ install-headers: libpq-fe.h libpq-int.h .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 ifeq ($(PORTNAME), win) rm -f pq.def |