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

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Michael Hope
  • Date: 2010-09-02 00:46:57 UTC
  • Revision ID: michael.hope@linaro.org-20100902004657-4q6rn5888130zr3o
Pulled in the routines and packaged them up.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
lib_LTLIBRARIES = \
 
2
        libcortexcpu.la
 
3
 
 
4
sources = \
 
5
        neon/memcpy.S \
 
6
        neon/memset.S \
 
7
        thumb-2/strcmp.c \
 
8
        thumb-2/strcpy.c \
 
9
        thumb-2/strlen.c
 
10
 
 
11
libcortexcpu_la_SOURCES = $(sources)
 
12
 
 
13
AM_CFLAGS = -std=gnu99
 
14