makefile
来自「LOKI97加密解密算法,用C语言实现的一种加密解密算法。」· 代码 · 共 35 行
TXT
35 行
# 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 + =
减小字号Ctrl + -
显示快捷键?