mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-22 14:27:00 +08:00
Now that pgstat is not related to postmaster anymore, src/backend/postmaster is not a well fitting directory. Author: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/20220303021600.hs34ghqcw6zcokdh@alap3.anarazel.de
35 lines
852 B
Makefile
35 lines
852 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for backend/utils/activity
|
|
#
|
|
# Portions Copyright (c) 1996-2022, 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
|
|
|
|
OBJS = \
|
|
backend_progress.o \
|
|
backend_status.o \
|
|
pgstat.o \
|
|
pgstat_archiver.o \
|
|
pgstat_bgwriter.o \
|
|
pgstat_checkpointer.o \
|
|
pgstat_database.o \
|
|
pgstat_function.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
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|