mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
22 lines
395 B
Makefile
22 lines
395 B
Makefile
# pointcloud
|
|
|
|
include ../config.mk
|
|
|
|
MODULE_big = pointcloud
|
|
OBJS = \
|
|
pc_inout.o \
|
|
pc_access.o \
|
|
pc_pgsql.o
|
|
|
|
EXTENSION = pointcloud
|
|
DATA = pointcloud--1.0.sql
|
|
|
|
REGRESS = pointcloud
|
|
|
|
# Add in build/link flags for lib
|
|
PG_CPPFLAGS += -I../lib
|
|
SHLIB_LINK += $(filter -lm, $(LIBS)) $(XML2_LDFLAGS) $(ZLIB_LDFLAGS) $(GHT_LDFLAGS) ../lib/$(LIB_A)
|
|
|
|
# We are going to use PGXS for sure
|
|
include $(PGXS)
|