# Makefile
# 	 Makefile for the deny_updates pl/perl trigger
#
# It implements a trigger function that blocks updates of individual attributes.
subdir = contrib/deny_updates

DATA = deny_updates.sql
REGRESS = deny_updates_test

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

all: 
	@echo "Run make install to install the trigger function"
