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

书籍源码

开发平台:

Visual C++

  1. # executable files for this directory
  2. OBJECTS = word_transform.exe multimap.exe 
  3.   3ed_query.exe word_count.exe erasemap.exe 
  4.   setexclusion.exe query.exe 
  5. # tells make to use the file "..MS_makefile_template", which
  6. # defines general rules for making .obj and .exe files
  7. include ..MS_makefile_template
  8. # one or more files in this directory includes a header
  9. # defined in chapter 9
  10. LOCFLAGS=-I ..9
  11. # additional dependencies or rules follow --
  12. # see makefile for chapter 2 for additional explanation if needed
  13. setexclusion.exe: setexclusion.obj ..8get_openfile.obj
  14. $(CPP) $(CPPFLAGS) setexclusion.obj ..8get_openfile.obj 
  15. -o setexclusion.exe
  16. 3ed_query.exe: 3ed_query.obj 3ed_querymain.obj 3ed_query.h ..8get_openfile.obj
  17. $(CPP) $(CPPFLAGS) 3ed_querymain.obj 3ed_query.obj 
  18.                 ..8get_openfile.obj -o 3ed_query.exe
  19. query.exe: TextQuery.obj querymain.obj TextQuery.h 
  20.           ..8get_openfile.obj ..7mk_plural2.obj
  21. $(CPP) $(CPPFLAGS) querymain.obj TextQuery.obj ..8get_openfile.obj 
  22.         ..7mk_plural2.obj -o query.exe
  23. word_transform.exe: word_transform.obj ..8get_openfile.obj
  24. $(CPP) $(CPPFLAGS) word_transform.obj 
  25.                 ..8get_openfile.obj -o word_transform.exe