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

📄 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 C04
# 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 \
	Libtestc.exe \
	Libtest.exe \
	Sizeof.exe \
	NestTest.exe \

test: all
	Declare.exe 
	Libtestc.exe 
	Libtest.exe 
	Sizeof.exe 
	NestTest.exe NestTest.cpp

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

Libtestc.exe: Libtestc.obj Lib.obj 
	$(CPP) $(OFLAG)Libtestc.exe Libtestc.obj Lib.obj 

Libtest.exe: Libtest.obj Libcpp.obj 
	$(CPP) $(OFLAG)Libtest.exe Libtest.obj Libcpp.obj 

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

NestTest.exe: NestTest.obj Nested.obj 
	$(CPP) $(OFLAG)NestTest.exe NestTest.obj Nested.obj 


Declare.obj: Declare.c 
Lib.obj: Lib.c Lib.h 
Libtestc.obj: Libtestc.c Lib.h 
Libcpp.obj: Libcpp.cpp ..\require.h Libcpp.h 
Libtest.obj: Libtest.cpp ..\require.h Libcpp.h 
Sizeof.obj: Sizeof.cpp Lib.h Libcpp.h 
Nested.obj: Nested.cpp ..\require.h Nested.h 
NestTest.obj: NestTest.cpp ..\require.h Nested.h 
Scoperes.obj: Scoperes.cpp 

⌨️ 快捷键说明

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