Makefile (884ba43116d4456d5900d3c8824153c604f132b8) Makefile (20adba8bc1beb125d5e5ed8f12e747ae79ca6a10)
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2# $FreeBSD$
3
4PACKAGE= clibs
5SHLIBDIR?= /lib
6
7.include <src.opts.mk>
8

--- 148 unchanged lines hidden (view full) ---

157STATICOBJS+=${LIBC_NONSHARED_SRCS:S/.c$/.o/}
158
159VERSION_DEF=${LIBC_SRCTOP}/Versions.def
160SYMBOL_MAPS=${SYM_MAPS}
161CFLAGS+= -DSYMBOL_VERSIONING
162
163# If there are no machine dependent sources, append all the
164# machine-independent sources:
1# @(#)Makefile 8.2 (Berkeley) 2/3/94
2# $FreeBSD$
3
4PACKAGE= clibs
5SHLIBDIR?= /lib
6
7.include <src.opts.mk>
8

--- 148 unchanged lines hidden (view full) ---

157STATICOBJS+=${LIBC_NONSHARED_SRCS:S/.c$/.o/}
158
159VERSION_DEF=${LIBC_SRCTOP}/Versions.def
160SYMBOL_MAPS=${SYM_MAPS}
161CFLAGS+= -DSYMBOL_VERSIONING
162
163# If there are no machine dependent sources, append all the
164# machine-independent sources:
165.if empty(MDSRCS)
165.if empty(MDSRCS) || ${MK_MACHDEP_OPTIMIZATIONS} == no
166SRCS+= ${MISRCS}
167.else
168# Append machine-dependent sources, then append machine-independent sources
169# for which there is no machine-dependent variant.
170SRCS+= ${MDSRCS}
171.for _src in ${MISRCS}
172.if ${MDSRCS:R:M${_src:R}} == ""
173SRCS+= ${_src}

--- 55 unchanged lines hidden ---
166SRCS+= ${MISRCS}
167.else
168# Append machine-dependent sources, then append machine-independent sources
169# for which there is no machine-dependent variant.
170SRCS+= ${MDSRCS}
171.for _src in ${MISRCS}
172.if ${MDSRCS:R:M${_src:R}} == ""
173SRCS+= ${_src}

--- 55 unchanged lines hidden ---