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

📄 all.makefile

📁 这是介绍C++非常经典的一本书,无论是初学者还是对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 C02
# using the all compiler
# Note: does not make files that will 
# not compile with this compiler
# Invoke with: make -f all.makefile

.SUFFIXES : .obj .cpp .c
.cpp.obj :
	$(CPP) $(CPPFLAGS) -c $<
.c.obj :
	$(CPP) $(CPPFLAGS) -c $<

all: \
	Declare.exe \
	Hello.exe \
	Stream2.exe \
	Concat.exe \
	Numconv.exe \
	CallHello.exe \
	HelloStrings.exe \
	Scopy.exe \
	FillString.exe \
	Fillvector.exe \
	GetWords.exe \
	Intvector.exe 

test: all 
	Declare.exe  
	Hello.exe  
	Stream2.exe  
	Concat.exe  
	Numconv.exe  
	CallHello.exe  
	HelloStrings.exe  
	Scopy.exe  
	FillString.exe  
	Fillvector.exe  
	GetWords.exe  
	Intvector.exe  

bugs: 
	@echo No compiler bugs in this directory!

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

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

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

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

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

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

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

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

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

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

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

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


Declare.obj: Declare.cpp 
Hello.obj: Hello.cpp 
Stream2.obj: Stream2.cpp 
Concat.obj: Concat.cpp 
Numconv.obj: Numconv.cpp 
CallHello.obj: CallHello.cpp 
HelloStrings.obj: HelloStrings.cpp 
Scopy.obj: Scopy.cpp 
FillString.obj: FillString.cpp 
Fillvector.obj: Fillvector.cpp 
GetWords.obj: GetWords.cpp 
Intvector.obj: Intvector.cpp 

⌨️ 快捷键说明

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