Commit e3802bcd7be5c23ae5c6a01f06c18cfc707ed5d0

Authored by Georg Hopp
1 parent 3bc1cd92

change build ... do not generate Makefile.in, this is derived from mod_tidy but …

…i am not happy with this ... anyway, this way the stuff builds and installs correctly
Showing 2 changed files with 18 additions and 15 deletions
1 -ACLOCAL_AMFLAGS = -I m4  
2 -  
3 -lib_LTLIBRARIES = libmodentropy.la  
4 -  
5 -libmodentropy_la_SOURCES = mod_entropy.c \  
6 - mod_entropy_get_entropy_bits.c \  
7 - mod_entropy_add_entropy.c  
8 -libmodentropy_la_LDFLAGS = -lrt -lm  
9 -  
10 -install: libmodentropy.la  
11 - @APXS@ -i -a -n entropy libmodentropy.la  
12 -  
13 -## Define that an include directory is required.  
14 -INCLUDES = -I@AP_INCLUDE@ -I@APR_INCLUDE@  
15 -  
  1 +@SET_MAKE@
  2 +APXS=@APXS@
  3 +AP_INCLUDE=@AP_INCLUDE@
  4 +APR_INCLUDE=@APR_INCLUDE@
  5 +
  6 +SRCS=mod_entropy.c \
  7 + mod_entropy_get_entropy_bits.c \
  8 + mod_entropy_add_entropy.c
  9 +
  10 +OBJS=mod_entropy.o \
  11 + mod_entropy_get_entropy_bits.o \
  12 + mod_entropy_add_entropy.o
  13 +
  14 +mod_entropy.so:
  15 + ${APXS} -c ${SRCS}
  16 +
  17 +install: mod_entropy.so
  18 + ${APXS} -i -a -n entropy mod_entropy.la
Please register or login to post a comment