freebsd-dev/sbin/init/Makefile

21 lines
364 B
Makefile
Raw Normal View History

# @(#)Makefile 8.1 (Berkeley) 7/19/93
1999-08-28 00:22:10 +00:00
# $FreeBSD$
PACKAGE=runtime
PROG= init
SRCS= init.c getmntopts.c
MAN= init.8
PRECIOUSPROG=
INSTALLFLAGS=-b -B.bak
CFLAGS+=-DDEBUGSHELL -DSECURE -DLOGIN_CAP -DCOMPAT_SYSV_INIT
LIBADD= util crypt
# Needed for getmntopts.c
MOUNT= ${SRCTOP}/sbin/mount
CFLAGS+=-I${MOUNT}
.PATH: ${MOUNT}
2004-12-21 09:59:45 +00:00
NO_SHARED?= YES
.include <bsd.prog.mk>