21edb039c6
are some problems with static executables), make.conf (would also affect ports which do not use GNU make and do not override the compile targets) or in the kernel config (via "makeoptions WITH_CTF=yes"). Additional (related) changes: - propagate WITH_CTF to module builds - do not add -g to the linker flags, it's a noop there anyway (at least according to the man page of ld) - do not add -g to CFLAGS unconditionally we need to have a look if it is really needed (IMO not) or if there is a way to add it only when WITH_CTF is used Note: ctfconvert / ctfmerge lines will not appear in the build output, to protect the innocent (those which do not build with WITH_CTF would see the shell-test and may think WITH_CTF is used). Reviewed by: imp, jhb, scottl (earlier version) Discussed on: arch@
17 lines
328 B
Makefile
17 lines
328 B
Makefile
# $FreeBSD$
|
|
|
|
PORTSDIR?= /usr/ports
|
|
BSDPORTMK?= ${PORTSDIR}/Mk/bsd.port.mk
|
|
|
|
# Needed to keep bsd.own.mk from reading in /etc/src.conf
|
|
# and setting MK_* variables when building ports.
|
|
_WITHOUT_SRCCONF=
|
|
|
|
# Enable CTF conversion on request.
|
|
.if defined(WITH_CTF)
|
|
.undef NO_CTF
|
|
.endif
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${BSDPORTMK}"
|