/
balmaster
/
postgres
Обзор
Документация
Войти
/
balmaster
/
postgres
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/backend/utils/activity/Makefile
44 строки
1 KB
Michael Paquier
Add support for lock statistics in pgstats
24 мар 2026, 09:32
24 мар 2026, 09:32
4019f72
Код
Авторство
О чём код?
#------------------------------------------------------------------------- # # Makefile for backend/utils/activity # # Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # # src/backend/utils/activity/Makefile # #------------------------------------------------------------------------- subdir = src/backend/utils/activity top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS) OBJS = \ backend_progress.o \ backend_status.o \ pgstat.o \ pgstat_archiver.o \ pgstat_backend.o \ pgstat_bgwriter.o \ pgstat_checkpointer.o \ pgstat_database.o \ pgstat_function.o \ pgstat_io.o \ pgstat_lock.o \ pgstat_relation.o \ pgstat_replslot.o \ pgstat_shmem.o \ pgstat_slru.o \ pgstat_subscription.o \ pgstat_wal.o \ pgstat_xact.o \ wait_event.o \ wait_event_funcs.o # Force these dependencies to be known even without dependency info built: wait_event.o: wait_event.c $(top_builddir)/src/backend/utils/pgstat_wait_event.c wait_event_funcs.o: wait_event_funcs.c $(top_builddir)/src/backend/utils/wait_event_funcs_data.c include $(top_srcdir)/src/backend/common.mk