module.am 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. ## Process this file with automake to generate Makefile.in
  2. noinst_PROGRAMS = \
  3. test/bintree \
  4. test/string
  5. test_bintree_SOURCES = \
  6. test/bintree.c \
  7. test/bintree.h
  8. test_bintree_LDADD = \
  9. liblub.la \
  10. @BFD_LIBS@
  11. if LUBHEAP
  12. noinst_PROGRAMS += \
  13. test/heap \
  14. test/mallocTest \
  15. test/lubMallocTest
  16. test_heap_SOURCES = \
  17. test/heap.c
  18. test_heap_LDADD = \
  19. liblub.la \
  20. @BFD_LIBS@
  21. test_mallocTest_CFLAGS = @RT_CFLAGS@
  22. test_mallocTest_SOURCES = \
  23. test/mallocTest.c
  24. test_mallocTest_LDADD = \
  25. @RT_LIBS@
  26. test_lubMallocTest_CFLAGS = @RT_CFLAGS@
  27. test_lubMallocTest_LDFLAGS =
  28. test_lubMallocTest_SOURCES = \
  29. test/mallocTest.c
  30. test_lubMallocTest_LDADD = \
  31. @RT_LIBS@ \
  32. liblubheap.la \
  33. liblub.la \
  34. @BFD_LIBS@
  35. endif
  36. test_string_SOURCES = \
  37. test/string.c
  38. test_string_LDADD = \
  39. liblub.la \
  40. @BFD_LIBS@