diff options
Diffstat (limited to 'libio/stdio/Makefile.in')
-rw-r--r-- | libio/stdio/Makefile.in | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/libio/stdio/Makefile.in b/libio/stdio/Makefile.in index 8df66a7c193..680c8a497a4 100644 --- a/libio/stdio/Makefile.in +++ b/libio/stdio/Makefile.in @@ -7,9 +7,9 @@ srcdir = . STDIO_RENAMED_OBJECTS = ... filled in by configure ... # These are the files that a libc would want. STDIO_OBJECTS = $(STDIO_RENAMED_OBJECTS) \ - clearerr.o fdopen.o feof.o ferror.o fgetc.o fileno.o \ - fputc.o freopen.o fseek.o getc.o getchar.o getline.o getw.o \ - popen.o putc.o putchar.o putw.o rewind.o \ + clearerr.o fdopen.o fgetc.o fileno.o \ + fputc.o freopen.o fseek.o getchar.o getline.o getw.o \ + popen.o putchar.o putw.o rewind.o \ setbuf.o setfileno.o setlinebuf.o snprintf.o \ vfprintf.o vfscanf.o vprintf.o vscanf.o vsnprintf.o @@ -18,6 +18,18 @@ CINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/.. -D__USE_GNU nothing: +stmp-libio: stdio.list stamp-io + +stamp-io: + $(AR) $(AR_FLAGS) ../libio.a $(STDIO_OBJECTS) + touch stmp-io + +stmp-libiostream: stdio.list stamp-streamlib + +stamp-streamlib: + $(AR) $(AR_FLAGS) ../libiostream.a $(STDIO_OBJECTS) + touch stmp-streamlib + stdio.list: stamp-picdir $(STDIO_OBJECTS) @echo "$(STDIO_OBJECTS)" >stdio.list |