Makefile.am 387 B

123456789101112131415161718192021
  1. crhash_includedir = -I$(abs_top_srcdir)/include
  2. dist_doc_DATA = LICENSE \
  3. README.md \
  4. $(NULL)
  5. CRHASH_FILES = src/c_rhash.c \
  6. src/c_rhash.h \
  7. $(NULL)
  8. lib_LIBRARIES = libcrhash.a
  9. libcrhash_a_SOURCES = $(CRHASH_FILES)
  10. libcrhash_a_CFLAGS = $(crhash_includedir)
  11. bin_PROGRAMS = test
  12. test_LDADD = libcrhash.a
  13. test_SOURCES = src/tests.c
  14. test_CFLAGS = $(crhash_includedir)