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
18 lines
325 B
Makefile
18 lines
325 B
Makefile
# Makefile for the Realtek RTL8169 ethernet driver (RTL8169)
|
|
PROG= rtl8169
|
|
SRCS= rtl8169.c
|
|
|
|
FILES=$(PROG).conf
|
|
FILESNAME=$(PROG)
|
|
FILESDIR= /etc/system.conf.d
|
|
|
|
DPADD+= ${LIBNETDRIVER} ${LIBSYS} ${LIBTIMERS}
|
|
LDADD+= -lnetdriver -lsys -ltimers
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
CPPFLAGS+= -I${MINIXSRCDIR}
|
|
|
|
.include <minix.service.mk>
|