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

📄 egcs.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 C16
# 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: \
	IStack \
	Stemp \
	Stemp2 \
	Stackt \
	Mblock \
	Tstest \
	Tstktst \
	Sorted \
	Recycle \
	Applist \
	Generate \
	Special \

test: all
	IStack 
	Stemp 
	Stemp2 
	Stackt 
	Mblock 
	Tstest 
	Tstktst 
	Sorted 
	Recycle 
	Applist 
	Generate 
	Special 

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

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

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

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

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

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

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

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

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

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

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

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


IStack.o: IStack.cpp ../require.h 
Stemp.o: Stemp.cpp ../require.h 
Stemp2.o: Stemp2.cpp ../require.h 
Stackt.o: Stackt.cpp ../require.h Stackt.h 
Mblock.o: Mblock.cpp ../require.h 
Tstest.o: Tstest.cpp ../require.h TStash.h 
Tstktst.o: Tstktst.cpp ../require.h TStack.h 
Sorted.o: Sorted.cpp Sorted.h Integer.h 
Recycle.o: Recycle.cpp TStack.h 
Applist.o: Applist.cpp TStack.h 
Generate.o: Generate.cpp Sorted.h Integer.h 
Special.o: Special.cpp Sorted.h 

⌨️ 快捷键说明

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