mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
* Extract neon and neon_test_utils from postgres repo * Remove neon from vendored postgres repo, and fix build_and_test.yml * Move EmitWarningsOnPlaceholders to end of _PG_init in neon.c (from libpagestore.c) * Fix Makefile location comments * remove Makefile EXTRA_INSTALL flag * Update Dockerfile.compute-node to build and include the neon extension
16 lines
308 B
Makefile
16 lines
308 B
Makefile
# pgxs/neon_test_utils/Makefile
|
|
|
|
|
|
MODULE_big = neon_test_utils
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
neontest.o
|
|
|
|
EXTENSION = neon_test_utils
|
|
DATA = neon_test_utils--1.0.sql
|
|
PGFILEDESC = "neon_test_utils - helpers for neon testing and debugging"
|
|
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|