2012-09-27 04:06:50 +08:00
|
|
|
## Process this file with automake to generate Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = cygnus
|
|
|
|
|
|
|
|
INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
|
|
|
|
|
|
|
|
AM_CCASFLAGS = $(INCLUDES)
|
|
|
|
|
|
|
|
noinst_LIBRARIES = lib.a
|
|
|
|
|
2013-01-10 20:44:50 +08:00
|
|
|
lib_a_SOURCES =
|
2013-01-10 21:02:19 +08:00
|
|
|
lib_a_SOURCES += memcmp-stub.c
|
|
|
|
lib_a_SOURCES += memcmp.S
|
2013-01-10 20:44:50 +08:00
|
|
|
lib_a_SOURCES += memcpy-stub.c
|
2013-01-10 20:51:13 +08:00
|
|
|
lib_a_SOURCES += memcpy.S
|
2013-01-10 20:54:39 +08:00
|
|
|
lib_a_SOURCES += memmove-stub.c
|
|
|
|
lib_a_SOURCES += memmove.S
|
2013-01-10 20:44:50 +08:00
|
|
|
lib_a_SOURCES += memset-stub.c
|
2013-01-10 20:51:13 +08:00
|
|
|
lib_a_SOURCES += memset.S
|
2013-01-10 20:44:50 +08:00
|
|
|
lib_a_SOURCES += setjmp.S
|
2014-06-10 22:04:31 +08:00
|
|
|
lib_a_SOURCES += strchr-stub.c
|
|
|
|
lib_a_SOURCES += strchr.S
|
2014-06-11 18:42:54 +08:00
|
|
|
lib_a_SOURCES += strchrnul-stub.c
|
|
|
|
lib_a_SOURCES += strchrnul.S
|
2013-01-10 20:44:50 +08:00
|
|
|
lib_a_SOURCES += strcmp-stub.c
|
2013-01-10 20:51:13 +08:00
|
|
|
lib_a_SOURCES += strcmp.S
|
2013-01-10 20:57:11 +08:00
|
|
|
lib_a_SOURCES += strlen-stub.c
|
|
|
|
lib_a_SOURCES += strlen.S
|
2013-01-10 20:51:13 +08:00
|
|
|
lib_a_SOURCES += strncmp-stub.c
|
|
|
|
lib_a_SOURCES += strncmp.S
|
2013-01-10 21:00:40 +08:00
|
|
|
lib_a_SOURCES += strnlen-stub.c
|
|
|
|
lib_a_SOURCES += strnlen.S
|
2012-09-27 04:06:50 +08:00
|
|
|
|
|
|
|
lib_a_CCASFLAGS=$(AM_CCASFLAGS)
|
|
|
|
lib_a_CFLAGS=$(AM_CFLAGS)
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
|
|
|
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|