📄 makefile
字号:
################################################################################ btree-mem-C/Makefile## COPYRIGHT (c) 1995, 1997 by David Van Wagner ALL RIGHTS RESERVED# Source and executables may be distributed under the terms of the GNU# General Public License version 2, see the file COPYING for details.## davevw@alumni.cse.ucsc.edu# http://alumni.cse.ucsc.edu/~davevw/###############################################################################.PHONY: tags all progs restartCC=g++#CFLAGS=-O3 -m486 -DNDEBUG -Wall -g#CFLAGS=-g -O3 -m486 -Wall#CFLAGS=-g -m486 -Wall -fno-inline#CFLAGS=-g -O3 -m486 -Wall -I/usr/include/g++#CFLAGS=-O -g -pg -Wall -DSUNCFLAGS=-O -Wall -DSUN#CFLAGS=-O3 -m486 -DNDEBUG -Wall -g -pgCXXFLAGS=$(CFLAGS)PROGS=test_btree random demo_btree regressall: $(PROGS)demo_btree.o: demo_btree.cc btree.h my_assert.h btkey.hmy_assert.o: my_assert.cc my_assert.htest_btree.o: test_btree.cc my_assert.h btree.hregress.o: regress.cc btree.h my_assert.h btkey.hrandom.o: random.c my_assert.hdemo_btree: demo_btree.o my_assert.o $(CC) $(CFLAGS) -o $@ demo_btree.o my_assert.otest_btree: test_btree.o my_assert.o $(CC) $(CFLAGS) -o $@ test_btree.o my_assert.oregress: regress.o my_assert.o $(CC) $(CFLAGS) -o $@ regress.o my_assert.orandom: random.o my_assert.o $(CC) $(CFLAGS) -o $@ random.o my_assert.otags: ctags *.cc *.cclean: rm ttt* $(PROGS) *.o tags core gmon.out 2>/dev/null || true
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -