mirror of
https://github.com/postgres/postgres.git
synced 2025-05-01 01:04:50 +03:00
21 lines
563 B
Makefile
21 lines
563 B
Makefile
#############################################
|
|
# Makefile for integer aggregator
|
|
# Copyright (C) 2001 Digital Music Network.
|
|
# by Mark L. Woodward
|
|
# $PostgreSQL: pgsql/contrib/intagg/Makefile,v 1.7 2006/02/27 12:54:39 petere Exp $
|
|
|
|
MODULES = int_aggregate
|
|
DATA_built = int_aggregate.sql
|
|
DATA = uninstall_int_aggregate.sql
|
|
DOCS = README.int_aggregate
|
|
|
|
ifdef USE_PGXS
|
|
PGXS := $(shell pg_config --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/intagg
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|