mirror of
https://github.com/postgres/postgres.git
synced 2026-03-18 08:33:45 -04:00
17 lines
475 B
Makefile
17 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
|