blob: 3eb211717c663549264e75b7864ba2bc40c1e052 (
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
|
# $NetBSD: Makefile,v 1.2 2017/01/28 21:31:52 christos Exp $
USE_FORT?= yes # network protocol library
.include <bsd.own.mk>
.include <${.CURDIR}/../../Makefile.inc>
.PATH: ${HEIMDIST}/lib/base
LIB= heimbase
SRCS= \
array.c \
bsearch.c \
db.c \
data.c \
dict.c \
error.c \
json.c \
number.c \
bool.c \
heimbase.c \
null.c \
string.c
INCSDIR= /usr/include/krb5
INCS= heimbase.h
.include <${HEIMBASE}/Makefile.rules.inc>
.include <bsd.lib.mk>
|