📄 all.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 C06
# using the all compiler
# Note: does not make files that will
# not compile with this compiler
# Invoke with: make -f all.makefile
.SUFFIXES : .obj .cpp .c
.cpp.obj :
$(CPP) $(CPPFLAGS) -c $<
.c.obj :
$(CPP) $(CPPFLAGS) -c $<
all: \
Constr1.exe \
Definit.exe \
Stshtst3.exe \
Stktst3.exe \
Multiarg.exe \
test: all
Constr1.exe
Definit.exe
Stshtst3.exe
Stktst3.exe
Multiarg.exe
Constr1.exe: Constr1.obj
$(CPP) $(OFLAG)Constr1.exe Constr1.obj
Definit.exe: Definit.obj
$(CPP) $(OFLAG)Definit.exe Definit.obj
Stshtst3.exe: Stshtst3.obj Stash3.obj
$(CPP) $(OFLAG)Stshtst3.exe Stshtst3.obj Stash3.obj
Stktst3.exe: Stktst3.obj Stack3.obj
$(CPP) $(OFLAG)Stktst3.exe Stktst3.obj Stack3.obj
Multiarg.exe: Multiarg.obj
$(CPP) $(OFLAG)Multiarg.exe Multiarg.obj
Constr1.obj: Constr1.cpp
Definit.obj: Definit.cpp ..\require.h
Nojump.obj: Nojump.cpp
Stash3.obj: Stash3.cpp ..\require.h Stash3.h
Stshtst3.obj: Stshtst3.cpp ..\require.h Stash3.h
Stack3.obj: Stack3.cpp ..\require.h Stack3.h
Stktst3.obj: Stktst3.cpp ..\require.h Stack3.h
Multiarg.obj: Multiarg.cpp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -