mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
ac652466ec
Per Rocco Altier.
19 lines
455 B
Makefile
19 lines
455 B
Makefile
# $PostgreSQL: pgsql/contrib/earthdistance/Makefile,v 1.15 2005/07/24 23:30:09 tgl Exp $
|
|
|
|
MODULES = earthdistance
|
|
DATA_built = 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
|