📄 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 C
# 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: \
ShapeV.exe \
ShapeV2.exe \
test: all
ShapeV.exe
ShapeV2.exe
ShapeV.exe: ShapeV.obj
$(CPP) $(OFLAG)ShapeV.exe ShapeV.obj
ShapeV2.exe: ShapeV2.obj
$(CPP) $(OFLAG)ShapeV2.exe ShapeV2.obj
ShapeV.obj: ShapeV.cpp ..\purge.h
ShapeV2.obj: ShapeV2.cpp ..\purge.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -