/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/modules/test_checksums/Makefile
36 строк
942 B
Tom Lane
Fix not-quite-right Makefile for src/test/modules/test_checksums.
22 апр 2026, 01:29
22 апр 2026, 01:29
64b2b42
Код
Авторство
О чём код?
#------------------------------------------------------------------------- # # Makefile for src/test/modules/test_checksums # # Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # # src/test/modules/test_checksums/Makefile # #------------------------------------------------------------------------- EXTRA_INSTALL = src/test/modules/injection_points export enable_injection_points MODULE_big = test_checksums OBJS = \ $(WIN32RES) \ test_checksums.o PGFILEDESC = "test_checksums - test code for data checksums" EXTENSION = test_checksums DATA = test_checksums--1.0.sql TAP_TESTS = 1 ifdef USE_PGXS PG_CONFIG = pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) include $(PGXS) else subdir = src/test/modules/test_checksums top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif