Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « nds32 « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b07c188180b177d6a3855017b941bca01e504fd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
## 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)