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

📄 makefile

📁 该源码属于应用密码学里国际加密标准算法IDEA的实现
💻
字号:
# make          is used to build user command 'idea'# make raster   is used to build a user command 'idea' that is capable to #               encrypt and decrypt rasterfiles (pictures on SUN computers)# make test     is used to test correctness of user command 'idea'# make lint     is used for debugging## If 'ANSI_C' is defined in 'idea.h' then the preprocessed source code is# ANSI-C or C++ code, otherwise it is Kerninghan & Ritchie C code.## change the next line such that your C-compiler is usedCC      = acc -O2all:	ideaidea:	idea_cmd.c idea.c idea.h	$(CC) -o idea idea_cmd.c idea.craster:	idea_cmd.c idea.c idea.h	$(CC) -DRASTERFILE -DTIME -o idea idea_cmd.c idea.ctest:	idea dumphex.c idea.h	$(CC) -o dumphex dumphex.c	test1lint:	idea_cmd.c idea.c idea.h	alint -abchx idea_cmd.c idea.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -