makefile

来自「C++_Primer_Book_and_Code.rar 第四版C++ PRIM」· 代码 · 共 15 行

TXT
15
字号
# 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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?