mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-24 16:07:19 +08:00
ccbfa9b5eb
The TI proprietary toolchain uses nonstandard names for some math library functions. In order to achieve ABI compatibility between GNU and TI toolchains, add support for the TI function names. Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>
20 lines
580 B
Makefile
20 lines
580 B
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
INCLUDES = -I $(newlib_basedir)/../newlib/libm/common $(NEWLIB_CFLAGS) \
|
|
$(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
LIB_SOURCES = \
|
|
fpclassify.c fpclassifyf.c isfinite.c isfinitef.c isinf.c \
|
|
isinff.c isnan.c isnanf.c isnormal.c isnormalf.c
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
lib_a_SOURCES = $(LIB_SOURCES)
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
lib_a_CCASFLAGS = $(AM_CCASFLAGS)
|
|
noinst_DATA =
|
|
|
|
include $(srcdir)/../../../Makefile.shared
|
|
|
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|