]> granicus.if.org Git - postgresql/blob - src/backend/access/transam/Makefile
Replace implementation of pg_log as a relation accessed through the
[postgresql] / src / backend / access / transam / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for access/transam
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/access/transam/Makefile,v 1.15 2001/08/25 18:52:41 tgl Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/backend/access/transam
12 top_builddir = ../../../..
13 include $(top_builddir)/src/Makefile.global
14
15 OBJS = clog.o transam.o varsup.o xact.o xid.o xlog.o xlogutils.o rmgr.o
16
17 all: SUBSYS.o
18
19 SUBSYS.o: $(OBJS)
20         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
21
22 clean: 
23         rm -f SUBSYS.o $(OBJS)
24
25 # ensure that version checks in xlog.c get recompiled when catversion.h changes
26 xlog.o: xlog.c $(top_srcdir)/src/include/catalog/catversion.h