mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-02 12:30:24 +08:00
bf167aade1
These look like they were just copied & pasted from common/Makefile.am. The funcs in this dir are all stubs that don't actually call any math or builtin functions, and a simple compile shows they produce identical object code. So delete to simplify the build rules.
16 lines
472 B
Makefile
16 lines
472 B
Makefile
## Process this file with automake to generate Makefile.in
|
|
|
|
AM_CPPFLAGS = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
src = feclearexcept.c fe_dfl_env.c fegetenv.c fegetexceptflag.c \
|
|
fegetround.c feholdexcept.c feraiseexcept.c fesetenv.c \
|
|
fesetexceptflag.c fesetround.c fetestexcept.c feupdateenv.c
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
lib_a_SOURCES = $(src)
|
|
lib_a_CFLAGS = $(AM_CFLAGS)
|
|
|
|
# A partial dependency list.
|
|
|
|
$(lib_a_OBJECTS): $(srcdir)/../../libc/include/fenv.h
|