mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
fe83b3ebc6
by David Fetter
20 lines
494 B
Makefile
20 lines
494 B
Makefile
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.17 2006/02/27 12:54:38 petere Exp $
|
|
|
|
MODULES = earthdistance
|
|
DATA_built = earthdistance.sql
|
|
DATA = uninstall_earthdistance.sql
|
|
DOCS = README.earthdistance
|
|
REGRESS = earthdistance
|
|
|
|
SHLIB_LINK += $(filter -lm, $(LIBS))
|
|
|
|
ifdef USE_PGXS
|
|
PGXS := $(shell pg_config --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/earthdistance
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|