summaryrefslogtreecommitdiff
path: root/src/bin/initdb/Makefile
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-09-27 19:53:44 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-09-27 19:53:44 +0000
commit314ed5de6db214600595ddf46eacffb23d0a72e1 (patch)
treee5e71a0556b44d0b60d72d4e85681c867edb3391 /src/bin/initdb/Makefile
parent77c166ba6cf6fe8f7e9737b7fe1793d886dd5cf8 (diff)
downloadpostgresql-314ed5de6db214600595ddf46eacffb23d0a72e1.tar.gz
Define the FRONTEND symbol in postgres_fe.h, which allows us to eliminate
duplicative -DFRONTEND flags from many Makefiles. We still need Makefile control of the symbol in a few places that compile frontend-or-backend src/port/ files, but it's a lot cleaner than before. Hiroshi Saito
Diffstat (limited to 'src/bin/initdb/Makefile')
-rw-r--r--src/bin/initdb/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/initdb/Makefile b/src/bin/initdb/Makefile
index c81378787c..138d5ec7a3 100644
--- a/src/bin/initdb/Makefile
+++ b/src/bin/initdb/Makefile
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.52 2007/01/05 22:19:47 momjian Exp $
+# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.53 2007/09/27 19:53:43 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -14,7 +14,7 @@ subdir = src/bin/initdb
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
-override CPPFLAGS := -DFRONTEND -I$(libpq_srcdir) $(CPPFLAGS)
+override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
OBJS= initdb.o $(WIN32RES)