###########################################################################
# Makefile for pending.c
# Builds a shared library for postgresql to handling mirroring.
# $Id: Makefile,v 1.2 2002/02/04 22:15:17 ssinger Exp $
CCFLAGS = -fpic -I/usr/local/pgsql/include/server
all:
	gcc $(CCFLAGS) -c  pending.c 
	ld -shared -o pending.so pending.o
