9a4e73fe5e
need for libstdc++ in /lib, and the generated binary is actually smaller statically linked than dynamically + sizeof(libstdc++). Additionally, devd doesn't use get*by*() which is one of the main motivations for dynamically linking your root partition anyway.
19 lines
224 B
Makefile
19 lines
224 B
Makefile
# $FreeBSD$
|
|
|
|
PROG_CXX=devd
|
|
SRCS= devd.cc token.l parse.y y.tab.h
|
|
MAN= devd.8 devd.conf.5
|
|
WARNS?= 1
|
|
|
|
NOSHARED?=YES
|
|
|
|
DPADD= ${LIBL}
|
|
LDADD= -ll
|
|
|
|
YFLAGS+=-v
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
|
|
CLEANFILES= y.output
|
|
|
|
.include <bsd.prog.mk>
|