blob: ec1fa1f21f5bb5f13d5b1d95fed2efded7347459 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
SRCDIR= ../..
include ../../Makefile.global
CFLAGS+= -I../../include -I$(LIBPQDIR)
#
# And where libpq goes, so goes the authentication stuff...
#
ifdef KRBVERS
LDFLAGS+= $(KRBLIBS)
CFLAGS+= $(KRBFLAGS)
endif
all: complex$(DLSUFFIX) funcs$(DLSUFFIX)
clean:
rm -f complex$(DLSUFFIX) funcs$(DLSUFFIX)
|