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
12 lines
225 B
Makefile
12 lines
225 B
Makefile
# Makefile for service
|
|
PROGS= service printconfig
|
|
SRCS.service=service.c parse.c util.c
|
|
SRCS.printconfig=print.c parse.c util.c
|
|
|
|
BINDIR= /bin
|
|
MAN.service=
|
|
MAN.printconfig=
|
|
|
|
CPPFLAGS+= -I${MINIXSRCDIR}
|
|
|
|
.include <bsd.prog.mk>
|