blob: 952740e168e7506153ab384e91a770bf0ee7be3f (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# $FreeBSD$
LIB= roken
INCS= roken.h roken-common.h
SRCS= base64.c \
bswap.c \
closefrom.c \
concat.c \
copyhostent.c \
dumpdata.c \
ecalloc.c \
emalloc.c \
environment.c \
eread.c \
erealloc.c \
esetenv.c \
estrdup.c \
ewrite.c \
get_default_username.c \
get_window_size.c \
getaddrinfo_hostspec.c \
getarg.c \
getnameinfo_verified.c \
hex.c \
hostent_find_fqdn.c \
issuid.c \
k_getpwnam.c \
k_getpwuid.c \
mini_inetd.c \
ndbm_wrap.c \
net_read.c \
net_write.c \
parse_bytes.c \
parse_time.c \
parse_units.c \
resolve.c \
roken.h \
roken_gethostby.c \
rtbl.c \
simple_exec.c \
snprintf.c \
socket.c \
strcollect.c \
strlwr.c \
strndup.c \
strnlen.c \
strpool.c \
strsep_copy.c \
strupr.c \
timeval.c \
tm2time.c \
unvis.c \
verify.c \
vis.c \
warnerr.c \
write_pid.c
CFLAGS+=-I${KRB5DIR}/lib/roken -I.
CLEANFILES= roken.h
roken.h: ../../tools/make-roken/make-roken
../../tools/make-roken/make-roken > ${.TARGET}
../../tools/make-roken/make-roken:
cd ${.CURDIR}/../../tools/make-roken && ${MAKE}
.include <bsd.lib.mk>
.PATH: ${KRB5DIR}/lib/roken
|