]> granicus.if.org Git - postgresql/blob - src/backend/bootstrap/Makefile
Fix initialization of fake LSN for unlogged relations
[postgresql] / src / backend / bootstrap / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile for the bootstrap module
4 #
5 # src/backend/bootstrap/Makefile
6 #
7 #-------------------------------------------------------------------------
8
9 subdir = src/backend/bootstrap
10 top_builddir = ../../..
11 include $(top_builddir)/src/Makefile.global
12
13 override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS)
14
15 OBJS= bootparse.o bootstrap.o
16
17 include $(top_srcdir)/src/backend/common.mk
18
19 # bootscanner is compiled as part of bootparse
20 bootparse.o: bootscanner.c
21
22 # bootparse.c and bootscanner.c are in the distribution tarball, so
23 # they are not cleaned here.