Makefile.am 429 B

123456789101112131415161718192021222324252627
  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. if !HAVE_GETOPT
  7. libcompat_a_SOURCES += getopt.c getopt.h
  8. endif
  9. if !HAVE_GETOPT_LONG
  10. libcompat_a_SOURCES += getopt1.c
  11. endif
  12. if !HAVE_OBSTACK_FREE
  13. libcompat_a_SOURCES += obstack.c obstack.h
  14. endif
  15. if !HAVE_STRNLEN
  16. libcompat_a_SOURCES += strnlen.c strnlen.h
  17. endif