Makefile.am 802 B

123456789101112131415161718192021222324252627282930
  1. AM_CPPFLAGS = -I${top_srcdir}/src
  2. SUBDIRS = helloworld helloworld1
  3. DIST_SUBDIRS = helloworld helloworld1
  4. EXTRA_DIST=log4crc README
  5. noinst_LTLIBRARIES = liblog4c_examples.la liblog4c_userloc.la
  6. noinst_PROGRAMS = application_1 application_2 application_3
  7. liblog4c_examples_la_SOURCES = example_formatters.c example_appenders.c
  8. liblog4c_userloc_la_SOURCES= userloc_formatter.c
  9. application_1_SOURCES = application_1.c
  10. application_2_SOURCES = application_2.c
  11. application_3_SOURCES = application_3.c application_3.h
  12. application_1_LDADD = \
  13. $(top_builddir)/src/log4c/liblog4c.la
  14. application_2_LDADD = \
  15. liblog4c_examples.la \
  16. $(top_builddir)/src/log4c/liblog4c.la
  17. application_3_LDADD = \
  18. liblog4c_userloc.la \
  19. liblog4c_examples.la \
  20. $(top_builddir)/src/log4c/liblog4c.la \
  21. $(GETHOSTNAME_LIB)