Makefile.am 859 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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
  19. if !HAVE_STRERROR
  20. libcompat_a_SOURCES += strerror.c
  21. endif
  22. if !HAVE_STRSIGNAL
  23. libcompat_a_SOURCES += strsignal.c
  24. endif
  25. if !HAVE_SNPRINTF
  26. libcompat_a_SOURCES += snprintf.c
  27. endif
  28. if !HAVE_VSNPRINTF
  29. libcompat_a_SOURCES += vsnprintf.c
  30. endif
  31. if !HAVE_ALPHASORT
  32. libcompat_a_SOURCES += alphasort.c
  33. endif
  34. if !HAVE_SCANDIR
  35. libcompat_a_SOURCES += scandir.c
  36. endif
  37. if !HAVE_UNSETENV
  38. libcompat_a_SOURCES += unsetenv.c
  39. endif