source: trunk/libs/newlib/src/newlib/libc/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: 877 bytes
Line 
1## Process this file with automake to generate Makefile.in
2
3AUTOMAKE_OPTIONS = cygnus
4
5INCLUDES = -I $(newlib_basedir)/libm/common $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6
7AM_CCASFLAGS = $(INCLUDES)
8
9if MACH_ADD_SETJMP
10ADDED_SOURCES = setjmp.S
11else
12ADDED_SOURCES =
13endif
14
15LIB_SOURCES = \
16        memchr.S memcmp.S memcpy.S memset.S strchr.S \
17        memmove.S strlen.S i386mach.h
18
19libi386_la_LDFLAGS = -Xcompiler -nostdlib
20
21if USE_LIBTOOL
22noinst_LTLIBRARIES = libi386.la
23libi386_la_SOURCES = $(LIB_SOURCES) $(ADDED_SOURCES)
24noinst_DATA = objectlist.awk.in
25else
26noinst_LIBRARIES = lib.a
27lib_a_SOURCES = $(LIB_SOURCES) $(ADDED_SOURCES)
28lib_a_CCASFLAGS = $(AM_CCASFLAGS)
29lib_a_CFLAGS=$(AM_CFLAGS)
30noinst_DATA =
31endif # USE_LIBTOOL
32
33include $(srcdir)/../../../Makefile.shared
34
35ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
36CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
Note: See TracBrowser for help on using the repository browser.