709a4d5bb6
a struct called kernelops, which contains standard system calls for the normal case and rump system calls for the rump case. Make it possible to run the lfs cleaner in a library fashion (taking the quick route with the implementation).
15 lines
267 B
Makefile
15 lines
267 B
Makefile
# $NetBSD: Makefile,v 1.15 2009/08/06 00:51:55 pooka Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/18/93
|
|
|
|
.include "Makefile.inc"
|
|
|
|
PROG= lfs_cleanerd
|
|
MAN= lfs_cleanerd.8
|
|
|
|
BINDIR= /libexec
|
|
.if (${MKDYNAMICROOT} == "no")
|
|
LDSTATIC?= -static
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|