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

📄 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 C13
# 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: \
	Malclass.exe \
	Newdel.exe \
	Pstest.exe \
	Stktst11.exe \
	Newhandl.exe \
	GlobalNew.exe \
	Framis.exe \
	ArrayNew.exe \
	NoMemory.exe \
	PlacementNew.exe \

test: all
	Malclass.exe 
	Newdel.exe 
	Pstest.exe 
	Stktst11.exe 
	Newhandl.exe 
	GlobalNew.exe 
	Framis.exe 
	ArrayNew.exe 
	NoMemory.exe 
	PlacementNew.exe 

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

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

Pstest.exe: Pstest.obj PStash.obj 
	$(CPP) $(OFLAG)Pstest.exe Pstest.obj PStash.obj 

Stktst11.exe: Stktst11.obj Stack11.obj 
	$(CPP) $(OFLAG)Stktst11.exe Stktst11.obj Stack11.obj 

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

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

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

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

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

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


Malclass.obj: Malclass.cpp ..\require.h 
Newdel.obj: Newdel.cpp 
PStash.obj: PStash.cpp PStash.h 
Pstest.obj: Pstest.cpp ..\require.h PStash.h Strings.h 
Stack11.obj: Stack11.cpp Stack11.h 
Stktst11.obj: Stktst11.cpp ..\require.h Stack11.h Strings.h 
Newhandl.obj: Newhandl.cpp 
GlobalNew.obj: GlobalNew.cpp 
Framis.obj: Framis.cpp 
ArrayNew.obj: ArrayNew.cpp 
NoMemory.obj: NoMemory.cpp 
PlacementNew.obj: PlacementNew.cpp 

⌨️ 快捷键说明

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