diff options
Diffstat (limited to 'sys/arch/i386/stand/libkern/Makefile')
-rw-r--r-- | sys/arch/i386/stand/libkern/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sys/arch/i386/stand/libkern/Makefile b/sys/arch/i386/stand/libkern/Makefile new file mode 100644 index 00000000000..b27a7b102a6 --- /dev/null +++ b/sys/arch/i386/stand/libkern/Makefile @@ -0,0 +1,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> |