1996-10-27 04:55:05 -05:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
2000-07-19 12:30:27 -04:00
|
|
|
# Makefile for the bootstrap module
|
1996-10-27 04:55:05 -05:00
|
|
|
#
|
2010-09-20 16:08:53 -04:00
|
|
|
# src/backend/bootstrap/Makefile
|
1996-10-27 04:55:05 -05:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
2000-07-19 12:30:27 -04:00
|
|
|
subdir = src/backend/bootstrap
|
|
|
|
|
top_builddir = ../../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
1997-04-15 13:24:26 -04:00
|
|
|
|
2010-01-04 22:56:52 -05:00
|
|
|
override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS)
|
2002-01-08 19:06:42 -05:00
|
|
|
|
2010-11-23 15:27:50 -05:00
|
|
|
OBJS= bootparse.o bootstrap.o
|
1996-10-27 04:55:05 -05:00
|
|
|
|
2008-02-19 05:30:09 -05:00
|
|
|
include $(top_srcdir)/src/backend/common.mk
|
2000-07-19 12:30:27 -04:00
|
|
|
|
2002-11-01 17:52:34 -05:00
|
|
|
# bootscanner is compiled as part of bootparse
|
2009-08-28 16:26:19 -04:00
|
|
|
bootparse.o: bootscanner.c
|
1996-10-27 04:55:05 -05:00
|
|
|
|
2008-08-29 09:02:33 -04:00
|
|
|
# bootparse.c and bootscanner.c are in the distribution tarball, so
|
|
|
|
|
# they are not cleaned here.
|