X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/08e2be29746248898204da1ff23e0629ec29b644..28363d2cd517811c538dcdfcd0a205dc3bd2bffe:/base/Makefile.am diff --git a/base/Makefile.am b/base/Makefile.am index c8608ed4..8de4d69c 100644 --- a/base/Makefile.am +++ b/base/Makefile.am @@ -29,6 +29,8 @@ include $(top_srcdir)/vars.am noinst_LTLIBRARIES = libbase.la libbase_la_SOURCES = +TEST_LIBS = libbase.la + ###-------------------------------------------------------------------------- ### Component files. @@ -38,7 +40,7 @@ libbase_la_SOURCES += arena.c ## Constant-type operations. pkginclude_HEADERS += ct.h -libbase_la_SOURCES += ct.c +libbase_la_SOURCES += ct.c ct-test.c ## CPU-specific dispatch. pkginclude_HEADERS += dispatch.h @@ -55,4 +57,13 @@ libbase_la_SOURCES += lmem.c ## Clearing secrets from memory. pkginclude_HEADERS += paranoia.h +## Reservoir handling. +pkginclude_HEADERS += rsvr.h +libbase_la_SOURCES += rsvr.c +TESTS += rsvr.t$(EXEEXT) +EXTRA_DIST += t/rsvr + +## Base definitions for assembler source. +EXTRA_DIST += asm-common.h + ###----- That's all, folks --------------------------------------------------