source: trunk/libs/newlib/src/newlib/libc/sys/linux/cmath/Makefile.am

Last change on this file was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 982 bytes
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = -I$(srcdir)/../include $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7LIB_SOURCES = \
8        s_cacos.c    s_casinf.c   s_catanh.c   s_ccosh.c   s_clog.c     s_cpowf.c   s_csinh.c   s_ctan.c \
9        s_cacosf.c   s_casinh.c   s_catanhf.c  s_ccoshf.c  s_clog10.c   s_csinhf.c  s_ctanf.c \
10        s_cacosh.c   s_casinhf.c  s_clog10f.c  s_cproj.c   s_ctanh.c \
11        s_cacoshf.c  s_cprojf.c  s_ctanhf.c \
12        s_cexp.c    s_clogf.c    s_csqrt.c  \
13        s_catan.c    s_ccos.c     s_cexpf.c   s_csin.c    s_csqrtf.c  \
14        s_casin.c    s_catanf.c   s_ccosf.c    s_cpow.c     s_csinf.c   
15
16libcmath_la_LDFLAGS = -Xcompiler -nostdlib
17
18if USE_LIBTOOL
19noinst_LTLIBRARIES = libcmath.la
20libcmath_la_SOURCES = $(LIB_SOURCES)
21noinst_DATA = objectlist.awk.in
22else
23noinst_LIBRARIES = lib.a
24lib_a_SOURCES = $(LIB_SOURCES)
25lib_a_CFLAGS = $(AM_CFLAGS)
26noinst_DATA =
27endif # USE_LIBTOOL
28
29include $(srcdir)/../../../../Makefile.shared
Note: See TracBrowser for help on using the repository browser.