436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
14 lines
188 B
Makefile
14 lines
188 B
Makefile
# Makefile for the init program (INIT)
|
|
PROG= init
|
|
SRCS= init.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
CPPFLAGS+= -O -D_MINIX -D_POSIX_SOURCE
|
|
|
|
.include <minix.prog.mk>
|