Update.
[platform/upstream/glibc.git] / libio / Makefile
1 # Copyright (C) 1995-2002, 2003 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 # 02111-1307 USA.
18
19 #
20 #       Specific makefile for libio.
21 #
22 subdir  := libio
23
24 headers := stdio.h libio.h _G_config.h bits/stdio.h bits/stdio-lock.h \
25            bits/sys_errlist.h
26
27 routines        :=                                                            \
28         filedoalloc iofclose iofdopen iofflush iofgetpos iofgets iofopen      \
29         iofopncook iofputs iofread iofsetpos ioftell wfiledoalloc             \
30         iofwrite iogetdelim iogetline iogets iopadn iopopen ioputs            \
31         ioseekoff ioseekpos iosetbuffer iosetvbuf ioungetc                    \
32         iovsprintf iovsscanf                                                  \
33         iofgetpos64 iofopen64 iofsetpos64                                     \
34         fputwc fputwc_u getwc getwc_u getwchar getwchar_u iofgetws iofgetws_u \
35         iofputws iofputws_u iogetwline iowpadn ioungetwc putwc putwc_u        \
36         putwchar putwchar_u putchar putchar_u fwprintf swprintf vwprintf      \
37         wprintf wscanf fwscanf vwscanf vswprintf iovswscanf swscanf wgenops   \
38         wstrops wfileops iofwide fwide                                        \
39                                                                               \
40         clearerr feof ferror fileno fputc freopen fseek getc getchar          \
41         memstream pclose putc putchar rewind setbuf setlinebuf vasprintf      \
42         iovdprintf vscanf vsnprintf obprintf fcloseall fseeko ftello          \
43         freopen64 fseeko64 ftello64                                           \
44                                                                               \
45         __fbufsize __freading __fwriting __freadable __fwritable __flbf       \
46         __fpurge __fpending __fsetlocking                                     \
47                                                                               \
48         libc_fatal fmemopen
49
50 tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc   \
51         tst_wprintf2 tst-widetext test-fmemopen tst-ext tst-fopenloc          \
52         tst-fgetws tst-ungetwc1 tst-ungetwc2 tst-swscanf tst-sscanf           \
53         tst-mmap-setvbuf bug-ungetwc1 bug-ungetwc2 tst-atime tst-eof          \
54         tst-freopen bug-rewind bug-rewind2 bug-ungetc bug-fseek \
55         tst-mmap-eofsync tst-mmap-fflushsync bug-mmap-fflush \
56         tst-mmap2-eofsync tst-mmap-offend bug-fopena+ bug-wfflush \
57         bug-ungetc2 bug-ftell
58 test-srcs = test-freopen
59
60 all: # Make this the default target; it will be defined in Rules.
61
62 include ../Makeconfig
63
64 ifeq ($(versioning),yes)
65 routines += oldiofopen oldiofdopen oldiofclose oldiopopen oldpclose \
66             oldtmpfile oldiofgetpos oldiofgetpos64 oldiofsetpos     \
67             oldiofsetpos64
68 endif
69
70 ifneq (,$(filter %REENTRANT, $(defines)))
71 routines += clearerr_u feof_u ferror_u fputc_u getc_u getchar_u               \
72             iofflush_u putc_u putchar_u peekc iofread_u iofwrite_u iofgets_u  \
73             iofputs_u
74
75 CPPFLAGS += -D_IO_MTSAFE_IO
76 endif
77
78 # Support for exception handling.
79 CFLAGS-fileops.c = $(exceptions)
80 CFLAGS-fputc.c = $(exceptions)
81 CFLAGS-fputwc.c = $(exceptions)
82 CFLAGS-freopen64.c = $(exceptions)
83 CFLAGS-freopen.c = $(exceptions)
84 CFLAGS-fseek.c = $(exceptions)
85 CFLAGS-fseeko64.c = $(exceptions)
86 CFLAGS-fseeko.c = $(exceptions)
87 CFLAGS-ftello64.c = $(exceptions)
88 CFLAGS-ftello.c = $(exceptions)
89 CFLAGS-fwide.c = $(exceptions)
90 CFLAGS-genops.c = $(exceptions)
91 CFLAGS-getc.c = $(exceptions)
92 CFLAGS-getchar.c = $(exceptions)
93 CFLAGS-getwc.c = $(exceptions)
94 CFLAGS-getwchar.c = $(exceptions)
95 CFLAGS-iofclose.c = $(exceptions)
96 CFLAGS-iofflush.c = $(exceptions)
97 CFLAGS-iofgetpos64.c = $(exceptions)
98 CFLAGS-iofgetpos.c = $(exceptions)
99 CFLAGS-iofgets.c = $(exceptions)
100 CFLAGS-iofgetws.c = $(exceptions)
101 CFLAGS-iofputs.c = $(exceptions)
102 CFLAGS-iofputws.c = $(exceptions)
103 CFLAGS-iofread.c = $(exceptions)
104 CFLAGS-iofsetpos64.c = $(exceptions)
105 CFLAGS-iofsetpos.c = $(exceptions)
106 CFLAGS-ioftell.c = $(exceptions)
107 CFLAGS-iofwrite.c = $(exceptions)
108 CFLAGS-iogetdelim.c = $(exceptions)
109 CFLAGS-iogetline.c = $(exceptions)
110 CFLAGS-iogets.c = $(exceptions)
111 CFLAGS-iogetwline.c = $(exceptions)
112 CFLAGS-ioputs.c = $(exceptions)
113 CFLAGS-ioseekoff.c = $(exceptions)
114 CFLAGS-ioseekpos.c = $(exceptions)
115 CFLAGS-iosetbuffer.c = $(exceptions)
116 CFLAGS-iosetvbuf.c = $(exceptions)
117 CFLAGS-ioungetc.c = $(exceptions)
118 CFLAGS-ioungetwc.c = $(exceptions)
119 CFLAGS-oldfileops.c = $(exceptions)
120 CFLAGS-oldiofclose.c = $(exceptions)
121 CFLAGS-oldiofgetpos64.c = $(exceptions)
122 CFLAGS-oldiofgetpos.c = $(exceptions)
123 CFLAGS-oldiofsetpos64.c = $(exceptions)
124 CFLAGS-oldiofsetpos.c = $(exceptions)
125 CFLAGS-peekc.c = $(exceptions)
126 CFLAGS-putc.c = $(exceptions)
127 CFLAGS-putchar.c = $(exceptions)
128 CFLAGS-putwc.c = $(exceptions)
129 CFLAGS-putwchar.c = $(exceptions)
130 CFLAGS-rewind.c = $(exceptions)
131 CFLAGS-wfileops.c = $(exceptions)
132 CFLAGS-wgenops.c = $(exceptions)
133 CFLAGS-oldiofopen.c = $(exceptions)
134 CFLAGS-iofopen.c = $(exceptions)
135 CFLAGS-iofopen64.c = $(exceptions)
136 CFLAGS-oldtmpfile.c = $(exceptions)
137 # XXX Do we need filedoalloc and wfiledoalloc?  Others?
138
139 CFLAGS-tst_putwc.c = -DOBJPFX=\"$(objpfx)\"
140
141 tst_wprintf2-ARGS = "Some Text"
142
143 tst-widetext-ENV = LOCPATH=$(common-objpfx)localedata LANGUAGE=C
144 tst-fopenloc-ENV = LOCPATH=$(common-objpfx)localedata \
145                    MALLOC_TRACE=$(objpfx)tst-fopenloc.mtrace
146 tst-fgetws-ENV = LOCPATH=$(common-objpfx)localedata
147 tst-ungetwc1-ENV = LOCPATH=$(common-objpfx)localedata
148 tst-ungetwc2-ENV = LOCPATH=$(common-objpfx)localedata
149 bug-ungetwc2-ENV = LOCPATH=$(common-objpfx)localedata
150 tst-swscanf-ENV = LOCPATH=$(common-objpfx)localedata
151 bug-ftell-ENV = LOCPATH=$(common-objpfx)localedata
152
153 generated = tst-fopenloc.mtrace tst-fopenloc.check
154
155 aux     := fileops genops stdfiles stdio strops
156
157 ifeq ($(versioning),yes)
158 aux     += oldfileops oldstdfiles
159 endif
160
161 shared-only-routines = oldiofopen oldiofdopen oldiofclose oldfileops    \
162                        oldstdfiles oldiopopen oldpclose oldtmpfile      \
163                        oldiofgetpos oldiofgetpos64 oldiofsetpos         \
164                        oldiofsetpos64
165
166 distribute := iolibio.h libioP.h strfile.h Banner test-freopen.sh \
167               fd_to_filename.h
168
169 include ../Rules
170
171 ifeq (no,$(cross-compiling))
172 tests: $(objpfx)test-freopen.out $(objpfx)tst-fopenloc.check
173 endif
174
175 $(objpfx)test-freopen.out: test-freopen.sh $(objpfx)test-freopen
176         $(SHELL) -e $< $(common-objpfx) '$(run-program-prefix)' \
177         $(common-objpfx)libio/
178
179 $(objpfx)tst-fopenloc.check: $(objpfx)tst-fopenloc.out
180         cmp ../iconvdata/testdata/ISO-8859-1..UTF8 $(objpfx)tst-fopenloc.out \
181           > $@
182         $(common-objpfx)malloc/mtrace $(objpfx)tst-fopenloc.mtrace >> $@