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
|
##
## Toplevel Makefile.am for rng-tools
##
SUBDIRS = contrib
sbin_PROGRAMS = rngd
bin_PROGRAMS = rngtest
man_MANS = rngd.8 rngtest.1
noinst_LIBRARIES = librngd.a
common_sources = exits.h fips.h stats.h util.h viapadlock_engine.h
rngd_SOURCES = $(common_sources) rngd.h rngd.c \
rngd_threads.h rngd_threads.c \
rngd_signals.h rngd_signals.c \
rngd_entsource.h rngd_entsource.c \
rngd_linux.h rngd_linux.c
rngd_LDADD = librngd.a @LIB_PTHREAD@
rngtest_SOURCES = $(common_sources) rngtest.c
rngtest_LDADD = librngd.a
librngd_a_SOURCES = fips.h fips.c \
stats.h stats.c \
util.h util.c \
viapadlock_engine.h viapadlock_engine.c
|