diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2015-09-04 13:17:53 -0400 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2015-09-04 14:37:37 -0400 |
commit | 948b5f00435ff00e8873ea1326271d0069e41301 (patch) | |
tree | 667d4b7826ecb1a70ec4461dbc7316a1e487d898 /newlib/libc/machine/ft32/Makefile.am | |
parent | dc09f27aaa27e1b72c2fcec3b7d6b1e29cab1d28 (diff) | |
download | newlib-948b5f00435ff00e8873ea1326271d0069e41301.zip newlib-948b5f00435ff00e8873ea1326271d0069e41301.tar.gz newlib-948b5f00435ff00e8873ea1326271d0069e41301.tar.bz2 |
Add support for ft32 to newlib.
Diffstat (limited to 'newlib/libc/machine/ft32/Makefile.am')
-rw-r--r-- | newlib/libc/machine/ft32/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/newlib/libc/machine/ft32/Makefile.am b/newlib/libc/machine/ft32/Makefile.am new file mode 100644 index 0000000..4aa79b0 --- /dev/null +++ b/newlib/libc/machine/ft32/Makefile.am @@ -0,0 +1,16 @@ +## 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 + +lib_a_SOURCES = setjmp.S strlen.S memcpy.S strcmp.S memset.S strcpy.S +lib_a_CCASFLAGS=$(AM_CCASFLAGS) +lib_a_CFLAGS=$(AM_CFLAGS) + +ACLOCAL_AMFLAGS = -I ../../.. -I ../../../.. +CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host |