Makefile.am 620 B

1234567891011121314151617181920212223242526272829303132
  1. ## Process this file with automake to generate Makefile.in
  2. AUTOMAKE_OPTIONS = foreign nostdinc
  3. ACLOCAL_AMFLAGS = -I m4
  4. AM_CPPFLAGS = -I. -I$(top_srcdir)
  5. AM_LD = $(CC)
  6. if DEBUG
  7. DEBUG_CFLAGS = -DDEBUG
  8. endif
  9. AM_CFLAGS = -Wall $(DEBUG_CFLAGS)
  10. #AM_CFLAGS = -ansi -pedantic -Werror -Wall -D_POSIX_C_SOURCE=199309 -DVERSION=$(VERSION) $(DEBUG_CFLAGS)
  11. sbin_PROGRAMS = birq
  12. lib_LTLIBRARIES =
  13. noinst_LTLIBRARIES =
  14. lib_LIBRARIES =
  15. nobase_include_HEADERS =
  16. birq_SOURCES = \
  17. birq.c
  18. birq_LDADD = liblub.la
  19. birq_DEPENDENCIES = liblub.la
  20. EXTRA_DIST = \
  21. lub/module.am \
  22. LICENCE \
  23. README
  24. include $(top_srcdir)/lub/module.am