# Makefile
# 	 Makefile for the uuid datatype implementation.
#
# This module is a backport of pg_uuid_t datatype from 8.3 branch.

MODULES = uuid
DATA_built = uuid.sql
DOCS = README.uuid
REGRESS = uuid

ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/uuid
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif


