makefile.in

来自「gdb-6.8 Linux下的调试程序 最新版本」· IN 代码 · 共 54 行

IN
54
字号
CC=gccCFLAGS = -Wall -Werror -I../../common -I../../../include -gdefault: check# Verify SIM-BITScheck: bits32m0.ok bits32m31.ok bits64m0.ok bits64m63.okall: bits32m0 bits32m31 bits64m0 bits64m63bits32m0.c: bits-gen bits-tst.c	./bits-gen 32 0 big > tmp-bits32m0.c	cat bits-tst.c >> tmp-bits32m0.c	mv tmp-bits32m0.c bits32m0.cbits32m31.c: bits-gen bits-tst.c	./bits-gen 32 31 little > tmp-bits32m31.c	cat bits-tst.c >> tmp-bits32m31.c	mv tmp-bits32m31.c bits32m31.cbits64m0.c: bits-gen bits-tst.c	./bits-gen 64 0 big > tmp-bits64m0.c	cat bits-tst.c >> tmp-bits64m0.c	mv tmp-bits64m0.c bits64m0.cbits64m63.c: bits-gen bits-tst.c	./bits-gen 64 63 little > tmp-bits64m63.c	cat bits-tst.c >> tmp-bits64m63.c	mv tmp-bits64m63.c bits64m63.c# Verify SIM-FPU##check: fpu-tst.ok#all: fpu-tst# Verify SIM-ALUcheck: alu-tst.okall: alu-tstalu-tst.o: alu-tst.c alu-n-tst.hclean:	rm -f *.o	rm -f *.ok	rm -f bits32m0 bits32m31 bits64m0 bits64m63 bits-gen	rm -f tmp-*	rm -f alu-tst.SUFIXES: .ok%.ok: %	./$<	touch $<.ok

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?