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

📄 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 C13
# 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: \
	Malclass \
	Newdel \
	Pstest \
	Stktst11 \
	Newhandl \
	GlobalNew \
	Framis \
	ArrayNew \
	NoMemory \
	PlacementNew \

test: all
	Malclass 
	Newdel 
	Pstest 
	Stktst11 
	Newhandl 
	GlobalNew 
	Framis 
	ArrayNew 
	NoMemory 
	PlacementNew 

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

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

Pstest: Pstest.o PStash.o 
	$(CPP) $(OFLAG)Pstest Pstest.o PStash.o 

Stktst11: Stktst11.o Stack11.o 
	$(CPP) $(OFLAG)Stktst11 Stktst11.o Stack11.o 

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

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

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

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

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

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


Malclass.o: Malclass.cpp ../require.h 
Newdel.o: Newdel.cpp 
PStash.o: PStash.cpp PStash.h 
Pstest.o: Pstest.cpp ../require.h PStash.h Strings.h 
Stack11.o: Stack11.cpp Stack11.h 
Stktst11.o: Stktst11.cpp ../require.h Stack11.h Strings.h 
Newhandl.o: Newhandl.cpp 
GlobalNew.o: GlobalNew.cpp 
Framis.o: Framis.cpp 
ArrayNew.o: ArrayNew.cpp 
NoMemory.o: NoMemory.cpp 
PlacementNew.o: PlacementNew.cpp 

⌨️ 快捷键说明

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