home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / libgplus.5 / libio / stdio / makefile.in < prev    next >
Encoding:
Makefile  |  1993-10-04  |  594 b   |  20 lines

  1. srcdir = .
  2.  
  3. #### package, host, target, and site dependent Makefile fragments come in here.
  4. ##
  5.  
  6. # These are compiled from the corresponding ../ioFOO.c files.
  7. STDIO_RENAMED_OBJECTS = ... filled in by configure ...
  8. # These are the files that a libc would want.
  9. STDIO_OBJECTS = $(STDIO_RENAMED_OBJECTS) \
  10.   clearerr.o fdopen.o feof.o ferror.o fgetc.o fileno.o fputc.o freopen.o fseek.o popen rewind.o setbuf.c vfprintf.o vfscanf.o vprintf.o vscanf.o
  11.  
  12. CC_FOR_STDIO=$(CC)
  13. CINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/..
  14.  
  15. nothing:
  16.  
  17. stdio.list: $(STDIO_OBJECTS)
  18.     @echo "$(STDIO_OBJECTS)" >stdio.list
  19.  
  20.