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

📄 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 C16
# 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: \
	IStack.exe \
	Stemp.exe \
	Stemp2.exe \
	Stackt.exe \
	Mblock.exe \
	Tstest.exe \
	Tstktst.exe \
	Sorted.exe \
	Recycle.exe \
	Getmem.exe \
	Applist.exe \
	Generate.exe \
	Special.exe \

test: all
	IStack.exe 
	Stemp.exe 
	Stemp2.exe 
	Stackt.exe 
	Mblock.exe 
	Tstest.exe 
	Tstktst.exe 
	Sorted.exe 
	Recycle.exe 
	Getmem.exe 
	Applist.exe 
	Generate.exe 
	Special.exe 

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

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

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

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

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

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

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

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

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

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

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

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

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


IStack.obj: IStack.cpp ..\require.h 
Stemp.obj: Stemp.cpp ..\require.h 
Stemp2.obj: Stemp2.cpp ..\require.h 
Stackt.obj: Stackt.cpp ..\require.h Stackt.h 
Mblock.obj: Mblock.cpp ..\require.h 
Tstest.obj: Tstest.cpp ..\require.h TStash.h 
Tstktst.obj: Tstktst.cpp ..\require.h TStack.h 
Sorted.obj: Sorted.cpp Sorted.h Integer.h 
Recycle.obj: Recycle.cpp TStack.h 
Getmem.obj: Getmem.cpp Getmem.h 
Applist.obj: Applist.cpp TStack.h 
Generate.obj: Generate.cpp Sorted.h Integer.h 
Special.obj: Special.cpp Sorted.h 

⌨️ 快捷键说明

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