/GeneralHashFunctions_-_C/Makefile

http://gphfa.googlecode.com/ · 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. COMPILER = -cc
  14. OPTIONS = -std=c99 -pedantic -Wall -o
  15. OPTIONS_LIBS = -std=c99 -pedantic -Wall -c
  16. all: GeneralHashFunctions.o HashTest
  17. GeneralHashFunctions.o: GeneralHashFunctions.c GeneralHashFunctions.h
  18. $(COMPILER) $(OPTIONS_LIBS) GeneralHashFunctions.c
  19. HashTest: GeneralHashFunctions.c HashTest.c
  20. $(COMPILER) $(OPTIONS) HashTest HashTest.c GeneralHashFunctions.o
  21. clean:
  22. rm -f core *.o *.bak *stackdump *#
  23. #
  24. # The End !
  25. #