?? egcs.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 CXX
# using the egcs compiler
# Note: does not make files that will
# not compile with this compiler
# Invoke with: make -f egcs.makefile
CPP = g++
OFLAG = -o
.SUFFIXES : .o .cpp .c
.cpp.o :
$(CPP) $(CPPFLAGS) -c $<
.c.o :
$(CPP) $(CPPFLAGS) -c $<
all: \
BikeTest
test: all
BikeTest
bugs:
@echo No compiler bugs in this directory!
BikeTest: BikeTest.o Bicycle.o
$(CPP) $(OFLAG)BikeTest BikeTest.o Bicycle.o
Bicycle.o: Bicycle.cpp Bicycle.h
BikeTest.o: BikeTest.cpp Bicycle.h
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -