| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- ## Process this file with automake to produce Makefile.in
- AM_CPPFLAGS = \
- -idirafter $(top_srcdir)/lib/compat \
- -I$(top_builddir)
- noinst_LIBRARIES = libcompat.a
- libcompat_a_SOURCES = \
- empty.c \
- compat.h \
- gettext.h
- if !HAVE_GETOPT
- libcompat_a_SOURCES += getopt.c getopt.h
- endif
- if !HAVE_GETOPT_LONG
- libcompat_a_SOURCES += getopt1.c
- endif
- if !HAVE_OBSTACK_FREE
- libcompat_a_SOURCES += obstack.c obstack.h
- endif
- if !HAVE_STRNLEN
- libcompat_a_SOURCES += strnlen.c strnlen.h
- endif
- if !HAVE_STRERROR
- libcompat_a_SOURCES += strerror.c
- endif
- if !HAVE_STRSIGNAL
- libcompat_a_SOURCES += strsignal.c
- endif
- if !HAVE_C99_SNPRINTF
- libcompat_a_SOURCES += snprintf.c vsnprintf.c
- endif
- if !HAVE_ALPHASORT
- libcompat_a_SOURCES += alphasort.c
- endif
- if !HAVE_SCANDIR
- libcompat_a_SOURCES += scandir.c
- endif
- if !HAVE_UNSETENV
- libcompat_a_SOURCES += unsetenv.c
- endif
|