pointcloud/pgsql/Makefile
Paul Ramsey cec591ce2e Start on WKB support and necessary
infrastructure to do PCPOINT in the database
2013-01-18 12:02:54 -08:00

22 lines
403 B
Makefile

# pointcloud
include ../config.mk
MODULE_big = pointcloud
OBJS = \
pc_inout.o \
pc_functions.o
EXTENSION = pointcloud
DATA = pointcloud--1.0.sql
REGRESS = pointcloud
# Add in build/link flags for libpc
PG_CPPFLAGS += -I../libpc
SHLIB_LINK += $(filter -lm, $(LIBS)) ../libpc/$(LIBPC_A)
# We are going to use PGXS for sure
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)