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

📄 borland.makefile

📁 Thinking in C++ 2.0书籍源码光盘
💻 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 C15
# 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: \
	Wind2.exe \
	Wind3.exe \
	Wind4.exe \
	Sizes.exe \
	Early.exe \
	Wind5.exe \
	Pvdef.exe \
	Addv.exe \
	Slice.exe \
	Pvdest.exe 

test: all 
	Wind2.exe  
	Wind3.exe  
	Wind4.exe  
	Sizes.exe  
	Early.exe  
	Wind5.exe  
	Pvdef.exe  
	Addv.exe  
	Slice.exe  
	Pvdest.exe  

bugs: 
	@echo No compiler bugs in this directory!

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

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

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

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

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

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

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

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

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

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


Wind2.obj: Wind2.cpp 
Wind3.obj: Wind3.cpp 
Wind4.obj: Wind4.cpp 
Sizes.obj: Sizes.cpp 
Early.obj: Early.cpp 
Wind5.obj: Wind5.cpp 
Pvdef.obj: Pvdef.cpp 
Addv.obj: Addv.cpp 
Slice.obj: Slice.cpp 
Pvdest.obj: Pvdest.cpp 

⌨️ 快捷键说明

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