makefile.bugs
来自「C++编程思想 第一卷:标准C++导引(美)Bruce Eckel著」· BUGS 代码 · 共 174 行
BUGS
174 行
# Master makefile for Thinking in C++, 2nd Ed. by Bruce Eckel
# at http://www.BruceEckel.com
# Compiles all the code in the book
# Copyright notice in Copyright.txt
help:
@echo To compile all programs from
@echo Thinking in C++, 2nd Ed., type
@echo one of the following commands,
@echo according to your compiler:
@echo make Borland
@echo make Microsoft
@echo make all
@echo make gcc
Borland:
cd C02
make -f Borland.makefile -i bugs
cd ..
cd C03
make -f Borland.makefile -i bugs
cd ..
cd C04
make -f Borland.makefile -i bugs
cd ..
cd C05
make -f Borland.makefile -i bugs
cd ..
cd C06
make -f Borland.makefile -i bugs
cd ..
cd C07
make -f Borland.makefile -i bugs
cd ..
cd C08
make -f Borland.makefile -i bugs
cd ..
cd C09
make -f Borland.makefile -i bugs
cd ..
cd C10
make -f Borland.makefile -i bugs
cd ..
cd C11
make -f Borland.makefile -i bugs
cd ..
cd C12
make -f Borland.makefile -i bugs
cd ..
cd C13
make -f Borland.makefile -i bugs
cd ..
cd C14
make -f Borland.makefile -i bugs
cd ..
cd C15
make -f Borland.makefile -i bugs
cd ..
cd C16
make -f Borland.makefile -i bugs
cd ..
Microsoft:
cd C02
make -f Microsoft.makefile -i bugs
cd ..
cd C03
make -f Microsoft.makefile -i bugs
cd ..
cd C04
make -f Microsoft.makefile -i bugs
cd ..
cd C05
make -f Microsoft.makefile -i bugs
cd ..
cd C06
make -f Microsoft.makefile -i bugs
cd ..
cd C07
make -f Microsoft.makefile -i bugs
cd ..
cd C08
make -f Microsoft.makefile -i bugs
cd ..
cd C09
make -f Microsoft.makefile -i bugs
cd ..
cd C10
make -f Microsoft.makefile -i bugs
cd ..
cd C11
make -f Microsoft.makefile -i bugs
cd ..
cd C12
make -f Microsoft.makefile -i bugs
cd ..
cd C13
make -f Microsoft.makefile -i bugs
cd ..
cd C14
make -f Microsoft.makefile -i bugs
cd ..
cd C15
make -f Microsoft.makefile -i bugs
cd ..
cd C16
make -f Microsoft.makefile -i bugs
cd ..
all:
cd C02
make -f all.makefile -i bugs
cd ..
cd C03
make -f all.makefile -i bugs
cd ..
cd C04
make -f all.makefile -i bugs
cd ..
cd C05
make -f all.makefile -i bugs
cd ..
cd C06
make -f all.makefile -i bugs
cd ..
cd C07
make -f all.makefile -i bugs
cd ..
cd C08
make -f all.makefile -i bugs
cd ..
cd C09
make -f all.makefile -i bugs
cd ..
cd C10
make -f all.makefile -i bugs
cd ..
cd C11
make -f all.makefile -i bugs
cd ..
cd C12
make -f all.makefile -i bugs
cd ..
cd C13
make -f all.makefile -i bugs
cd ..
cd C14
make -f all.makefile -i bugs
cd ..
cd C15
make -f all.makefile -i bugs
cd ..
cd C16
make -f all.makefile -i bugs
cd ..
gcc:
cd C02; make -f gcc.makefile -i bugs
cd C03; make -f gcc.makefile -i bugs
cd C04; make -f gcc.makefile -i bugs
cd C05; make -f gcc.makefile -i bugs
cd C06; make -f gcc.makefile -i bugs
cd C07; make -f gcc.makefile -i bugs
cd C08; make -f gcc.makefile -i bugs
cd C09; make -f gcc.makefile -i bugs
cd C10; make -f gcc.makefile -i bugs
cd C11; make -f gcc.makefile -i bugs
cd C12; make -f gcc.makefile -i bugs
cd C13; make -f gcc.makefile -i bugs
cd C14; make -f gcc.makefile -i bugs
cd C15; make -f gcc.makefile -i bugs
cd C16; make -f gcc.makefile -i bugs
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?