Makefile (2b6ca0f6a5d748b5bda4e78278a36a827e0e0c81) | Makefile (d7eda4625339399198f44a30a72f0500b1a49ee3) |
---|---|
1# @(#)Makefile 5.1beta 93/09/24 2# $FreeBSD$ 3# 4# ==================================================== 5# Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. 6# 7# Developed at SunPro, a Sun Microsystems, Inc. business. 8# Permission to use, copy, modify, and distribute this --- 47 unchanged lines hidden (view full) --- 56 s_scalbln.c s_scalbn.c s_scalbnf.c s_signbit.c \ 57 s_signgam.c s_significand.c s_significandf.c s_sin.c s_sinf.c s_tan.c \ 58 s_tanf.c s_tanh.c s_tanhf.c s_trunc.c s_truncf.c s_truncl.c \ 59 w_cabs.c w_cabsf.c w_drem.c w_dremf.c 60 61# Location of fpmath.h and _fpmath.h 62LIBCDIR= ${.CURDIR}/../libc 63CFLAGS+= -I${LIBCDIR}/include -I${LIBCDIR}/${MACHINE_ARCH} | 1# @(#)Makefile 5.1beta 93/09/24 2# $FreeBSD$ 3# 4# ==================================================== 5# Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. 6# 7# Developed at SunPro, a Sun Microsystems, Inc. business. 8# Permission to use, copy, modify, and distribute this --- 47 unchanged lines hidden (view full) --- 56 s_scalbln.c s_scalbn.c s_scalbnf.c s_signbit.c \ 57 s_signgam.c s_significand.c s_significandf.c s_sin.c s_sinf.c s_tan.c \ 58 s_tanf.c s_tanh.c s_tanhf.c s_trunc.c s_truncf.c s_truncl.c \ 59 w_cabs.c w_cabsf.c w_drem.c w_dremf.c 60 61# Location of fpmath.h and _fpmath.h 62LIBCDIR= ${.CURDIR}/../libc 63CFLAGS+= -I${LIBCDIR}/include -I${LIBCDIR}/${MACHINE_ARCH} |
64SYM_MAPS+= ${.CURDIR}/Symbol.map |
|
64 | 65 |
66.if defined(SYMVER_ENABLED) 67VERSION_DEF= ${LIBCDIR}/Versions.def 68SYMBOL_MAPS= ${SYM_MAPS} 69.endif 70 |
|
65# C99 long double functions 66COMMON_SRCS+= s_copysignl.c s_fabsl.c 67.if ${LDBL_PREC} != 53 68# If long double != double use these; otherwise, we alias the double versions. 69COMMON_SRCS+= s_fmal.c s_frexpl.c s_nextafterl.c s_nexttoward.c s_scalbnl.c 70.endif 71 72# C99 complex functions --- 86 unchanged lines hidden --- | 71# C99 long double functions 72COMMON_SRCS+= s_copysignl.c s_fabsl.c 73.if ${LDBL_PREC} != 53 74# If long double != double use these; otherwise, we alias the double versions. 75COMMON_SRCS+= s_fmal.c s_frexpl.c s_nextafterl.c s_nexttoward.c s_scalbnl.c 76.endif 77 78# C99 complex functions --- 86 unchanged lines hidden --- |