?? makefile
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -