makefile
来自「RISC处理器仿真分析程序。可以用于研究通用RISC处理器的指令和架构设计。在l」· 代码 · 共 26 行
TXT
26 行
all: anagram test-printf test-fmath test-math test-llong test-lswlranagram: ../src/anagram.c $(CC) $(CFLAGS) -o anagram ../src/anagram.ctest-printf: ../src/test-printf.c $(CC) $(CFLAGS) -o test-printf ../src/test-printf.c -lmtest-fmath: ../src/test-fmath.c $(CC) $(CFLAGS) -o test-fmath ../src/test-fmath.c -lmtest-math: ../src/test-math.c $(CC) $(CFLAGS) -o test-math ../src/test-math.c -lmtest-llong: ../src/test-llong.c $(CC) $(CFLAGS) -o test-llong ../src/test-llong.ctest-lswlr: ../src/test-lswlr.c $(CC) $(CFLAGS) -o test-lswlr ../src/test-lswlr.cclean: rm -f anagram test-printf test-fmath test-math test-llong test-lswlr rm -f *.o core *~ Makefile.bak
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?