4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-10 19:19:12 +08:00

19 lines
335 B
Makefile
Raw Normal View History

## Process this file with automake to generate Makefile.in
AM_CPPFLAGS = -I $(abs_newlib_basedir)/libm/common $(NEWLIB_CFLAGS) \
$(CROSS_CFLAGS) $(TARGET_CFLAGS)
src =
if HAS_NDS32_FPU_SP
src += wf_sqrt.S
endif
if HAS_NDS32_FPU_DP
src += w_sqrt.S
endif
noinst_LIBRARIES = lib.a
lib_a_SOURCES = $(src)
lib_a_CFLAGS = $(AM_CFLAGS)