assert: Split some of the work into a separate C file.
[libcstd.git] / Makefile.am
blob1f9c5757b65ea75221dd6779203c05530a32cbe6
1 ACLOCAL_AMFLAGS = -I m4
3 AM_CPPFLAGS = -I$(top_srcdir)/include
4 AM_LDFLAGS = -static
5 LDADD = libcstd.la
7 noinst_HEADERS  =
8 lib_LTLIBRARIES = libcstd.la
9 noinst_LTLIBRARIES =
10 libcstd_la_SOURCES =
11 libcstd_la_LDFLAGS =
12 libcstd_la_LIBADD  =
14 include include/Makefile.inc
16 include src/stdio/Makefile.inc
17 include src/stdlib/Makefile.inc
18 include src/assert/Makefile.inc
19 include src/string/Makefile.inc
20 include src/locale/Makefile.inc
21 include src/math/Makefile.inc
22 include src/complex/Makefile.inc
24 check_HEADERS = test/intconv.h test/mathutil.h
26 check_PROGRAMS = test/strlen test/strcmp test/strxfrm test/strcspn \
27         test/strspn test/strstr_empty test/strstr_match test/strtok_iso \
28         test/memmove test/assert test/strtol test/strtoll test/strtoimax \
29         test/strtoul test/strtoull test/strtoumax test/bsearch test/sprintf \
30         test/exp test/fcompare test/complex
32 TESTS = $(check_PROGRAMS)