mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
* Introduce LAZPERF_CPPFLAGS Without this the las.hpp header file is not found when lazperf was installed in a non-system place. * Use GHT_CPPFLAGS Without this the ght.h header file is not found when libght was installed in a non-system place. * Use tabs in Makefiles
24 lines
432 B
Makefile
24 lines
432 B
Makefile
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
CXXFLAGS = -fPIC -std=c++0x
|
|
|
|
XML2_CPPFLAGS = @XML2_CPPFLAGS@
|
|
XML2_LDFLAGS = @XML2_LDFLAGS@
|
|
|
|
ZLIB_CPPFLAGS = @ZLIB_CPPFLAGS@
|
|
ZLIB_LDFLAGS = @ZLIB_LDFLAGS@
|
|
|
|
CUNIT_CPPFLAGS = @CUNIT_CPPFLAGS@
|
|
CUNIT_LDFLAGS = @CUNIT_LDFLAGS@
|
|
|
|
GHT_CPPFLAGS = @GHT_CPPFLAGS@
|
|
GHT_LDFLAGS = @GHT_LDFLAGS@
|
|
|
|
PG_CONFIG = @PG_CONFIG@
|
|
PGXS = @PGXS@
|
|
|
|
LIB_A = libpc.a
|
|
LIB_A_LAZPERF = liblazperf.a
|
|
|
|
LAZPERF_CPPFLAGS = @LAZPERF_CPPFLAGS@
|