home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / iostream / stdio / Makefile.in < prev   
Encoding:
Makefile  |  1993-12-12  |  1.4 KB  |  38 lines

  1. srcdir = .
  2.  
  3. #### package, host, target, and site dependent Makefile fragments come in here.
  4. ##
  5.  
  6. STDIO_CFILES = clearerr.C emulate.C fclose.C fdopen.C feof.C \
  7.   ferror.C fflush.C fgetc.C fgetpos.C fgets.C fileno.C fopen.C \
  8.   fprintf.C fputc.C fputs.C fread.C freopen.C fscanf.C fseek.C \
  9.   fsetpos.C ftell.C fwrite.C gets.C perror.C popen.C printf.C puts.C \
  10.   remove.C rename.C rewind.C  scanf.C setbuf.C setbuffer.C \
  11.   setlinebuf.C setvbuf.C sprintf.C sscanf.C stdio.C tmpfile.C \
  12.   tmpnam.C vfprintf.C vfscanf.C vprintf.C vsprintf.C vscanf.C \
  13.   vsscanf.C ungetc.C
  14.  
  15. STDIO_FILES = $(STDIO_CFILES) stdio.h Makefile
  16.  
  17. STDIO_OBJECTS = clearerr.o emulate.o fclose.o fdopen.o feof.o \
  18.   ferror.o fflush.o fgetc.o fgetpos.o fgets.o fileno.o fopen.o \
  19.   fprintf.o fputc.o fputs.o fread.o freopen.o fscanf.o fseek.o \
  20.   fsetpos.o ftell.o fwrite.o gets.o perror.o popen.o printf.o puts.o \
  21.   remove.o rename.o rewind.o  scanf.o setbuf.o setbuffer.o \
  22.   setlinebuf.o setvbuf.o sprintf.o sscanf.o stdio.o tmpfile.o \
  23.   tmpnam.o vfprintf.o vfscanf.o vprintf.o vsprintf.o vscanf.o \
  24.   vsscanf.o ungetc.o
  25.  
  26. DEPEND_SOURCES = $(srcdir)/*.C
  27.  
  28. $(TARGETLIB): $(STDIO_OBJECTS)
  29.     -rm -f $(TARGETLIB)
  30.     $(AR) $(AR_FLAGS) $(TARGETLIB) $(STDIO_OBJECTS)
  31.     $(RANLIB) $(TARGETLIB)    
  32.  
  33. .PHONY: install
  34. install:
  35.     -rm -f $(libdir)/$(TARGETLIB)
  36.     $(INSTALL_DATA) $(TARGETLIB) $(libdir)/$(TARGETLIB)
  37.     $(RANLIB) $(libdir)/$(TARGETLIB)
  38.