minix/drivers/hello/Makefile
Arun Thomas c0c8d25799 Rename mkfiles from minix.*.mk to bsd.*.mk
Makes things easier for pkgsrc
2010-06-25 18:29:09 +00:00

13 lines
164 B
Makefile

# Makefile for the hello driver.
PROG= hello
SRCS= hello.c
DPADD+= ${LIBDRIVER} ${LIBSYS}
LDADD+= -ldriver -lsys
MAN=
BINDIR?= /usr/sbin
.include <bsd.prog.mk>