1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-idirafter $(top_srcdir)/lib/compat \
-I$(top_builddir) \
# EOL
noinst_LTLIBRARIES = \
libcompat-test.la \
libcompat.la \
# EOL
libcompat_test_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-DTEST_LIBCOMPAT=1 \
# EOL
libcompat_test_la_SOURCES = \
compat.h \
strchrnul.c \
strnlen.c \
strndup.c \
strsignal.c \
snprintf.c vsnprintf.c \
asprintf.c vasprintf.c \
getent.c \
alphasort.c \
scandir.c \
unsetenv.c \
# EOL
if HAVE_SYS_ERRLIST
libcompat_test_la_SOURCES += strerror.c
endif
libcompat_la_SOURCES = \
empty.c \
compat.h \
compat-zlib.h \
gettext.h \
# EOL
if !HAVE_GETOPT
libcompat_la_SOURCES += getopt.c getopt.h getopt_int.h
else
if !HAVE_GETOPT_LONG
libcompat_la_SOURCES += getopt.c getopt.h getopt_int.h
endif
endif
if !HAVE_GETOPT_LONG
libcompat_la_SOURCES += getopt1.c
endif
if !HAVE_OBSTACK_FREE
libcompat_la_SOURCES += obstack.c obstack.h
endif
if !HAVE_STRNLEN
libcompat_la_SOURCES += strnlen.c
endif
if !HAVE_STRCHRNUL
libcompat_la_SOURCES += strchrnul.c
endif
if !HAVE_STRNDUP
libcompat_la_SOURCES += strndup.c
endif
if !HAVE_STRERROR
libcompat_la_SOURCES += strerror.c
endif
if !HAVE_STRSIGNAL
libcompat_la_SOURCES += strsignal.c
endif
if !HAVE_C99_SNPRINTF
libcompat_la_SOURCES += snprintf.c vsnprintf.c
endif
if !HAVE_ASPRINTF
libcompat_la_SOURCES += asprintf.c vasprintf.c
endif
if !HAVE_FGETPWENT
libcompat_la_SOURCES += getent.c
else
if !HAVE_FGETGRENT
libcompat_la_SOURCES += getent.c
endif
endif
if !HAVE_ALPHASORT
libcompat_la_SOURCES += alphasort.c
endif
if !HAVE_SCANDIR
libcompat_la_SOURCES += scandir.c
endif
if !HAVE_UNSETENV
libcompat_la_SOURCES += unsetenv.c
endif
|