/GeneralHashFunctions_-_C/Makefile
Makefile | 32 lines | 10 code | 7 blank | 15 comment | 0 complexity | f6c51d2748155487532eda3b1d118054 MD5 | raw file
1# 2# General Hash Function Algorithms Master MakeFile 3# By Arash Partow - 2000 4# 5# URL: http://www.partow.net/programming/hashfunctions/index.html 6# 7# Copyright Notice: 8# Free use of this library is permitted under the 9# guidelines and in accordance with the most 10# current version of the Common Public License. 11# http://www.opensource.org/licenses/cpl1.0.php 12# 13 14COMPILER = -cc 15OPTIONS = -std=c99 -pedantic -Wall -o 16OPTIONS_LIBS = -std=c99 -pedantic -Wall -c 17 18 19all: GeneralHashFunctions.o HashTest 20 21GeneralHashFunctions.o: GeneralHashFunctions.c GeneralHashFunctions.h 22 $(COMPILER) $(OPTIONS_LIBS) GeneralHashFunctions.c 23 24HashTest: GeneralHashFunctions.c HashTest.c 25 $(COMPILER) $(OPTIONS) HashTest HashTest.c GeneralHashFunctions.o 26 27clean: 28 rm -f core *.o *.bak *stackdump *# 29 30# 31# The End ! 32#