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

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Michael Hope
  • Date: 2012-12-12 01:45:59 UTC
  • Revision ID: michael.hope@linaro.org-20121212014559-iyh2bujvhiyngnh9
Add definitions for LDADD and CFLAGS when building strchr and memchr
tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
# Options for the tests
47
47
tests_cflags = -I$(srcdir)/tests $(AM_CFLAGS)
48
48
tests_ldadd = libcortex-strings.la
 
49
tests_test_memchr_LDADD = $(tests_ldadd)
 
50
tests_test_memchr_CFLAGS = $(tests_cflags)
49
51
tests_test_memcpy_LDADD = $(tests_ldadd)
50
52
tests_test_memcpy_CFLAGS = $(tests_cflags)
51
53
tests_test_memset_LDADD = $(tests_ldadd)
52
54
tests_test_memset_CFLAGS = $(tests_cflags)
 
55
tests_test_strchr_LDADD = $(tests_ldadd)
 
56
tests_test_strchr_CFLAGS = $(tests_cflags)
53
57
tests_test_strcmp_LDADD = $(tests_ldadd)
54
58
tests_test_strcmp_CFLAGS = $(tests_cflags)
55
59
tests_test_strcpy_LDADD = $(tests_ldadd)