Makefile 585 Bytes
Newer Older
1 2 3 4
#############################################
# Makefile for integer aggregator
# Copyright (C) 2001 Digital Music Network.
# by Mark L. Woodward
5
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.8 2007/06/26 22:05:02 tgl Exp $
6 7

MODULES = int_aggregate
8
DATA_built = int_aggregate.sql
Peter Eisentraut's avatar
Peter Eisentraut committed
9
DATA = uninstall_int_aggregate.sql
Bruce Momjian's avatar
Bruce Momjian committed
10
DOCS = README.int_aggregate
11

12
ifdef USE_PGXS
13 14
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
15 16 17 18 19
include $(PGXS)
else
subdir = contrib/intagg
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
20
include $(top_srcdir)/contrib/contrib-global.mk
21
endif