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

📄 beta1.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 Beta1 compiler
# Note: does not make files that will 
# not compile with this compiler
# Invoke with: make -f Beta1.makefile

CPP = beta1
CPPFLAGS = -w-inl -w-csu
OFLAG = -e
.SUFFIXES : .obj .cpp .c
.cpp.obj :
	$(CPP) $(CPPFLAGS) -c $<
.c.obj :
	$(CPP) $(CPPFLAGS) -c $<

all: \
	Refrnce.exe \
	Pasconst.exe \
	Refptr.exe \
	Passtruc.exe \
	HowMany.exe \
	HowMany2.exe \
	Linenum.exe \
	Autocc.exe \
	Stopcc.exe \
	Pmem.exe \
	Pmem2.exe \

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

Refrnce.exe: Refrnce.obj 
	$(CPP) $(OFLAG)Refrnce.exe Refrnce.obj 

Pasconst.exe: Pasconst.obj 
	$(CPP) $(OFLAG)Pasconst.exe Pasconst.obj 

Refptr.exe: Refptr.obj 
	$(CPP) $(OFLAG)Refptr.exe Refptr.obj 

Passtruc.exe: Passtruc.obj 
	$(CPP) $(OFLAG)Passtruc.exe Passtruc.obj 

HowMany.exe: HowMany.obj 
	$(CPP) $(OFLAG)HowMany.exe HowMany.obj 

HowMany2.exe: HowMany2.obj 
	$(CPP) $(OFLAG)HowMany2.exe HowMany2.obj 

Linenum.exe: Linenum.obj 
	$(CPP) $(OFLAG)Linenum.exe Linenum.obj 

Autocc.exe: Autocc.obj 
	$(CPP) $(OFLAG)Autocc.exe Autocc.obj 

Stopcc.exe: Stopcc.obj 
	$(CPP) $(OFLAG)Stopcc.exe Stopcc.obj 

Pmem.exe: Pmem.obj 
	$(CPP) $(OFLAG)Pmem.exe Pmem.obj 

Pmem2.exe: Pmem2.obj 
	$(CPP) $(OFLAG)Pmem2.exe Pmem2.obj 


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

⌨️ 快捷键说明

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