| OLD | NEW |
| 1 ## Process this file with automake to generate Makefile.in | 1 ## Process this file with automake to generate Makefile.in |
| 2 | 2 |
| 3 AUTOMAKE_OPTIONS = cygnus | 3 AUTOMAKE_OPTIONS = cygnus |
| 4 | 4 |
| 5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) | 5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) |
| 6 | 6 |
| 7 GENERAL_SOURCES = \ | 7 GENERAL_SOURCES = \ |
| 8 clearerr.c \ | 8 clearerr.c \ |
| 9 fclose.c \ | 9 fclose.c \ |
| 10 fdopen.c \ | 10 fdopen.c \ |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 iscanf.c \ | 43 iscanf.c \ |
| 44 makebuf.c \ | 44 makebuf.c \ |
| 45 perror.c \ | 45 perror.c \ |
| 46 printf.c \ | 46 printf.c \ |
| 47 putc.c \ | 47 putc.c \ |
| 48 putchar.c \ | 48 putchar.c \ |
| 49 putc_u.c \ | 49 putc_u.c \ |
| 50 putchar_u.c \ | 50 putchar_u.c \ |
| 51 puts.c \ | 51 puts.c \ |
| 52 refill.c \ | 52 refill.c \ |
| 53 remove.c \ | |
| 54 rename.c \ | |
| 55 rewind.c \ | 53 rewind.c \ |
| 56 rget.c \ | 54 rget.c \ |
| 57 scanf.c \ | 55 scanf.c \ |
| 58 sccl.c \ | 56 sccl.c \ |
| 59 setbuf.c \ | 57 setbuf.c \ |
| 60 setbuffer.c \ | 58 setbuffer.c \ |
| 61 setlinebuf.c \ | 59 setlinebuf.c \ |
| 62 setvbuf.c \ | 60 setvbuf.c \ |
| 63 siprintf.c \ | 61 siprintf.c \ |
| 64 siscanf.c \ | 62 siscanf.c \ |
| 65 sniprintf.c \ | 63 sniprintf.c \ |
| 66 snprintf.c \ | 64 snprintf.c \ |
| 67 sprintf.c \ | 65 sprintf.c \ |
| 68 sscanf.c \ | 66 sscanf.c \ |
| 69 stdio.c \ | 67 stdio.c \ |
| 70 tmpfile.c \ | |
| 71 tmpnam.c \ | 68 tmpnam.c \ |
| 72 ungetc.c \ | 69 ungetc.c \ |
| 73 vdiprintf.c \ | 70 vdiprintf.c \ |
| 74 vdprintf.c \ | 71 vdprintf.c \ |
| 75 viprintf.c \ | 72 viprintf.c \ |
| 76 viscanf.c \ | 73 viscanf.c \ |
| 77 vprintf.c \ | 74 vprintf.c \ |
| 78 vscanf.c \ | 75 vscanf.c \ |
| 79 vsiprintf.c \ | 76 vsiprintf.c \ |
| 80 vsiscanf.c \ | 77 vsiscanf.c \ |
| 81 vsnprintf.c \ | 78 vsnprintf.c \ |
| 82 vsniprintf.c \ | 79 vsniprintf.c \ |
| 83 vsprintf.c \ | 80 vsprintf.c \ |
| 84 vsscanf.c \ | 81 vsscanf.c \ |
| 85 wbuf.c \ | 82 wbuf.c \ |
| 86 wsetup.c | 83 wsetup.c |
| 87 | 84 |
| 85 # @LOCALMOD: |
| 86 GENERAL_SOURCES_PNACL_ELIMINATED = eliminated: remove.c rename.c tmpfile.c
|
| 87 |
| 88 |
| 88 ## The following are EL/IX level 2 interfaces | 89 ## The following are EL/IX level 2 interfaces |
| 89 if ELIX_LEVEL_1 | 90 if ELIX_LEVEL_1 |
| 90 ELIX_2_SOURCES = | 91 ELIX_2_SOURCES = |
| 91 else | 92 else |
| 92 ELIX_2_SOURCES = \ | 93 ELIX_2_SOURCES = \ |
| 93 asiprintf.c \ | 94 asiprintf.c \ |
| 94 asprintf.c \ | 95 asprintf.c \ |
| 95 fcloseall.c \ | 96 fcloseall.c \ |
| 96 fseeko.c \ | 97 fseeko.c \ |
| 97 ftello.c \ | 98 ftello.c \ |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 $(lpfx)vsniprintf.$(oext): local.h | 387 $(lpfx)vsniprintf.$(oext): local.h |
| 387 $(lpfx)vsscanf.$(oext): local.h | 388 $(lpfx)vsscanf.$(oext): local.h |
| 388 $(lpfx)vswprintf.$(oext): local.h | 389 $(lpfx)vswprintf.$(oext): local.h |
| 389 $(lpfx)vswscanf.$(oext): local.h | 390 $(lpfx)vswscanf.$(oext): local.h |
| 390 $(lpfx)vwprintf.$(oext): local.h | 391 $(lpfx)vwprintf.$(oext): local.h |
| 391 $(lpfx)vwscanf.$(oext): local.h | 392 $(lpfx)vwscanf.$(oext): local.h |
| 392 $(lpfx)wbuf.$(oext): local.h fvwrite.h | 393 $(lpfx)wbuf.$(oext): local.h fvwrite.h |
| 393 $(lpfx)wprintf.$(oext): local.h | 394 $(lpfx)wprintf.$(oext): local.h |
| 394 $(lpfx)wscanf.$(oext): local.h | 395 $(lpfx)wscanf.$(oext): local.h |
| 395 $(lpfx)wsetup.$(oext): local.h | 396 $(lpfx)wsetup.$(oext): local.h |
| OLD | NEW |