Makefile.am 442 B

12345678910111213141516171819202122232425262728
  1. ## Process this file with automake to produce Makefile.in
  2. INCLUDES = \
  3. -idirafter $(top_srcdir)/libcompat
  4. noinst_LIBRARIES = libcompat.a
  5. libcompat_a_SOURCES = \
  6. gettext.h
  7. if !HAVE_GETOPT
  8. libcompat_a_SOURCES += getopt.c getopt.h
  9. endif
  10. if !HAVE_GETOPT_LONG
  11. libcompat_a_SOURCES += getopt1.c
  12. endif
  13. if !HAVE_OBSTACK_FREE
  14. libcompat_a_SOURCES += obstack.c obstack.h
  15. endif
  16. if !HAVE_STRNLEN
  17. libcompat_a_SOURCES += strnlen.c strnlen.h
  18. endif