makefile
资源名称:CppPrimer.rar [点击查看]
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:1k
源码类别:
书籍源码
开发平台:
Visual C++
- # executable files for this directory
- OBJECTS = word_transform.exe multimap.exe
- 3ed_query.exe word_count.exe erasemap.exe
- setexclusion.exe query.exe
- # tells make to use the file "..MS_makefile_template", which
- # defines general rules for making .obj and .exe files
- include ..MS_makefile_template
- # one or more files in this directory includes a header
- # defined in chapter 9
- LOCFLAGS=-I ..9
- # additional dependencies or rules follow --
- # see makefile for chapter 2 for additional explanation if needed
- setexclusion.exe: setexclusion.obj ..8get_openfile.obj
- $(CPP) $(CPPFLAGS) setexclusion.obj ..8get_openfile.obj
- -o setexclusion.exe
- 3ed_query.exe: 3ed_query.obj 3ed_querymain.obj 3ed_query.h ..8get_openfile.obj
- $(CPP) $(CPPFLAGS) 3ed_querymain.obj 3ed_query.obj
- ..8get_openfile.obj -o 3ed_query.exe
- query.exe: TextQuery.obj querymain.obj TextQuery.h
- ..8get_openfile.obj ..7mk_plural2.obj
- $(CPP) $(CPPFLAGS) querymain.obj TextQuery.obj ..8get_openfile.obj
- ..7mk_plural2.obj -o query.exe
- word_transform.exe: word_transform.obj ..8get_openfile.obj
- $(CPP) $(CPPFLAGS) word_transform.obj
- ..8get_openfile.obj -o word_transform.exe