Makefile.am 641 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 = -I m4
  7. AM_CPPFLAGS = -I. -I$(top_srcdir)
  8. AM_LD = $(CC)
  9. AM_CFLAGS = -Wall $(DEBUG_CFLAGS)
  10. sbin_PROGRAMS = birq
  11. lib_LIBRARIES =
  12. noinst_HEADERS = \
  13. irq.h \
  14. nl.h \
  15. cpumask.h \
  16. bitmap.h \
  17. non-atomic.h \
  18. cpu.h \
  19. statistics.h \
  20. balance.h
  21. birq_SOURCES = \
  22. birq.c \
  23. nl.c \
  24. irq_parse.c \
  25. cpu_parse.c \
  26. statistics.c \
  27. bitmap.c \
  28. balance.c
  29. birq_LDADD = liblub.a
  30. birq_DEPENDENCIES = liblub.a
  31. EXTRA_DIST = \
  32. lub/module.am \
  33. LICENCE \
  34. README
  35. include $(top_srcdir)/lub/module.am