e01a93b63c
of their individual packages based on MK_foo evaluation. There is no intent to split inet/inet6 or other similar combinations for package creation, since they are created during build time. Noticed/prodded by: lidl Sponsored by: The FreeBSD Foundation
26 lines
305 B
Makefile
26 lines
305 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG_CXX=devd
|
|
SRCS= devd.cc token.l parse.y y.tab.h
|
|
MAN= devd.8 devd.conf.5
|
|
|
|
WARNS?= 3
|
|
|
|
NO_SHARED?=YES
|
|
|
|
LIBADD= l util
|
|
|
|
YFLAGS+=-v
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
|
|
CLEANFILES= y.output
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|