349a158056
. rc script and service know to look in /usr/pkg/.. for extra binaries and conf files . service split into parsing config and doing RS request so that a new utility (printconfig) can just print the config in machine-parseable format for netconf integration . converted all base system eth drivers/netconf
21 lines
314 B
Makefile
21 lines
314 B
Makefile
##
|
|
## Makefile for Dec21140A ethernet board driver
|
|
##
|
|
PROG= dec21140A
|
|
SRCS= dec21140A.c
|
|
|
|
FILES=$(PROG).conf
|
|
FILESNAME=$(PROG)
|
|
FILESDIR= /etc/system.conf.d
|
|
|
|
DPADD+= ${LIBNETDRIVER} ${LIBSYS}
|
|
LDADD+= -lnetdriver -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
debug= 0
|
|
CPPFLAGS+= -Ddebug=${debug} -w
|
|
|
|
.include <minix.service.mk>
|