]> granicus.if.org Git - postgresql/blob - src/backend/access/transam/Makefile
$Header: -> $PostgreSQL Changes ...
[postgresql] / src / backend / access / transam / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for access/transam
5 #
6 # IDENTIFICATION
7 #    $PostgreSQL: pgsql/src/backend/access/transam/Makefile,v 1.18 2003/11/29 19:51:40 pgsql 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 xlog.o xlogutils.o rmgr.o slru.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