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

📄 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 C11
# 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: \
	Refrnce \
	Pasconst \
	Refptr \
	Passtruc \
	HowMany \
	HowMany2 \
	Linenum \
	Autocc \
	Stopcc \
	Pmem \
	Pmem2 \

test: all
	Refrnce 
	Pasconst 
	Refptr 
	Passtruc 
	HowMany 
	HowMany2 
	Linenum 
	Autocc 
	Stopcc 
	Pmem 
	Pmem2 

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

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

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

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

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

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

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

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

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

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

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


Refrnce.o: Refrnce.cpp 
Pasconst.o: Pasconst.cpp 
Refptr.o: Refptr.cpp 
Passtruc.o: Passtruc.cpp 
HowMany.o: HowMany.cpp 
HowMany2.o: HowMany2.cpp 
Linenum.o: Linenum.cpp ../require.h 
Autocc.o: Autocc.cpp 
Stopcc.o: Stopcc.cpp 
Pmem.o: Pmem.cpp 
Pmem2.o: Pmem2.cpp 

⌨️ 快捷键说明

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