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