summaryrefslogtreecommitdiff
path: root/src/bin/pg_controldata/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pg_controldata/Makefile')
-rw-r--r--src/bin/pg_controldata/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/pg_controldata/Makefile b/src/bin/pg_controldata/Makefile
index 1afc0390b4..ec035320ed 100644
--- a/src/bin/pg_controldata/Makefile
+++ b/src/bin/pg_controldata/Makefile
@@ -2,9 +2,9 @@
#
# Makefile for src/bin/pg_controldata
#
-# Copyright (c) 1998, PostgreSQL Global Development Group
+# Copyright (c) 1998-2002, PostgreSQL Global Development Group
#
-# $Header: /cvsroot/pgsql/src/bin/pg_controldata/Makefile,v 1.2 2002/08/17 02:43:08 momjian Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_controldata/Makefile,v 1.3 2002/08/17 04:03:35 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -14,14 +14,14 @@ include $(top_builddir)/src/Makefile.global
OBJS= pg_controldata.o pg_crc.o
-pg_crc.c: $(top_builddir)/src/backend/utils/hash/pg_crc.c
- rm -f $@ && $(LN_S) $< .
-
all: submake-libpgport pg_controldata
pg_controldata: $(OBJS)
$(CC) $(CFLAGS) $^ $(libpq) $(LDFLAGS) $(LIBS) -o $@
+pg_crc.c: $(top_srcdir)/src/backend/utils/hash/pg_crc.c
+ rm -f $@ && $(LN_S) $< .
+
install: all installdirs
$(INSTALL_PROGRAM) pg_controldata$(X) $(DESTDIR)$(bindir)/pg_controldata$(X)