⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 LOKI97加密解密算法,用C语言实现的一种加密解密算法。
💻
字号:
#	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 + -