Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. TESTS=test-base64 test-md4 test-md5 test-milenage test-ms_funcs test-sha1 \
  2. test-sha256 test-aes
  3. all: $(TESTS)
  4. ifndef CC
  5. CC=gcc
  6. endif
  7. ifndef LDO
  8. LDO=$(CC)
  9. endif
  10. ifndef CFLAGS
  11. CFLAGS = -MMD -O2 -Wall -g
  12. endif
  13. CFLAGS += -I../src
  14. CFLAGS += -I../src/utils
  15. LIBS = ../src/utils/libutils.a \
  16. ../src/crypto/libcrypto.a
  17. ../src/utils/libutils.a:
  18. $(MAKE) -C ../src/utils
  19. ../src/crypto/libcrypto.a:
  20. $(MAKE) -C ../src/crypto
  21. test-aes: test-aes.o $(LIBS)
  22. $(LDO) $(LDFLAGS) -o $@ $^
  23. test-base64: test-base64.o $(LIBS)
  24. $(LDO) $(LDFLAGS) -o $@ $^
  25. test-md4: test-md4.o $(LIBS)
  26. $(LDO) $(LDFLAGS) -o $@ $^
  27. test-md5: test-md5.o $(LIBS)
  28. $(LDO) $(LDFLAGS) -o $@ $^
  29. test-milenage: test-milenage.o $(LIBS)
  30. $(LDO) $(LDFLAGS) -o $@ $^
  31. test-ms_funcs: test-ms_funcs.o $(LIBS)
  32. $(LDO) $(LDFLAGS) -o $@ $^
  33. test-sha1: test-sha1.o $(LIBS)
  34. $(LDO) $(LDFLAGS) -o $@ $^
  35. test-sha256: test-sha256.o $(LIBS)
  36. $(LDO) $(LDFLAGS) -o $@ $^
  37. run-tests: $(TESTS)
  38. ./test-aes
  39. ./test-md4
  40. ./test-md5
  41. ./test-milenage
  42. ./test-sha1
  43. ./test-sha256
  44. @echo
  45. @echo All tests completed successfully.
  46. clean:
  47. $(MAKE) -C ../src clean
  48. rm -f $(TESTS) *~ *.o *.d
  49. -include $(OBJS:%.o=%.d)