source: trunk/libs/newlib/src/newlib/libm/complex/Makefile.am @ 620

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

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

File size: 1.7 KB
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = -I$(srcdir)/../common -I$(srcdir)/ $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7src = cabs.c cacos.c cacosh.c carg.c casin.c casinh.c \
8      catan.c catanh.c ccos.c ccosh.c cephes_subr.c \
9      cexp.c cimag.c  clog.c clog10.c conj.c  \
10      cpow.c cproj.c  creal.c  \
11      csin.c csinh.c csqrt.c ctan.c ctanh.c
12
13lsrc = cabsl.c creall.c cimagl.c ccoshl.c cacoshl.c \
14       clogl.c csqrtl.c cargl.c cprojl.c cexpl.c \
15       cephes_subrl.c cacosl.c ccosl.c casinl.c \
16       catanhl.c conjl.c cpowl.c ctanhl.c ctanl.c \
17       casinhl.c csinhl.c csinl.c catanl.c
18
19fsrc =  cabsf.c casinf.c ccosf.c cimagf.c cprojf.c  \
20        csqrtf.c cacosf.c casinhf.c ccoshf.c clogf.c clog10f.c \
21        crealf.c ctanf.c cacoshf.c catanf.c   \
22        cephes_subrf.c conjf.c csinf.c ctanhf.c \
23        cargf.c catanhf.c cexpf.c cpowf.c csinhf.c
24
25libcomplex_la_LDFLAGS = -Xcompiler -nostdlib
26
27if USE_LIBTOOL
28noinst_LTLIBRARIES = libcomplex.la
29libcomplex_la_SOURCES = $(src) $(fsrc) $(lsrc)
30noinst_DATA = objectlist.awk.in
31else
32noinst_LIBRARIES = lib.a
33lib_a_SOURCES = $(src) $(fsrc) $(lsrc)
34lib_a_CFLAGS = $(AM_CFLAGS)
35noinst_DATA =
36endif # USE_LIBTOOL
37
38include $(srcdir)/../../Makefile.shared
39
40CHEWOUT_FILES = cabs.def cacos.def cacosh.def carg.def \
41        casin.def casinh.def catan.def catanh.def \
42        ccos.def ccosh.def cexp.def cimag.def clog.def \
43        clog10.def conj.def cpow.def cproj.def creal.def \
44        csin.def csinh.def csqrt.def ctan.def ctanh.def
45
46CHAPTERS = complex.tex
47
48# A partial dependency list.
49
50$(lib_a_OBJECTS): $(srcdir)/../../libc/include/complex.h $(srcdir)/cephes_subr.h $(srcdir)/cephes_subrf.h  $(srcdir)/cephes_subrl.h
Note: See TracBrowser for help on using the repository browser.