⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 borland.makefile

📁 Think in C++ 第二版源码
💻 MAKEFILE
字号:
# From Thinking in C++, 2nd Edition
# At http://www.BruceEckel.com
# (c) Bruce Eckel 1999
# Copyright notice in Copyright.txt
# Automatically-generated MAKEFILE 
# For examples in directory C23
# using the Borland compiler
# Note: does not make files that will 
# not compile with this compiler
# Invoke with: make -f Borland.makefile

# Note: this requires the upgrade from
# www.Borland.com for successful compilation!
CPP = Bcc32
CPPFLAGS = -w-inl -w-csu -wnak
OFLAG = -e
.SUFFIXES : .obj .cpp .c
.cpp.obj :
	$(CPP) $(CPPFLAGS) -c $<
.c.obj :
	$(CPP) $(CPPFLAGS) -c $<

all: \
	Nonlocal.exe \
	Except.exe \
	Trmnator.exe \
	Cleanup.exe \
	Nudep.exe \
	Wrapped.exe \
	Autoexcp.exe \
	Basexcpt.exe \
	Catchref.exe 

test: all 
	Nonlocal.exe  
	Except.exe  
	Trmnator.exe  
	Cleanup.exe  
	Nudep.exe  
	Wrapped.exe  
	Autoexcp.exe  
	Basexcpt.exe  
	Catchref.exe  

bugs: \
	FunctionTryBlock.exe 

Nonlocal.exe: Nonlocal.obj 
	$(CPP) $(OFLAG)Nonlocal.exe Nonlocal.obj 

Except.exe: Except.obj 
	$(CPP) $(OFLAG)Except.exe Except.obj 

Trmnator.exe: Trmnator.obj 
	$(CPP) $(OFLAG)Trmnator.exe Trmnator.obj 

FunctionTryBlock.exe: FunctionTryBlock.obj 
	$(CPP) $(OFLAG)FunctionTryBlock.exe FunctionTryBlock.obj 

Cleanup.exe: Cleanup.obj 
	$(CPP) $(OFLAG)Cleanup.exe Cleanup.obj 

Nudep.exe: Nudep.obj 
	$(CPP) $(OFLAG)Nudep.exe Nudep.obj 

Wrapped.exe: Wrapped.obj 
	$(CPP) $(OFLAG)Wrapped.exe Wrapped.obj 

Autoexcp.exe: Autoexcp.obj 
	$(CPP) $(OFLAG)Autoexcp.exe Autoexcp.obj 

Basexcpt.exe: Basexcpt.obj 
	$(CPP) $(OFLAG)Basexcpt.exe Basexcpt.obj 

Catchref.exe: Catchref.obj 
	$(CPP) $(OFLAG)Catchref.exe Catchref.obj 


Nonlocal.obj: Nonlocal.cpp 
Except.obj: Except.cpp 
Trmnator.obj: Trmnator.cpp 
FunctionTryBlock.obj: FunctionTryBlock.cpp 
Cleanup.obj: Cleanup.cpp 
Nudep.obj: Nudep.cpp 
Wrapped.obj: Wrapped.cpp 
Autoexcp.obj: Autoexcp.cpp 
Basexcpt.obj: Basexcpt.cpp 
Catchref.obj: Catchref.cpp 

⌨️ 快捷键说明

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