Check if deriv->steps is NULL before freeing it
[glibc.git] / libio / Makefile
blobc555dd0004afe73bcdd2a9a9d32def298d6cca26
1 # Copyright (C) 1995-2004,2006-2009,2011,2012 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
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.
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.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, see
16 # <http://www.gnu.org/licenses/>.
19 # Specific makefile for libio.
21 subdir := libio
23 headers := stdio.h libio.h _G_config.h bits/stdio.h bits/stdio-lock.h \
24 bits/sys_errlist.h bits/stdio2.h bits/stdio-ldbl.h bits/libio-ldbl.h
26 routines := \
27 filedoalloc iofclose iofdopen iofflush iofgetpos iofgets iofopen \
28 iofopncook iofputs iofread iofsetpos ioftell wfiledoalloc \
29 iofwrite iogetdelim iogetline iogets iopadn iopopen ioputs \
30 ioseekoff ioseekpos iosetbuffer iosetvbuf ioungetc \
31 iovsprintf iovsscanf \
32 iofgetpos64 iofopen64 iofsetpos64 \
33 fputwc fputwc_u getwc getwc_u getwchar getwchar_u iofgetws iofgetws_u \
34 iofputws iofputws_u iogetwline iowpadn ioungetwc putwc putwc_u \
35 putwchar putwchar_u putchar putchar_u fwprintf swprintf vwprintf \
36 wprintf wscanf fwscanf vwscanf vswprintf iovswscanf swscanf wgenops \
37 wstrops wfileops iofwide fwide wmemstream \
39 clearerr feof ferror fileno fputc freopen fseek getc getchar \
40 memstream pclose putc putchar rewind setbuf setlinebuf vasprintf \
41 iovdprintf vscanf vsnprintf obprintf fcloseall fseeko ftello \
42 freopen64 fseeko64 ftello64 \
44 __fbufsize __freading __fwriting __freadable __fwritable __flbf \
45 __fpurge __fpending __fsetlocking \
47 libc_fatal fmemopen
49 tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc \
50 tst_wprintf2 tst-widetext test-fmemopen tst-ext tst-ext2 tst-fopenloc \
51 tst-fgetws tst-ungetwc1 tst-ungetwc2 tst-swscanf tst-sscanf \
52 tst-mmap-setvbuf bug-ungetwc1 bug-ungetwc2 tst-atime tst-eof \
53 tst-freopen bug-rewind bug-rewind2 bug-ungetc bug-fseek \
54 tst-mmap-eofsync tst-mmap-fflushsync bug-mmap-fflush \
55 tst-mmap2-eofsync tst-mmap-offend bug-fopena+ bug-wfflush \
56 bug-ungetc2 bug-ftell bug-ungetc3 bug-ungetc4 tst-fopenloc2 \
57 tst-memstream1 tst-memstream2 \
58 tst-wmemstream1 tst-wmemstream2 \
59 bug-memstream1 bug-wmemstream1 \
60 tst-setvbuf1 tst-popen1 tst-fgetwc bug-wsetpos bug-fclose1
61 test-srcs = test-freopen
63 all: # Make this the default target; it will be defined in Rules.
65 include ../Makeconfig
67 ifeq ($(versioning),yes)
68 routines += oldiofopen oldiofdopen oldiofclose oldiopopen oldpclose \
69 oldtmpfile oldiofgetpos oldiofgetpos64 oldiofsetpos \
70 oldiofsetpos64
71 endif
73 ifeq (yes,$(libc-reentrant))
74 routines += clearerr_u feof_u ferror_u fputc_u getc_u getchar_u \
75 iofflush_u putc_u putchar_u peekc iofread_u iofwrite_u iofgets_u \
76 iofputs_u
77 endif
79 CPPFLAGS += $(libio-mtsafe)
81 # Support for exception handling.
82 CFLAGS-fileops.c = $(exceptions)
83 CFLAGS-fputc.c = $(exceptions)
84 CFLAGS-fputwc.c = $(exceptions)
85 CFLAGS-freopen64.c = $(exceptions)
86 CFLAGS-freopen.c = $(exceptions)
87 CFLAGS-fseek.c = $(exceptions)
88 CFLAGS-fseeko64.c = $(exceptions)
89 CFLAGS-fseeko.c = $(exceptions)
90 CFLAGS-ftello64.c = $(exceptions)
91 CFLAGS-ftello.c = $(exceptions)
92 CFLAGS-fwide.c = $(exceptions)
93 CFLAGS-genops.c = $(exceptions)
94 CFLAGS-getc.c = $(exceptions)
95 CFLAGS-getchar.c = $(exceptions)
96 CFLAGS-getwc.c = $(exceptions)
97 CFLAGS-getwchar.c = $(exceptions)
98 CFLAGS-iofclose.c = $(exceptions)
99 CFLAGS-iofflush.c = $(exceptions)
100 CFLAGS-iofgetpos64.c = $(exceptions)
101 CFLAGS-iofgetpos.c = $(exceptions)
102 CFLAGS-iofgets.c = $(exceptions)
103 CFLAGS-iofgetws.c = $(exceptions)
104 CFLAGS-iofputs.c = $(exceptions)
105 CFLAGS-iofputws.c = $(exceptions)
106 CFLAGS-iofread.c = $(exceptions)
107 CFLAGS-iofsetpos64.c = $(exceptions)
108 CFLAGS-iofsetpos.c = $(exceptions)
109 CFLAGS-ioftell.c = $(exceptions)
110 CFLAGS-iofwrite.c = $(exceptions)
111 CFLAGS-iogetdelim.c = $(exceptions)
112 CFLAGS-iogetline.c = $(exceptions)
113 CFLAGS-iogets.c = $(exceptions)
114 CFLAGS-iogetwline.c = $(exceptions)
115 CFLAGS-ioputs.c = $(exceptions)
116 CFLAGS-ioseekoff.c = $(exceptions)
117 CFLAGS-ioseekpos.c = $(exceptions)
118 CFLAGS-iosetbuffer.c = $(exceptions)
119 CFLAGS-iosetvbuf.c = $(exceptions)
120 CFLAGS-ioungetc.c = $(exceptions)
121 CFLAGS-ioungetwc.c = $(exceptions)
122 CFLAGS-oldfileops.c = $(exceptions)
123 CFLAGS-oldiofclose.c = $(exceptions)
124 CFLAGS-oldiofgetpos64.c = $(exceptions)
125 CFLAGS-oldiofgetpos.c = $(exceptions)
126 CFLAGS-oldiofsetpos64.c = $(exceptions)
127 CFLAGS-oldiofsetpos.c = $(exceptions)
128 CFLAGS-peekc.c = $(exceptions)
129 CFLAGS-putc.c = $(exceptions)
130 CFLAGS-putchar.c = $(exceptions)
131 CFLAGS-putwc.c = $(exceptions)
132 CFLAGS-putwchar.c = $(exceptions)
133 CFLAGS-rewind.c = $(exceptions)
134 CFLAGS-wfileops.c = $(exceptions)
135 CFLAGS-wgenops.c = $(exceptions)
136 CFLAGS-oldiofopen.c = $(exceptions)
137 CFLAGS-iofopen.c = $(exceptions)
138 CFLAGS-iofopen64.c = $(exceptions)
139 CFLAGS-oldtmpfile.c = $(exceptions)
140 # XXX Do we need filedoalloc and wfiledoalloc? Others?
142 CFLAGS-tst_putwc.c = -DOBJPFX=\"$(objpfx)\"
144 tst_wprintf2-ARGS = "Some Text"
146 tst-widetext-ENV = LOCPATH=$(common-objpfx)localedata LANGUAGE=C
147 tst-fopenloc-ENV = LOCPATH=$(common-objpfx)localedata \
148 MALLOC_TRACE=$(objpfx)tst-fopenloc.mtrace
149 tst-fgetws-ENV = LOCPATH=$(common-objpfx)localedata
150 tst-ungetwc1-ENV = LOCPATH=$(common-objpfx)localedata
151 tst-ungetwc2-ENV = LOCPATH=$(common-objpfx)localedata
152 bug-ungetwc2-ENV = LOCPATH=$(common-objpfx)localedata
153 tst-swscanf-ENV = LOCPATH=$(common-objpfx)localedata
154 bug-ftell-ENV = LOCPATH=$(common-objpfx)localedata
155 tst-fgetwc-ENV = LOCPATH=$(common-objpfx)localedata
157 generated = tst-fopenloc.mtrace tst-fopenloc.check
159 aux := fileops genops stdfiles stdio strops
161 ifeq ($(versioning),yes)
162 aux += oldfileops oldstdfiles
163 endif
165 shared-only-routines = oldiofopen oldiofdopen oldiofclose oldfileops \
166 oldstdfiles oldiopopen oldpclose oldtmpfile \
167 oldiofgetpos oldiofgetpos64 oldiofsetpos \
168 oldiofsetpos64
170 include ../Rules
172 ifeq (no,$(cross-compiling))
173 tests: $(objpfx)test-freopen.out $(objpfx)tst-fopenloc.check
174 endif
176 $(objpfx)test-freopen.out: test-freopen.sh $(objpfx)test-freopen
177 $(SHELL) -e $< $(common-objpfx) '$(run-program-prefix)' \
178 $(common-objpfx)libio/
180 $(objpfx)tst-fopenloc.check: $(objpfx)tst-fopenloc.out
181 cmp ../iconvdata/testdata/ISO-8859-1..UTF8 $(objpfx)tst-fopenloc.out \
182 > $@
183 $(common-objpfx)malloc/mtrace $(objpfx)tst-fopenloc.mtrace >> $@