diff options
| author | Peter Eisentraut | 2001-02-25 15:57:45 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2001-02-25 15:57:45 +0000 |
| commit | 2a398726e7685392615725acfc93920e8965318e (patch) | |
| tree | 815e8bfb699e1254fb609568e3708cdde445d5f4 | |
| parent | eade6d3569ac9478723c4be3f48f3bbb57778c10 (diff) | |
Doesn't need libpq.
| -rw-r--r-- | contrib/pg_controldata/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/pg_controldata/Makefile b/contrib/pg_controldata/Makefile index fde5ab1e73b..77a1880dd1b 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) |
