Makefile (6a66acb565dde6d5b0ee52eef2a631fbb09df153) | Makefile (120a95cb5080c7dcf6fde1b171f381b98ad28ce7) |
---|---|
1# @(#)Makefile 8.2 (Berkeley) 2/3/94 2# $FreeBSD$ 3# 4# All library objects contain FreeBSD revision strings by default; they may be 5# excluded as a space-saving measure. To produce a library that does 6# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 7# below. Note, there are no IDs for syscall stubs whose sources are generated. 8# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS --- 10 unchanged lines hidden (view full) --- 19# Define (empty) variables so that make doesn't give substitution 20# errors if the included makefiles don't change these: 21MDSRCS= 22MISRCS= 23MDASM= 24MIASM= 25NOASM= 26 | 1# @(#)Makefile 8.2 (Berkeley) 2/3/94 2# $FreeBSD$ 3# 4# All library objects contain FreeBSD revision strings by default; they may be 5# excluded as a space-saving measure. To produce a library that does 6# not contain these strings, add -DSTRIP_FBSDID (see <sys/cdefs.h>) to CFLAGS 7# below. Note, there are no IDs for syscall stubs whose sources are generated. 8# To included legacy CSRG sccsid strings, add -DLIBC_SCCS and -DSYSLIBC_SCCS --- 10 unchanged lines hidden (view full) --- 19# Define (empty) variables so that make doesn't give substitution 20# errors if the included makefiles don't change these: 21MDSRCS= 22MISRCS= 23MDASM= 24MIASM= 25NOASM= 26 |
27# XXX Pull in contrib/netlib/gdtoa, but keep the filenames local to 28# gdtoa out of libc. 29.PATH: ${.CURDIR}/../../contrib/netlib/gdtoa 30.include "${.CURDIR}/gdtoa/Makefile.inc" 31.PATH: 32.PATH: ${.CURDIR}/gdtoa 33 | |
34# 35# If there is a machine dependent makefile, use it: 36# 37.if exists(${.CURDIR}/${MACHINE_ARCH}/Makefile.inc) 38.include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc" 39.endif 40 41.include "${.CURDIR}/db/Makefile.inc" 42.include "${.CURDIR}/compat-43/Makefile.inc" | 27# 28# If there is a machine dependent makefile, use it: 29# 30.if exists(${.CURDIR}/${MACHINE_ARCH}/Makefile.inc) 31.include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc" 32.endif 33 34.include "${.CURDIR}/db/Makefile.inc" 35.include "${.CURDIR}/compat-43/Makefile.inc" |
36.include "${.CURDIR}/gdtoa/Makefile.inc" |
|
43.include "${.CURDIR}/gen/Makefile.inc" 44.if ${MACHINE_ARCH} != "powerpc" 45.include "${.CURDIR}/gmon/Makefile.inc" 46.endif 47.include "${.CURDIR}/locale/Makefile.inc" 48.include "${.CURDIR}/net/Makefile.inc" 49.include "${.CURDIR}/nls/Makefile.inc" 50.include "${.CURDIR}/posix1e/Makefile.inc" --- 52 unchanged lines hidden --- | 37.include "${.CURDIR}/gen/Makefile.inc" 38.if ${MACHINE_ARCH} != "powerpc" 39.include "${.CURDIR}/gmon/Makefile.inc" 40.endif 41.include "${.CURDIR}/locale/Makefile.inc" 42.include "${.CURDIR}/net/Makefile.inc" 43.include "${.CURDIR}/nls/Makefile.inc" 44.include "${.CURDIR}/posix1e/Makefile.inc" --- 52 unchanged lines hidden --- |