Makefile.am 673 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. statistics.h \
  20. balance.h \
  21. proximity.h
  22. birq_SOURCES = \
  23. birq.c \
  24. bitmap.c \
  25. irq_parse.c \
  26. cpu_parse.c \
  27. statistics.c \
  28. balance.c \
  29. proximity.c
  30. birq_LDADD = liblub.a
  31. birq_DEPENDENCIES = liblub.a
  32. EXTRA_DIST = \
  33. lub/module.am \
  34. LICENCE \
  35. README
  36. include $(top_srcdir)/lub/module.am