]> granicus.if.org Git - postgresql/blob - src/backend/access/transam/Makefile
WAL
[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.13 2000/10/13 12:05:21 vadim Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/backend/access/transam
12 top_builddir = ../../../..
13 include $(top_builddir)/src/Makefile.global
14
15 OBJS = transam.o transsup.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 depend dep:
23         $(CC) -MM $(CFLAGS) *.c >depend
24
25 clean: 
26         rm -f SUBSYS.o $(OBJS)
27
28 # ensure that version checks in xlog.c get recompiled when config.h or
29 # catversion.h changes, even if "make depend" hasn't been done.
30 xlog.o: xlog.c $(top_builddir)/src/include/config.h $(top_srcdir)/src/include/catalog/catversion.h
31
32 ifeq (depend,$(wildcard depend))
33 include depend
34 endif
35