20 lines
433 B
Makefile
20 lines
433 B
Makefile
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/libstrongswan \
|
|
-DDEV_RANDOM=\"${random_device}\" \
|
|
-DDEV_URANDOM=\"${urandom_device}\"
|
|
|
|
AM_CFLAGS = \
|
|
$(PLUGIN_CFLAGS)
|
|
|
|
if MONOLITHIC
|
|
noinst_LTLIBRARIES = libstrongswan-random.la
|
|
else
|
|
plugin_LTLIBRARIES = libstrongswan-random.la
|
|
endif
|
|
|
|
libstrongswan_random_la_SOURCES = \
|
|
random_plugin.h random_plugin.c \
|
|
random_rng.c random_rng.h
|
|
|
|
libstrongswan_random_la_LDFLAGS = -module -avoid-version
|