📄 makefile
字号:
FILE1 = basicmath_small.c rad2deg.c cubic.c isqrt.cFILE2 = basicmath_large.c rad2deg.c cubic.c isqrt.call: basicmath_small basicmath_largebasicmath_small: ${FILE1} Makefile gcc -static -O3 ${FILE1} -o basicmath_small -lmbasicmath_large: ${FILE2} Makefile gcc -static -O3 ${FILE2} -o basicmath_large -lmclean: rm -rf basicmath_small basicmath_large output*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -