2008-10-26 10:42:09 +03:00
|
|
|
# $NetBSD: Makefile.inc,v 1.4 2008/10/26 07:42:09 mrg Exp $
|
2006-03-12 00:07:18 +03:00
|
|
|
# @(#)Makefile 8.2 (Berkeley) 2/3/94
|
|
|
|
#
|
|
|
|
# All library objects contain sccsid strings by default; they may be
|
|
|
|
# excluded as a space-saving measure. To produce a library that does
|
|
|
|
# not contain these strings, delete -DLIBC_SCCS and -DSYSLIBC_SCCS
|
|
|
|
# from CPPFLAGS below. To remove these strings from just the system call
|
|
|
|
# stubs, remove just -DSYSLIBC_SCCS from CPPFLAGS.
|
|
|
|
#
|
|
|
|
# The NLS (message catalog) functions are always in libc. To choose that
|
|
|
|
# strerror(), perror(), strsignal(), psignal(), etc. actually call the NLS
|
|
|
|
# functions, put -DNLS on the CPPFLAGS line below.
|
|
|
|
#
|
|
|
|
# The YP functions are always in libc. To choose that getpwent() and friends
|
|
|
|
# actually call the YP functions, put -DYP on the CPPFLAGS line below.
|
|
|
|
#
|
|
|
|
# The Hesiod functions are always in libc. To choose that getpwent() and friends
|
|
|
|
# actually call the Hesiod functions, put -DHESIOD on the CPPFLAGS line below.
|
|
|
|
|
2007-06-03 21:36:08 +04:00
|
|
|
USE_FORT?= yes
|
Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the
FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to
various string and memory copy and set functions (as well as a few system
calls and other miscellany) where known at function entry. RedHat has
evidently built all "core system packages" with this option for some time.
This option should be used at the top of Makefiles (or Makefile.inc where
this is used for subdirectories) but after any setting of LIB.
This is only useful for userland code, and cannot be used in libc or in
any code which includes the libc internals, because it overrides certain
libc functions with macros. Some effort has been made to make USE_FORT=yes
work correctly for a full-system build by having the bsd.sys.mk logic
disable the feature where it should not be used (libc, libssp iteself,
the kernel) but no attempt has been made to build the entire system with
USE_FORT and doing so will doubtless expose numerous bugs and misfeatures.
Adjust the system build so that all programs and libraries that are setuid,
directly handle network data (including serial comm data), perform
authentication, or appear likely to have (or have a history of having)
data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default,
with the exception of libc, which cannot use USE_FORT and thus uses
only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no
per-directory or in a system build will disable if desired.
2007-05-28 16:06:17 +04:00
|
|
|
|
2006-03-12 00:07:18 +03:00
|
|
|
USE_SHLIBDIR= yes
|
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
WARNS=4
|
|
|
|
CPPFLAGS+= -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
|
|
|
|
|
|
|
|
.if (${USE_HESIOD} != "no")
|
|
|
|
CPPFLAGS+= -DHESIOD
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if (${USE_INET6} != "no")
|
|
|
|
CPPFLAGS+= -DINET6
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CPPFLAGS+= -DNLS
|
|
|
|
|
|
|
|
.if (${USE_YP} != "no")
|
|
|
|
CPPFLAGS+= -DYP
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
|
|
# Set lint to exit on warnings
|
|
|
|
LINTFLAGS+= -w
|
|
|
|
.endif
|
|
|
|
# ignore 'empty translation unit' warnings.
|
|
|
|
LINTFLAGS+= -X 272
|
|
|
|
|
2008-10-26 10:42:09 +03:00
|
|
|
.include "libcincludes.mk"
|
2006-03-12 00:07:18 +03:00
|
|
|
|
|
|
|
ARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR}
|
|
|
|
AFLAGS+= -I${ARCHDIR}
|
|
|
|
.if defined(DESTDIR)
|
|
|
|
AFLAGS+= -nostdinc -idirafter ${DESTDIR}/usr/include
|
|
|
|
.endif
|
|
|
|
CLEANFILES+= tags
|
|
|
|
|
|
|
|
# Don't try to lint the C library against itself when creating llib-lc.ln
|
|
|
|
LLIBS=
|
|
|
|
|
|
|
|
INCSDIR= /usr/include
|