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

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

CPP = g++
OFLAG = -o
.SUFFIXES : .o .cpp .c
.cpp.o :
	$(CPP) $(CPPFLAGS) -c $<
.c.o :
	$(CPP) $(CPPFLAGS) -c $<

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

test: all
	Statfun 
	Funobj 
	Statdest 
	Statinit 
	StaticMemberFunctions 
	Selfmem 
	Depend2 

Statfun: Statfun.o 
	$(CPP) $(OFLAG)Statfun Statfun.o 

Funobj: Funobj.o 
	$(CPP) $(OFLAG)Funobj Funobj.o 

Statdest: Statdest.o 
	$(CPP) $(OFLAG)Statdest Statdest.o 

Statinit: Statinit.o 
	$(CPP) $(OFLAG)Statinit Statinit.o 

StaticMemberFunctions: StaticMemberFunctions.o 
	$(CPP) $(OFLAG)StaticMemberFunctions StaticMemberFunctions.o 

Selfmem: Selfmem.o 
	$(CPP) $(OFLAG)Selfmem Selfmem.o 

Depend2: Depend2.o Depdefs.o Depend.o 
	$(CPP) $(OFLAG)Depend2 Depend2.o Depdefs.o Depend.o 


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

⌨️ 快捷键说明

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