From 2a398726e7685392615725acfc93920e8965318e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 25 Feb 2001 15:57:45 +0000 Subject: [PATCH] Doesn't need libpq. --- contrib/pg_controldata/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/pg_controldata/Makefile b/contrib/pg_controldata/Makefile index fde5ab1e73..77a1880dd1 100644 --- a/contrib/pg_controldata/Makefile +++ b/contrib/pg_controldata/Makefile @@ -1,5 +1,5 @@ # -# $Header: /cvsroot/pgsql/contrib/pg_controldata/Attic/Makefile,v 1.1 2001/02/23 20:38:35 momjian Exp $ +# $Header: /cvsroot/pgsql/contrib/pg_controldata/Attic/Makefile,v 1.2 2001/02/25 15:57:45 petere Exp $ # subdir = contrib/pg_controldata @@ -12,8 +12,8 @@ OBJS = pg_controldata.o all: pg_controldata -pg_controldata: $(OBJS) $(libpq_builddir)/libpq.a - $(CC) $(CFLAGS) $(OBJS) $(libpq) $(LDFLAGS) $(LIBS) -o $@ +pg_controldata: $(OBJS) + $(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) -o $@ install: all installdirs $(INSTALL_PROGRAM) pg_controldata$(X) $(bindir) -- 2.40.0