mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
18 lines
278 B
Makefile
18 lines
278 B
Makefile
# pointcloud
|
|
|
|
MODULE_big = pointcloud
|
|
OBJS= pc_core.o
|
|
|
|
EXTENSION = pointcloud
|
|
DATA = pointcloud--1.0.sql
|
|
|
|
REGRESS = pointcloud
|
|
|
|
SHLIB_LINK += $(filter -lm, $(LIBS))
|
|
|
|
# We are going to use PGXS for sure
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
|