blob: ae9c9b82fba03a508c31c357e3913c9ff36446ac (
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
|
# $NetBSD: Makefile,v 1.1 2011/04/13 19:16:51 elric Exp $
USE_FORT?= yes # network protocol library
.include <bsd.own.mk>
.include <${.CURDIR}/../../Makefile.inc>
.PATH: ${HEIMDIST}/base
LIB= heimbase
SRCS= \
array.c \
dict.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>
|