mirror of
https://github.com/postgres/postgres.git
synced 2026-02-22 17:31:00 -05:00
18 lines
539 B
Makefile
18 lines
539 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for utils/cache
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/utils/cache/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/utils/cache
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS = attoptcache.o catcache.o inval.o plancache.o relcache.o relmapper.o \
|
|
spccache.o syscache.o lsyscache.o typcache.o ts_cache.o
|
|
|
|
include $(top_srcdir)/src/backend/common.mk
|