2002-02-24 22:45:27 -05:00
|
|
|
#############################################
|
|
|
|
|
# Makefile for integer aggregator
|
|
|
|
|
# Copyright (C) 2001 Digital Music Network.
|
|
|
|
|
# by Mark L. Woodward
|
2006-02-27 07:54:39 -05:00
|
|
|
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.7 2006/02/27 12:54:39 petere Exp $
|
2002-02-24 22:45:27 -05:00
|
|
|
|
|
|
|
|
MODULES = int_aggregate
|
2002-02-24 23:16:58 -05:00
|
|
|
DATA_built = int_aggregate.sql
|
2006-02-27 07:54:39 -05:00
|
|
|
DATA = uninstall_int_aggregate.sql
|
2002-02-24 23:08:03 -05:00
|
|
|
DOCS = README.int_aggregate
|
2002-02-24 22:45:27 -05:00
|
|
|
|
2004-08-20 16:13:10 -04:00
|
|
|
ifdef USE_PGXS
|
2005-09-27 13:13:14 -04:00
|
|
|
PGXS := $(shell pg_config --pgxs)
|
2004-08-20 16:13:10 -04:00
|
|
|
include $(PGXS)
|
|
|
|
|
else
|
|
|
|
|
subdir = contrib/intagg
|
|
|
|
|
top_builddir = ../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2002-02-24 22:45:27 -05:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-20 16:13:10 -04:00
|
|
|
endif
|