Makefile.am 737 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. cpumask.h \
  15. irq.h \
  16. cpu.h \
  17. numa.h \
  18. statistics.h \
  19. balance.h \
  20. pxm.h \
  21. bit_array.h \
  22. bit_macros.h \
  23. hexio.h
  24. birq_SOURCES = \
  25. birq.c \
  26. irq.c \
  27. cpu.c \
  28. numa.c \
  29. statistics.c \
  30. balance.c \
  31. pxm.c \
  32. bit_array.c \
  33. hexio.c
  34. birq_LDADD = liblub.a
  35. birq_DEPENDENCIES = liblub.a
  36. EXTRA_DIST = \
  37. lub/module.am \
  38. doc/birq.md \
  39. examples/birq.conf \
  40. LICENCE \
  41. README.md
  42. include $(top_srcdir)/lub/module.am