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

📄 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 C24
# 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: \
	Rtshapes \
	Rnest \
	Voidrtti \
	Inhorder \
	Mirtti \
	Recycle2 \
	Selfrtti \
	Statcast \
	Constcst \
	Reinterp \

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

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

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

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

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

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

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

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

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

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

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


Rtshapes.o: Rtshapes.cpp ../purge.h 
Rnest.o: Rnest.cpp 
Voidrtti.o: Voidrtti.cpp 
Inhorder.o: Inhorder.cpp 
Mirtti.o: Mirtti.cpp 
Recycle2.o: Recycle2.cpp ../purge.h 
Selfrtti.o: Selfrtti.cpp ../purge.h 
Statcast.o: Statcast.cpp 
Constcst.o: Constcst.cpp 
Reinterp.o: Reinterp.cpp 

⌨️ 快捷键说明

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