source: trunk/libs/newlib/src/newlib/libm/machine/i386/Makefile.am @ 444

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

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

File size: 994 bytes
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = -I $(newlib_basedir)/../newlib/libm/common $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7AM_CCASFLAGS = $(INCLUDES)
8
9LIB_SOURCES = \
10        f_atan2.S f_atan2f.S f_exp.c f_expf.c \
11        f_frexp.S f_frexpf.S f_llrint.c f_llrintf.c f_llrintl.c \
12        f_log.S f_logf.S f_log10.S f_log10f.S \
13        f_ldexp.S f_ldexpf.S f_lrint.c f_lrintf.c f_lrintl.c \
14        f_pow.c f_powf.c f_rint.c f_rintf.c f_rintl.c \
15        f_tan.S f_tanf.S f_math.h \
16        i386mach.h
17
18libi386_la_LDFLAGS = -Xcompiler -nostdlib
19
20if USE_LIBTOOL
21noinst_LTLIBRARIES = libi386.la
22libi386_la_SOURCES = $(LIB_SOURCES)
23noinst_DATA = objectlist.awk.in
24else
25noinst_LIBRARIES = lib.a
26lib_a_SOURCES = $(LIB_SOURCES)
27lib_a_CFLAGS = $(AM_CFLAGS)
28lib_a_CCASFLAGS = $(AM_CCASFLAGS)
29noinst_DATA =
30endif # USE_LIBTOOL
31
32include $(srcdir)/../../../Makefile.shared
33
34ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
35CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
36
Note: See TracBrowser for help on using the repository browser.