436d6012a3
-Move libdriver to lib/ -Install all boot image services on filesystem to aid restartability
12 lines
166 B
Makefile
12 lines
166 B
Makefile
# Makefile for the hello driver.
|
|
PROG= hello
|
|
SRCS= hello.c
|
|
|
|
DPADD+= ${LIBDRIVER} ${LIBSYS}
|
|
LDADD+= -ldriver -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.prog.mk>
|