makefile

来自「IDEA加密算法(PGP中使用的加密算法)」· 代码 · 共 27 行

TXT
27
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?