aboutsummaryrefslogtreecommitdiff
path: root/contrib/pg_resetxlog/Makefile
blob: 193e8bb93a583a12b70c4d152148bb5b5a831df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# $Header: /cvsroot/pgsql/contrib/pg_resetxlog/Attic/Makefile,v 1.6 2002/07/27 20:10:03 petere Exp $

subdir = contrib/pg_resetxlog
top_builddir = ../..
include $(top_builddir)/src/Makefile.global

all: submake-libpgport

PROGRAM = pg_resetxlog
OBJS	= pg_resetxlog.o pg_crc.o

pg_crc.c: $(top_srcdir)/src/backend/utils/hash/pg_crc.c
	rm -f $@ && $(LN_S) $< .

EXTRA_CLEAN = pg_crc.c

DOCS = README.pg_resetxlog

include $(top_srcdir)/contrib/contrib-global.mk