?? 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 C07
# 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: \
Use.exe \
Stash3Test.exe \
UnionClass.exe \
SuperVar.exe \
AnonymousUnion.exe \
MemTest.exe
test: all
Use.exe
Stash3Test.exe
UnionClass.exe
SuperVar.exe
AnonymousUnion.exe
MemTest.exe
bugs:
@echo No compiler bugs in this directory!
Use.exe: Use.obj Def.obj
$(CPP) $(OFLAG)Use.exe Use.obj Def.obj
Stash3Test.exe: Stash3Test.obj Stash3.obj
$(CPP) $(OFLAG)Stash3Test.exe Stash3Test.obj Stash3.obj
UnionClass.exe: UnionClass.obj
$(CPP) $(OFLAG)UnionClass.exe UnionClass.obj
SuperVar.exe: SuperVar.obj
$(CPP) $(OFLAG)SuperVar.exe SuperVar.obj
AnonymousUnion.exe: AnonymousUnion.obj
$(CPP) $(OFLAG)AnonymousUnion.exe AnonymousUnion.obj
MemTest.exe: MemTest.obj Mem.obj
$(CPP) $(OFLAG)MemTest.exe MemTest.obj Mem.obj
Def.obj: Def.cpp
Use.obj: Use.cpp
Stash3.obj: Stash3.cpp Stash3.h ..\require.h
Stash3Test.obj: Stash3Test.cpp Stash3.h ..\require.h
UnionClass.obj: UnionClass.cpp
SuperVar.obj: SuperVar.cpp
AnonymousUnion.obj: AnonymousUnion.cpp
Mem.obj: Mem.cpp Mem.h
MemTest.obj: MemTest.cpp Mem.h
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -