OSDN Git Service

Fix for bootstrap.c problem (F_* values missing from fmgr.h)
[pg-rex/syncrep.git] / src / bin / Makefile.global
1 #-------------------------------------------------------------------------
2 #
3 # Makefile.inc--
4 #    global configurations for Makefiles in src/bin
5 #
6 # Copyright (c) 1994, Regents of the University of California
7 #
8 #
9 # IDENTIFICATION
10 #    $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.15 1997/04/24 14:30:09 scrappy Exp $
11 #
12 #-------------------------------------------------------------------------
13
14 SRCDIR=..
15 LIBPQDIR:= $(SRCDIR)/libpq
16
17 #
18 # And where libpq goes, so goes the authentication stuff...
19 #
20 ifdef KRBVERS
21 LDFLAGS+= $(KRBLIBS)
22 CFLAGS+= $(KRBFLAGS)
23 endif
24
25
26 INCLUDE_OPT := \
27                -I$(LIBPQDIR) \
28                -I$(SRCDIR)/include 
29
30 CFLAGS += $(INCLUDE_OPT) 
31