makefile
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = manips.exe prec.exe point.exe sci_dec.exe 
  3.   buf.exe setw.exe seek.exe  sstream.exe 
  4.   use-getopen.exe main-proto.exe badgetc.exe 
  5.   skipws.exe no-skipws.exe getput.exe getc.exe 
  6. # tells make to use the file "..MS_makefile_template", which
  7. # defines general rules for making .obj and .exe files
  8. include ..MS_makefile_template
  9. # additional dependencies or rules follow --
  10. # see makefile for chapter 2 for additional explanation if needed
  11. main-proto.exe: main-proto.obj get_openfile.obj
  12. $(CPP) $(CPPFLAGS) main-proto.obj get_openfile.obj 
  13.                -o main-proto.exe
  14. use-getopen.exe: use-getopen.obj get_openfile.obj
  15. $(CPP) $(CPPFLAGS) use-getopen.obj get_openfile.obj 
  16.                -o use-getopen.exe