?? makefile
字號:
# Make loki97CFLAGS= -gPROGS= aestest aestime test_ecb test_cbc test_cfb1OBJ= loki97.o aestest.o aestime.o test_ecb.o test_cbc.o test_cfb1.oXLIB= loki97.oall: $(PROGS)aestest: aestest.o $(XLIB) cc -o aestest aestest.o $(XLIB)aestime: aestime.o $(XLIB) cc -o aestime aestime.o $(XLIB)test_ecb: test_ecb.o $(XLIB) cc -o test_ecb test_ecb.o $(XLIB)test_cbc: test_cbc.o $(XLIB) cc -o test_cbc test_cbc.o $(XLIB)test_cfb1: test_cfb1.o $(XLIB) cc -o test_cfb1 test_cfb1.o $(XLIB)test: $(PROGS) test_ecb 2>&1 | less test_cbc 2>&1 | less test_cfb1 2>&1 | lessclean: -rm $(OBJ)clobber: clean -rm $(PROGS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -