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

📄 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 C06
# 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: \
	Constructor1.exe \
	DefineInitialize.exe \
	Nojump.exe \
	Stash2Test.exe \
	Stack3Test.exe \
	Multiarg.exe \
	AutoDefaultConstructor.exe 

test: all 
	Constructor1.exe  
	DefineInitialize.exe  
	Nojump.exe  
	Stash2Test.exe  
	Stack3Test.exe  
	Multiarg.exe  
	AutoDefaultConstructor.exe  

bugs: 
	@echo No compiler bugs in this directory!

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

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

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

Stash2Test.exe: Stash2Test.obj Stash2.obj 
	$(CPP) $(OFLAG)Stash2Test.exe Stash2Test.obj Stash2.obj 

Stack3Test.exe: Stack3Test.obj Stack3.obj 
	$(CPP) $(OFLAG)Stack3Test.exe Stack3Test.obj Stack3.obj 

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

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


Constructor1.obj: Constructor1.cpp 
DefineInitialize.obj: DefineInitialize.cpp ..\require.h 
Nojump.obj: Nojump.cpp 
Stash2.obj: Stash2.cpp Stash2.h 
Stash2Test.obj: Stash2Test.cpp Stash2.h ..\require.h 
Stack3.obj: Stack3.cpp Stack3.h ..\require.h 
Stack3Test.obj: Stack3Test.cpp Stack3.h ..\require.h 
Multiarg.obj: Multiarg.cpp 
AutoDefaultConstructor.obj: AutoDefaultConstructor.cpp 

⌨️ 快捷键说明

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