makefile
资源名称:CppPrimer.rar [点击查看]
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:1k
源码类别:
书籍源码
开发平台:
Visual C++
- # executable files for this directory
- OBJECTS = Foldermain.exe smart-ptr.exe value-ptr.exe
- plain-ptr.exe
- # tells make to use the file "..MS_makefile_template", which
- # defines general rules for making .obj and .exe files
- include ..MS_makefile_template
- # additional dependencies or rules follow --
- # see makefile for chapter 2 for additional explanation if needed
- Folder.obj Foldermain.obj: Folder.h
- Foldermain.exe: Folder.obj Foldermain.obj
- $(CPP) $(CPPFLAGS) Folder.obj Foldermain.obj -o Foldermain.exe