Makefile.in 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # Makefile for zlib
  2. # Copyright (C) 1995-2013 Jean-loup Gailly, Mark Adler
  3. # For conditions of distribution and use, see copyright notice in zlib.h
  4. CC=
  5. CFLAGS=
  6. SFLAGS=
  7. INCLUDES=
  8. SUFFIX=
  9. ACLEFLAG=
  10. NEONFLAG=
  11. ARMV6FLAG=
  12. NOLTOFLAG=
  13. SRCDIR=.
  14. SRCTOP=../..
  15. TOPDIR=$(SRCTOP)
  16. all: \
  17. adler32_neon.o adler32_neon.lo \
  18. arm_features.o arm_features.lo \
  19. chunkset_neon.o chunkset_neon.lo \
  20. compare256_neon.o compare256_neon.lo \
  21. crc32_acle.o crc32_acle.lo \
  22. slide_hash_neon.o slide_hash_neon.lo \
  23. slide_hash_armv6.o slide_hash_armv6.lo \
  24. adler32_neon.o:
  25. $(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/adler32_neon.c
  26. adler32_neon.lo:
  27. $(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/adler32_neon.c
  28. arm_features.o:
  29. $(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/arm_features.c
  30. arm_features.lo:
  31. $(CC) $(SFLAGS) $(INCLUDES) -c -o $@ $(SRCDIR)/arm_features.c
  32. chunkset_neon.o:
  33. $(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/chunkset_neon.c
  34. chunkset_neon.lo:
  35. $(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/chunkset_neon.c
  36. compare256_neon.o:
  37. $(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/compare256_neon.c
  38. compare256_neon.lo:
  39. $(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/compare256_neon.c
  40. crc32_acle.o:
  41. $(CC) $(CFLAGS) $(ACLEFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c
  42. crc32_acle.lo:
  43. $(CC) $(SFLAGS) $(ACLEFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/crc32_acle.c
  44. slide_hash_neon.o:
  45. $(CC) $(CFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_neon.c
  46. slide_hash_neon.lo:
  47. $(CC) $(SFLAGS) $(NEONFLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_neon.c
  48. slide_hash_armv6.o:
  49. $(CC) $(CFLAGS) $(ARMV6FLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_armv6.c
  50. slide_hash_armv6.lo:
  51. $(CC) $(SFLAGS) $(ARMV6FLAG) $(NOLTOFLAG) $(INCLUDES) -c -o $@ $(SRCDIR)/slide_hash_armv6.c
  52. mostlyclean: clean
  53. clean:
  54. rm -f *.o *.lo *~
  55. rm -rf objs
  56. rm -f *.gcda *.gcno *.gcov
  57. distclean: clean
  58. rm -f Makefile