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

📄 all.makefile

📁 Thinking_in_C___2.rar
💻 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 C24
# 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: \
	Rtshapes.exe \
	Rnest.exe \
	Voidrtti.exe \
	Inhorder.exe \
	Mirtti.exe \
	Recycle2.exe \
	Selfrtti.exe \
	Statcast.exe \
	Constcst.exe \
	Reinterp.exe \

test: all
	Rtshapes.exe 
	Rnest.exe 
	Voidrtti.exe 
	Inhorder.exe 
	Mirtti.exe 
	Recycle2.exe 
	Selfrtti.exe 
	Statcast.exe 
	Constcst.exe 
	Reinterp.exe 

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

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

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

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

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

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

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

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

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

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


Rtshapes.obj: Rtshapes.cpp ..\purge.h 
Rnest.obj: Rnest.cpp 
Voidrtti.obj: Voidrtti.cpp 
Inhorder.obj: Inhorder.cpp 
Mirtti.obj: Mirtti.cpp 
Recycle2.obj: Recycle2.cpp ..\purge.h 
Selfrtti.obj: Selfrtti.cpp ..\purge.h 
Statcast.obj: Statcast.cpp 
Constcst.obj: Constcst.cpp 
Reinterp.obj: Reinterp.cpp 

⌨️ 快捷键说明

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