mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
dynamically linked. This has been a long time coming with the move of critical libraries from /usr/lib to /lib. If you don't feel comfortable with dynamically linked binaries in your root partition, now is the time to define NO_DYNAMICROOT in your make.conf. Approved by: re
9 lines
131 B
Makefile
9 lines
131 B
Makefile
# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
|
|
# $FreeBSD$
|
|
|
|
BINDIR?= /bin
|
|
WARNS?= 6
|
|
|
|
.if defined(NO_DYNAMICROOT)
|
|
NOSHARED?= YES
|
|
.endif
|