@@@ so much mess
[mLib] / utils / Makefile.am
index b52e7f6..7807721 100644 (file)
@@ -32,6 +32,10 @@ libutils_la_SOURCES   =
 ###--------------------------------------------------------------------------
 ### Component files.
 
+## Compiler checking.
+pkginclude_HEADERS     += compiler.h
+LIBMANS                        += compiler.3
+
 ## Utility macros.
 pkginclude_HEADERS     += macros.h
 LIBMANS                        += macros.3
@@ -50,6 +54,15 @@ t_bits_t_CPPFLAGS     = $(TEST_CPPFLAGS)
 t_bits_t_LDFLAGS        = -static
 EXTRA_DIST             += t/bits-testgen.py
 
+## Control flow.
+pkginclude_HEADERS     += control.h
+##LIBMANS              += control.3
+
+check_PROGRAMS         += t/control.t
+t_control_t_SOURCES     = t/control-test.c
+t_control_t_CPPFLAGS    = $(TEST_CPPFLAGS)
+t_control_t_LDFLAGS     = -static
+
 ## Exceptions.
 pkginclude_HEADERS     += exc.h
 libutils_la_SOURCES    += exc.c
@@ -59,6 +72,16 @@ check_PROGRAMS               += t/exc.t
 t_exc_t_SOURCES                 = t/exc-test.c
 t_exc_t_LDFLAGS                 = -static
 
+## Generalized formatting.
+pkginclude_HEADERS     += gprintf.h
+libutils_la_SOURCES    += gprintf.c
+##LIBMANS              += gprintf.3
+
+## Linear regression.
+pkginclude_HEADERS     += linreg.h
+libutils_la_SOURCES    += linreg.c
+##LIBMANS              += linreg.3
+
 ## String handling.
 pkginclude_HEADERS     += str.h
 libutils_la_SOURCES    += str.c