9152e1c5a7
The tested targets are the followgin ones: * tools * distribution * sets * release The remaining NetBSD targets have not been disabled nor tested *at all*. Try them at your own risk, they may reboot the earth. For all compliant Makefiles, objects and generated files are put in MAKEOBJDIR, which means you can now keep objects between two branch switching. Same for DESTDIR, please refer to build.sh options. Regarding new or modifications of Makefiles a few things: * Read share/mk/bsd.README * If you add a subdirectory, add a Makefile in it, and have it called by the parent through the SUBDIR variable. * Do not add arbitrary inclusion which crosses to another branch of the hierarchy; If you can't do without it, put a comment on why. If possible, do not use inclusion at all. * Use as much as possible the infrastructure, it is here to make life easier, do not fight it. Sets and package are now used to track files. We have one set called "minix", composed of one package called "minix-sys"
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.14 2012/03/21 14:52:40 christos Exp $
|
|
# @(#)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.
|
|
.if defined(__MINIX)
|
|
.include "minix-config.inc"
|
|
.endif
|
|
|
|
USE_FORT?= yes
|
|
|
|
USE_SHLIBDIR= yes
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
WARNS=5
|
|
.if defined(__MINIX)
|
|
CPPFLAGS+= -D_LIBC
|
|
.else
|
|
CPPFLAGS+= -D_LIBC -DLIBC_SCCS -DSYSLIBC_SCCS -D_REENTRANT
|
|
CPPFLAGS+= -D_DIAGNOSTIC
|
|
.endif
|
|
|
|
.if (${USE_HESIOD} != "no")
|
|
CPPFLAGS+= -DHESIOD
|
|
.endif
|
|
|
|
.if (${USE_INET6} != "no")
|
|
CPPFLAGS+= -DINET6
|
|
.endif
|
|
|
|
CPPFLAGS+= -DNLS
|
|
|
|
.if (${USE_YP} != "no")
|
|
CPPFLAGS+= -DYP
|
|
.endif
|
|
|
|
# Set lint to exit on warnings
|
|
LINTFLAGS+= -w
|
|
# ignore 'empty translation unit' warnings.
|
|
LINTFLAGS+= -X 272
|
|
|
|
.include "libcincludes.mk"
|
|
|
|
ARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR}
|
|
AFLAGS+= -I${ARCHDIR}
|
|
CLEANFILES+= tags
|
|
|
|
# Don't try to lint the C library against itself when creating llib-lc.ln
|
|
LLIBS=
|
|
|
|
INCSDIR= /usr/include
|