blob: 6d0b9c08e200122b9f11717c17375a955079b5d7 (
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
34
35
|
#$FreeBSD$
LIB= wind
LDFLAGS= -Wl,--no-undefined
VERSION_MAP= ${KRB5DIR}/lib/wind/version-script.map
LDADD= -lcom_err -lroken
DPADD= ${LIBCOM_ERR} ${LIBROKEN}
INCS= wind.h \
wind_err.h
SRCS= bidi.c \
bidi_table.c \
combining.c \
combining_table.c \
doxygen.c \
errorlist.c \
errorlist_table.c \
ldap.c \
map.c \
map_table.c \
normalize.c \
normalize_table.c \
punycode.c \
stringprep.c \
utf8.c
SRCS+= wind_err.c \
wind_err.h
CFLAGS+=-I${KRB5DIR}/lib/roken -I.
.include <bsd.lib.mk>
.PATH: ${KRB5DIR}/lib/wind
|