~ubuntu-branches/ubuntu/gutsy/avr-libc/gutsy

« back to all changes in this revision

Viewing changes to libc/string/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2006-11-15 21:12:47 UTC
  • mfrom: (3.1.2 feisty)
  • Revision ID: james.westby@ubuntu.com-20061115211247-b7qhgnb6o49v5zsg
Tags: 1:1.4.5-2
* Convertion to debheler fixed (closes: #398220)
* Reference to /usr/share/common-licenses in copyright file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (c) 2002, Reinhard Jessich  <reinhard.jessich@telering.at>
 
1
# Copyright (c) 2004,  Theodore A. Roth
2
2
# All rights reserved.
3
3
#
4
4
# Redistribution and use in source and binary forms, with or without
25
25
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
26
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
27
# POSSIBILITY OF SUCH DAMAGE.
28
 
 
29
 
## Process this file with automake to generate Makefile.in
30
 
 
31
 
noinst_LIBRARIES = lib.a
32
 
 
33
 
lib_a_c_sources = 
34
 
 
35
 
lib_a_asm_sources = \
36
 
        memccpy.S     \
37
 
        memchr.S      \
38
 
        memcmp.S      \
39
 
        memcpy.S      \
40
 
        memmove.S     \
41
 
        memset.S      \
42
 
        strcasecmp.S  \
43
 
        strcat.S      \
44
 
        strchr.S      \
45
 
        strcmp.S      \
46
 
        strcpy.S      \
47
 
        strlcat.S     \
48
 
        strlcpy.S     \
49
 
        strlen.S      \
50
 
        strlwr.S      \
51
 
        strncasecmp.S \
52
 
        strncat.S     \
53
 
        strncmp.S     \
54
 
        strncpy.S     \
55
 
        strnlen.S     \
56
 
        strrchr.S     \
57
 
        strrev.S      \
58
 
        strsep.S      \
59
 
        strstr.S      \
60
 
        strtok_r.S    \
61
 
        strupr.S
62
 
 
63
 
lib_a_SOURCES = $(lib_a_c_sources) $(lib_a_asm_sources)
64
 
 
65
 
lib_a_c_objs = $(lib_a_c_sources:%.c=%.o)
66
 
 
67
 
lib_a_asm_objs = $(lib_a_asm_sources:%.S=%.o)
68
 
 
69
 
# content of AVRLIB_CFLAGS and AVRLIB_ASFLAGS is determined by configure
70
 
# according to the multilib subdir (see acinclude.m4 in top directory)
71
 
 
72
 
$(lib_a_c_objs): %.o: %.c
73
 
        $(COMPILE) $(AVRLIB_CFLAGS) -c $< -o $@
74
 
 
75
 
$(lib_a_asm_objs): %.o: %.S
76
 
        $(COMPILE) $(AVRLIB_ASFLAGS) -c $< -o $@
77
 
 
 
28
#
 
29
# $Id: Makefile.am,v 1.3 2005/08/11 20:55:23 joerg_wunsch Exp $
 
30
#
 
31
 
 
32
include $(top_srcdir)/libc/string/Files.am
 
33
 
 
34
EXTRA_DIST = \
 
35
        $(string_a_asm_sources) \
 
36
        $(string_a_extra_dist)