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

📄 beta1.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 C10
# using the Beta1 compiler
# Note: does not make files that will 
# not compile with this compiler
# Invoke with: make -f Beta1.makefile

CPP = beta1
CPPFLAGS = -w-inl -w-csu
OFLAG = -e
.SUFFIXES : .obj .cpp .c
.cpp.obj :
	$(CPP) $(CPPFLAGS) -c $<
.c.obj :
	$(CPP) $(CPPFLAGS) -c $<

all: \
	Statfun.exe \
	Funobj.exe \
	Statdest.exe \
	Statinit.exe \
	StaticMemberFunctions.exe \
	Selfmem.exe \
	Depend2.exe \

test: all
	Statfun.exe 
	Funobj.exe 
	Statdest.exe 
	Statinit.exe 
	StaticMemberFunctions.exe 
	Selfmem.exe 
	Depend2.exe 

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

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

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

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

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

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

Depend2.exe: Depend2.obj Depdefs.obj Depend.obj 
	$(CPP) $(OFLAG)Depend2.exe Depend2.obj Depdefs.obj Depend.obj 


Statfun.obj: Statfun.cpp ..\require.h 
Funobj.obj: Funobj.cpp 
Statdest.obj: Statdest.cpp 
Statinit.obj: Statinit.cpp 
Statarry.obj: Statarry.cpp 
Local.obj: Local.cpp 
StaticMemberFunctions.obj: StaticMemberFunctions.cpp 
Selfmem.obj: Selfmem.cpp 
Depdefs.obj: Depdefs.cpp Depend.h 
Depend.obj: Depend.cpp Depend.h 
Depend2.obj: Depend2.cpp Depend.h 

⌨️ 快捷键说明

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