mirror of
https://github.com/postgres/postgres.git
synced 2025-11-16 15:02:33 +03:00
18 lines
475 B
Makefile
18 lines
475 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for storage/buffer
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/storage/buffer/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/storage/buffer
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = buf_table.o buf_init.o bufmgr.o freelist.o localbuf.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|