(linenum→info "unix/slp.c:2238")

glibc/2.7/libio/Makefile

    1: # Copyright (C) 1995-2002,2003,2004,2006,2007 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 bits/stdio2.h bits/stdio-ldbl.h bits/libio-ldbl.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 wmemstream                            \
   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-ext2 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 bug-ungetc3 bug-ungetc4 tst-fopenloc2 \
   58:         tst-memstream1 tst-memstream2 \
   59:         tst-wmemstream1 tst-wmemstream2 \
   60:         bug-memstream1 bug-wmemstream1 \
   61:         tst-setvbuf1
   62: test-srcs = test-freopen
   63: 
   64: all: # Make this the default target; it will be defined in Rules.
   65: 
   66: include ../Makeconfig
   67: 
   68: ifeq ($(versioning),yes)
   69: routines += oldiofopen oldiofdopen oldiofclose oldiopopen oldpclose \
   70:             oldtmpfile oldiofgetpos oldiofgetpos64 oldiofsetpos            \
   71:             oldiofsetpos64
   72: endif
   73: 
   74: ifneq (,$(filter %REENTRANT, $(defines)))
   75: routines += clearerr_u feof_u ferror_u fputc_u getc_u getchar_u               \
   76:             iofflush_u putc_u putchar_u peekc iofread_u iofwrite_u iofgets_u  \
   77:             iofputs_u
   78: 
   79: CPPFLAGS += -D_IO_MTSAFE_IO
   80: endif
   81: 
   82: # Support for exception handling.
   83: CFLAGS-fileops.c = $(exceptions)
   84: CFLAGS-fputc.c = $(exceptions)
   85: CFLAGS-fputwc.c = $(exceptions)
   86: CFLAGS-freopen64.c = $(exceptions)
   87: CFLAGS-freopen.c = $(exceptions)
   88: CFLAGS-fseek.c = $(exceptions)
   89: CFLAGS-fseeko64.c = $(exceptions)
   90: CFLAGS-fseeko.c = $(exceptions)
   91: CFLAGS-ftello64.c = $(exceptions)
   92: CFLAGS-ftello.c = $(exceptions)
   93: CFLAGS-fwide.c = $(exceptions)
   94: CFLAGS-genops.c = $(exceptions)
   95: CFLAGS-getc.c = $(exceptions)
   96: CFLAGS-getchar.c = $(exceptions)
   97: CFLAGS-getwc.c = $(exceptions)
   98: CFLAGS-getwchar.c = $(exceptions)
   99: CFLAGS-iofclose.c = $(exceptions)
  100: CFLAGS-iofflush.c = $(exceptions)
  101: CFLAGS-iofgetpos64.c = $(exceptions)
  102: CFLAGS-iofgetpos.c = $(exceptions)
  103: CFLAGS-iofgets.c = $(exceptions)
  104: CFLAGS-iofgetws.c = $(exceptions)
  105: CFLAGS-iofputs.c = $(exceptions)
  106: CFLAGS-iofputws.c = $(exceptions)
  107: CFLAGS-iofread.c = $(exceptions)
  108: CFLAGS-iofsetpos64.c = $(exceptions)
  109: CFLAGS-iofsetpos.c = $(exceptions)
  110: CFLAGS-ioftell.c = $(exceptions)
  111: CFLAGS-iofwrite.c = $(exceptions)
  112: CFLAGS-iogetdelim.c = $(exceptions)
  113: CFLAGS-iogetline.c = $(exceptions)
  114: CFLAGS-iogets.c = $(exceptions)
  115: CFLAGS-iogetwline.c = $(exceptions)
  116: CFLAGS-ioputs.c = $(exceptions)
  117: CFLAGS-ioseekoff.c = $(exceptions)
  118: CFLAGS-ioseekpos.c = $(exceptions)
  119: CFLAGS-iosetbuffer.c = $(exceptions)
  120: CFLAGS-iosetvbuf.c = $(exceptions)
  121: CFLAGS-ioungetc.c = $(exceptions)
  122: CFLAGS-ioungetwc.c = $(exceptions)
  123: CFLAGS-oldfileops.c = $(exceptions)
  124: CFLAGS-oldiofclose.c = $(exceptions)
  125: CFLAGS-oldiofgetpos64.c = $(exceptions)
  126: CFLAGS-oldiofgetpos.c = $(exceptions)
  127: CFLAGS-oldiofsetpos64.c = $(exceptions)
  128: CFLAGS-oldiofsetpos.c = $(exceptions)
  129: CFLAGS-peekc.c = $(exceptions)
  130: CFLAGS-putc.c = $(exceptions)
  131: CFLAGS-putchar.c = $(exceptions)
  132: CFLAGS-putwc.c = $(exceptions)
  133: CFLAGS-putwchar.c = $(exceptions)
  134: CFLAGS-rewind.c = $(exceptions)
  135: CFLAGS-wfileops.c = $(exceptions)
  136: CFLAGS-wgenops.c = $(exceptions)
  137: CFLAGS-oldiofopen.c = $(exceptions)
  138: CFLAGS-iofopen.c = $(exceptions)
  139: CFLAGS-iofopen64.c = $(exceptions)
  140: CFLAGS-oldtmpfile.c = $(exceptions)
  141: # XXX Do we need filedoalloc and wfiledoalloc?  Others?
  142: 
  143: CFLAGS-tst_putwc.c = -DOBJPFX=\"$(objpfx)\"
  144: 
  145: tst_wprintf2-ARGS = "Some Text"
  146: 
  147: tst-widetext-ENV = LOCPATH=$(common-objpfx)localedata LANGUAGE=C
  148: tst-fopenloc-ENV = LOCPATH=$(common-objpfx)localedata \
  149:                    MALLOC_TRACE=$(objpfx)tst-fopenloc.mtrace
  150: tst-fgetws-ENV = LOCPATH=$(common-objpfx)localedata
  151: tst-ungetwc1-ENV = LOCPATH=$(common-objpfx)localedata
  152: tst-ungetwc2-ENV = LOCPATH=$(common-objpfx)localedata
  153: bug-ungetwc2-ENV = LOCPATH=$(common-objpfx)localedata
  154: tst-swscanf-ENV = LOCPATH=$(common-objpfx)localedata
  155: bug-ftell-ENV = LOCPATH=$(common-objpfx)localedata
  156: 
  157: generated = tst-fopenloc.mtrace tst-fopenloc.check
  158: 
  159: aux     := fileops genops stdfiles stdio strops
  160: 
  161: ifeq ($(versioning),yes)
  162: aux     += oldfileops oldstdfiles
  163: endif
  164: 
  165: shared-only-routines = oldiofopen oldiofdopen oldiofclose oldfileops    \
  166:                        oldstdfiles oldiopopen oldpclose oldtmpfile    \
  167:                        oldiofgetpos oldiofgetpos64 oldiofsetpos               \
  168:                        oldiofsetpos64
  169: 
  170: distribute := iolibio.h libioP.h strfile.h Banner test-freopen.sh \
  171:               fd_to_filename.h
  172: 
  173: include ../Rules
  174: 
  175: ifeq (no,$(cross-compiling))
  176: tests: $(objpfx)test-freopen.out $(objpfx)tst-fopenloc.check
  177: endif
  178: 
  179: $(objpfx)test-freopen.out: test-freopen.sh $(objpfx)test-freopen
  180:         $(SHELL) -e $< $(common-objpfx) '$(run-program-prefix)'        \
  181:         $(common-objpfx)libio/
  182: 
  183: $(objpfx)tst-fopenloc.check: $(objpfx)tst-fopenloc.out
  184:         cmp ../iconvdata/testdata/ISO-8859-1..UTF8 $(objpfx)tst-fopenloc.out \
  185:           > $@
  186:         $(common-objpfx)malloc/mtrace $(objpfx)tst-fopenloc.mtrace >> $@
Syntax (Markdown)