blob: 6f4316bfb5e663c2e676c776f3c76a90827d3565 (
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
31
32
33
|
#-------------------------------------------------------------------------
#
# 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.12 1996/11/26 07:37:54 bryanh Exp $
#
#-------------------------------------------------------------------------
LIBPQDIR:= $(SRCDIR)/libpq
LD_ADD+= -L$(SRCDIR)/libpq -lpq
DPADD+= -L$(SRCDIR)/libpq -lpq
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef KRBVERS
LD_ADD+= $(KRBLIBS)
CFLAGS+= $(KRBFLAGS)
endif
INCLUDE_OPT := \
-I$(LIBPQDIR) \
-I$(SRCDIR)/include
CFLAGS += $(INCLUDE_OPT)
|