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

📄 all.makefile

📁 Thinking in C++ 2nd edition source code which are all the cores of the book Thinking in C++ second e
💻 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 C05
# 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: \
	Private.exe \
	Friend.exe \
	Nestfrnd.exe \
	Usehandl.exe \

test: all
	Private.exe 
	Friend.exe 
	Nestfrnd.exe 
	Usehandl.exe 

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

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

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

Usehandl.exe: Usehandl.obj Handle.obj 
	$(CPP) $(OFLAG)Usehandl.exe Usehandl.obj Handle.obj 


Public.obj: Public.cpp 
Private.obj: Private.cpp 
Friend.obj: Friend.cpp 
Nestfrnd.obj: Nestfrnd.cpp 
Class.obj: Class.cpp 
Handle.obj: Handle.cpp ..\require.h Handle.h 
Usehandl.obj: Usehandl.cpp Handle.h 

⌨️ 快捷键说明

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