mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
20 lines
432 B
Makefile
20 lines
432 B
Makefile
# contrib/earthdistance/Makefile
|
|
|
|
MODULES = earthdistance
|
|
DATA_built = earthdistance.sql
|
|
DATA = uninstall_earthdistance.sql
|
|
REGRESS = earthdistance
|
|
|
|
LDFLAGS_SL += $(filter -lm, $(LIBS))
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
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
|