You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
435 B
14 lines
435 B
## This is the shared library to be built
|
|
lib_LTLIBRARIES = libmodentropy.la
|
|
|
|
## Define the source file for the module
|
|
libmodentropy_la_SOURCES = mod_entropy.c mod_entropy_get_entropy_bits.c \
|
|
mod_entropy_add_entropy.c
|
|
libmodentropy_la_LDFLAGS = -lrt -lm
|
|
|
|
install: libmodentropy.la
|
|
apxs -i -a -n entropy libmodentropy.la
|
|
|
|
## Define that an include directory is required.
|
|
#INCLUDES = -I@apache_dir@/include -I/usr/include/apr-1
|
|
|