~ubuntu-branches/ubuntu/utopic/avr-libc/utopic

« back to all changes in this revision

Viewing changes to libc/stdio/Files.am

  • Committer: Package Import Robot
  • Author(s): Hakan Ardo
  • Date: 2014-06-03 14:25:22 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20140603142522-76ia7366969f7jc2
Tags: 1:1.8.0+Atmel3.4.4-1
* New upstream release from Atmel-AVR-GNU-Toolchain v3.4.4
  (http://distribute.atmel.no/tools/opensource/Atmel-AVR-GNU-
  Toolchain/3.4.4/) (closes: #740391, #739953, #695514, #719635)
* Moved manpages to the 3avr section of /usr/share/man
* Added avr-man manpage (closes: #733939)
* Added build-arch and build-indep targets
* Moved build to binary-indep target
* Increased standards version to 3.9.5
* Added ${misc:Depends} dependency
* Applied upstream fix to make pgmspace.h ansi compatible (closes:
  #675759)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (c) 2004,2005  Theodore A. Roth
2
 
# All rights reserved.
3
 
#
4
 
# Redistribution and use in source and binary forms, with or without
5
 
# modification, are permitted provided that the following conditions are met:
6
 
#
7
 
# * Redistributions of source code must retain the above copyright
8
 
#   notice, this list of conditions and the following disclaimer.
9
 
# * Redistributions in binary form must reproduce the above copyright
10
 
#   notice, this list of conditions and the following disclaimer in
11
 
#   the documentation and/or other materials provided with the
12
 
#   distribution.
13
 
# * Neither the name of the copyright holders nor the names of
14
 
#   contributors may be used to endorse or promote products derived
15
 
#   from this software without specific prior written permission.
16
 
#
17
 
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
 
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
 
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
 
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21
 
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
 
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
 
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
 
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
 
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
 
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
 
# POSSIBILITY OF SUCH DAMAGE.
28
 
#
29
 
# $Id: Files.am 1381 2007-05-14 13:52:01Z joerg_wunsch $
30
 
#
31
 
 
32
 
stdio_a_c_sources =     \
33
 
        clearerr.c \
34
 
        fclose.c \
35
 
        fdevopen.c \
36
 
        feof.c \
37
 
        ferror.c \
38
 
        fgetc.c \
39
 
        fgets.c \
40
 
        fprintf.c \
41
 
        fprintf_p.c \
42
 
        fputc.c \
43
 
        fputs.c \
44
 
        fputs_p.c \
45
 
        fread.c \
46
 
        fscanf.c \
47
 
        fscanf_p.c \
48
 
        fwrite.c \
49
 
        getchar.c \
50
 
        gets.c \
51
 
        iob.c \
52
 
        printf.c \
53
 
        printf_p.c \
54
 
        putchar.c \
55
 
        puts.c \
56
 
        puts_p.c \
57
 
        scanf.c \
58
 
        scanf_p.c \
59
 
        snprintf.c \
60
 
        snprintf_p.c \
61
 
        sprintf.c \
62
 
        sprintf_p.c \
63
 
        sscanf.c \
64
 
        sscanf_p.c \
65
 
        vfprintf_p.c \
66
 
        vfscanf_p.c \
67
 
        vprintf.c \
68
 
        vscanf.c \
69
 
        vsnprintf.c \
70
 
        vsnprintf_p.c \
71
 
        vsprintf.c \
72
 
        vsprintf_p.c \
73
 
        ungetc.c
74
 
 
75
 
stdio_a_asm_sources = \
76
 
        getc.S \
77
 
        putc.S \
78
 
        ultoa_invert.S
79
 
 
80
 
stdio_a_extra_dist = \
81
 
        vfprintf.c \
82
 
        vfscanf.c \
83
 
        stdio_private.h \
84
 
        xtoa_fast.h
85
 
 
86
 
# vim: set ft=make: