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

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Matthew Gretton-Dann
  • Date: 2013-01-07 16:59:29 UTC
  • mfrom: (96.1.3 aarch64-additions-2)
  • Revision ID: matthew.gretton-dann@linaro.org-20130107165929-2p27azr2amdypgnn
Merge further AArch64 optimised routines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        tests/test-strcmp \
45
45
        tests/test-strcpy \
46
46
        tests/test-strlen \
47
 
        tests/test-strncmp
 
47
        tests/test-strncmp \
 
48
        tests/test-strnlen
48
49
 
49
50
# Options for the tests
50
51
tests_cflags = -I$(srcdir)/tests $(AM_CFLAGS)
266
267
if HOST_AARCH64
267
268
 
268
269
libcortex_strings_la_SOURCES = \
 
270
        src/aarch64/memcmp.S \
269
271
        src/aarch64/memcpy.S \
270
272
        src/aarch64/memmove.S \
271
273
        src/aarch64/memset.S \
272
274
        src/aarch64/strcmp.S \
273
275
        src/aarch64/strlen.S \
274
 
        src/aarch64/strncmp.S
 
276
        src/aarch64/strncmp.S \
 
277
        src/aarch64/strnlen.S
275
278
 
276
279
endif
277
280