~linaro-toolchain-dev/cortex-strings/trunk

« back to all changes in this revision

Viewing changes to src/reference/Makefile.am

  • Committer: Michael Hope
  • Date: 2010-08-26 22:34:40 UTC
  • Revision ID: michael.hope@linaro.org-20100826223440-ddib3epkpb63yfct
Made the different routines compile.  Expanded the tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
lib_LTLIBRARIES = \
2
2
        libhelpers.la \
3
 
        libplain.la
 
3
        libplain.la \
 
4
        libbionic.la \
 
5
        libnewlib.la \
 
6
        libglibc.la
 
7
 
4
8
#libbionic.la #libglibc.a libnewlib.a
5
9
 
6
 
#libbionic_la_SOURCES = 
7
 
#libglibc_a_SOURCES =
8
 
#libnewlib_a_SOURCES =
 
10
libbionic_la_SOURCES = \
 
11
        bionic/memcpy.S \
 
12
        bionic/strlen.c
 
13
 
 
14
libglibc_la_SOURCES = \
 
15
        glibc/memcpy.S \
 
16
        glibc/strlen.S
 
17
 
 
18
libnewlib_la_SOURCES = \
 
19
        newlib/strcmp.c \
 
20
        newlib/strcpy.c \
 
21
        newlib/strlen.c
 
22
 
 
23
AM_CFLAGS = -std=gnu99
9
24
 
10
25
libhelpers_la_SOURCES = helpers/bounce.c helpers/spawn.c
11
26
libplain_la_SOURCES = plain/memcpy.c