blob: 0bf850de7ab8936df68312c399f4b63bdf579a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#-------------------------------------------------------------------------
#
# Makefile.inc--
# global configurations for Makefiles in src/bin
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.14 1997/04/04 10:40:56 scrappy Exp $
#
#-------------------------------------------------------------------------
LIBPQDIR:= $(SRCDIR)/libpq
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef KRBVERS
LDFLAGS+= $(KRBLIBS)
CFLAGS+= $(KRBFLAGS)
endif
INCLUDE_OPT := \
-I$(LIBPQDIR) \
-I$(SRCDIR)/include
CFLAGS += $(INCLUDE_OPT)
|