module.am 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. if LUBHEAP
  2. liblub_la_SOURCES += lub/heap/cache.c \
  3. lub/heap/cache.h \
  4. lub/heap/cache_bucket.c \
  5. lub/heap/context.c \
  6. lub/heap/context.h \
  7. lub/heap/heap__get_max_free.c \
  8. lub/heap/heap__get_stacktrace.c \
  9. lub/heap/heap__get_stats.c \
  10. lub/heap/heap_add_segment.c \
  11. lub/heap/heap_align_block.c \
  12. lub/heap/heap_block__get_tail.c \
  13. lub/heap/heap_block_from_ptr.c \
  14. lub/heap/heap_block_getfirst.c \
  15. lub/heap/heap_block_getkey.c \
  16. lub/heap/heap_block_getnext.c \
  17. lub/heap/heap_block_getprevious.c \
  18. lub/heap/heap_block_check.c \
  19. lub/heap/heap_check.c \
  20. lub/heap/heap_context_delete.c \
  21. lub/heap/heap_context_find_or_create.c \
  22. lub/heap/heap_create.c \
  23. lub/heap/heap_destroy.c \
  24. lub/heap/heap_extend_both_ways.c \
  25. lub/heap/heap_extend_downwards.c \
  26. lub/heap/heap_extend_upwards.c \
  27. lub/heap/heap_foreach_free_block.c \
  28. lub/heap/heap_foreach_segment.c \
  29. lub/heap/heap_graft_to_bottom.c \
  30. lub/heap/heap_graft_to_top.c \
  31. lub/heap/heap_init_free_block.c \
  32. lub/heap/heap_merge_with_next.c \
  33. lub/heap/heap_merge_with_previous.c \
  34. lub/heap/heap_new_alloc_block.c \
  35. lub/heap/heap_new_free_block.c \
  36. lub/heap/heap_post_realloc.c \
  37. lub/heap/heap_pre_realloc.c \
  38. lub/heap/heap_raw_realloc.c \
  39. lub/heap/heap_realloc.c \
  40. lub/heap/heap_scan_stack.c \
  41. lub/heap/heap_show.c \
  42. lub/heap/heap_slice_from_bottom.c \
  43. lub/heap/heap_slice_from_top.c \
  44. lub/heap/heap_static_alloc.c \
  45. lub/heap/heap_stop_here.c \
  46. lub/heap/heap_tainted_memory.c \
  47. lub/heap/node.c \
  48. lub/heap/node.h \
  49. lub/heap/private.h
  50. endif
  51. EXTRA_DIST += \
  52. lub/heap/posix/module.am \
  53. lub/heap/vxworks/module.am
  54. include $(top_srcdir)/lub/heap/posix/module.am
  55. include $(top_srcdir)/lub/heap/vxworks/module.am