makefile

来自「This general hash alogorithm implementat」· 代码 · 共 32 行

TXT
32
字号
## General Hash Function Algorithms Master MakeFile# By Arash Partow - 2000## URL: http://www.partow.net/programming/hashfunctions/index.html## Copyright Notice:# Free use of this library is permitted under the# guidelines and in accordance with the most# current version of the Common Public License.# http://www.opensource.org/licenses/cpl.php#COMPILER      = -ccOPTIONS       = -std=c99 -pedantic -Wall -oOPTIONS_LIBS  = -std=c99 -pedantic -Wall -call: GeneralHashFunctions.o HashTestGeneralHashFunctions.o: GeneralHashFunctions.c GeneralHashFunctions.h	$(COMPILER) $(OPTIONS_LIBS) GeneralHashFunctions.cHashTest: GeneralHashFunctions.c HashTest.c	$(COMPILER) $(OPTIONS) HashTest HashTest.c GeneralHashFunctions.oclean:	rm -f core *.o *.bak *stackdump *### The End !#

⌨️ 快捷键说明

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