Makefile.am 362 B

1234567891011121314151617181920212223
  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