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

📄 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 C14
# 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: \
	Compose \
	Compose2 \
	Inherit \
	Combined \
	Order \
	Hide \
	Ninherit \
	Car \
	FName1 \
	FName2 \
	Inhstak \
	Privinh \
	Wind \
	Ccright \
	Inhstak2 \

test: all
	Compose 
	Compose2 
	Inherit 
	Combined 
	Order 
	Hide 
	Ninherit 
	Car 
	FName1 
	FName2 
	Inhstak 
	Privinh 
	Wind 
	Ccright 
	Inhstak2 

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

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

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

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

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

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

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

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

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

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

Inhstak: Inhstak.o ../C13/Stack11.o 
	$(CPP) $(OFLAG)Inhstak Inhstak.o ../C13/Stack11.o 

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

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

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

Inhstak2: Inhstak2.o ../C13/Stack11.o 
	$(CPP) $(OFLAG)Inhstak2 Inhstak2.o ../C13/Stack11.o 


Compose.o: Compose.cpp Useful.h 
Compose2.o: Compose2.cpp Useful.h 
Inherit.o: Inherit.cpp Useful.h 
Combined.o: Combined.cpp 
Order.o: Order.cpp 
Hide.o: Hide.cpp 
Ninherit.o: Ninherit.cpp 
Car.o: Car.cpp 
FName1.o: FName1.cpp ../require.h 
FName2.o: FName2.cpp ../require.h 
Inhstak.o: Inhstak.cpp ../require.h ../C13/Stack11.h 
Privinh.o: Privinh.cpp 
Protect.o: Protect.cpp 
Wind.o: Wind.cpp 
Ccright.o: Ccright.cpp 
Inhstak2.o: Inhstak2.cpp ../require.h ../C13/Stack11.h 

⌨️ 快捷键说明

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