blob: b27a7b102a614b8d87bca0b504de82cb19faebc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile,v 1.1 2005/07/30 14:32:46 millert Exp $
.include "${.CURDIR}/../Makefile.inc"
LIB= kern
S=${.CURDIR}/../../../..
SADIR=${.CURDIR}/..
.PATH: ${S}/lib/libkern
NOPROFILE=noprofile
NOPIC=nopic
# kern routines
SRCS+= moddi3.c qdivrem.c strlcpy.c strlcat.c
all: ${KERNLIB}
install:
.include <bsd.lib.mk>
|