Makefile.am 752 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ## Process this file with automake to generate Makefile.in
  2. if DEBUG
  3. DEBUG_CFLAGS = -DDEBUG
  4. endif
  5. AUTOMAKE_OPTIONS = foreign nostdinc
  6. ACLOCAL_AMFLAGS =
  7. AM_CPPFLAGS = -I. -I$(top_srcdir)
  8. AM_LD = $(CC)
  9. AM_CFLAGS = -Wall -D_GNU_SOURCE $(DEBUG_CFLAGS)
  10. sbin_PROGRAMS = birq
  11. lib_LIBRARIES =
  12. noinst_HEADERS = \
  13. birq.h \
  14. bitmap.h \
  15. non-atomic.h \
  16. cpumask.h \
  17. irq.h \
  18. cpu.h \
  19. numa.h \
  20. statistics.h \
  21. balance.h \
  22. pxm.h \
  23. bit_array.h \
  24. bit_macros.h \
  25. hexio.h
  26. birq_SOURCES = \
  27. birq.c \
  28. bitmap.c \
  29. irq.c \
  30. cpu.c \
  31. numa.c \
  32. statistics.c \
  33. balance.c \
  34. pxm.c \
  35. bit_array.c \
  36. hexio.c
  37. birq_LDADD = liblub.a
  38. birq_DEPENDENCIES = liblub.a
  39. EXTRA_DIST = \
  40. lub/module.am \
  41. doc/birq.md \
  42. LICENCE \
  43. README
  44. include $(top_srcdir)/lub/module.am