home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / streams / smakefile < prev   
Encoding:
Makefile  |  1996-12-24  |  413 b   |  23 lines

  1. all: ifstream ofstream fstream istrstream ostrstream
  2.  
  3. ifstream: ifstream.o
  4.    sc link ifstream.o
  5.  
  6. ofstream: ofstream.o
  7.    sc link ofstream.o
  8.  
  9. fstream: fstream.o
  10.    sc link fstream.o
  11.  
  12. istrstream: istrstream.o
  13.    sc link istrstream.o
  14.  
  15. ostrstream: ostrstream.o
  16.    sc link ifstream.o
  17.  
  18. ifstream.o: ifstream.cpp
  19. ofstream.o: ofstream.cpp
  20. fstream.o: fstream.cpp
  21. istrstream.o: istrstream.cpp
  22. ostrstream.o: ostrstream.cpp