source: mod_gnutls/src/Makefile.am @ a66e147

asynciodebian/masterdebian/stretch-backportsjessie-backportsmainmsvaproxy-ticketupstream
Last change on this file since a66e147 was a66e147, checked in by Paul Querna <chip@…>, 18 years ago

working support for a ssl session cache via memcached.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1CLEANFILES = .libs/libmod_gnutls *~
2
3libmod_gnutls_la_SOURCES = mod_gnutls.c gnutls_io.c gnutls_cache.c
4libmod_gnutls_la_CFLAGS = -Wall ${MODULE_CFLAGS}
5libmod_gnutls_la_LDFLAGS = -rpath ${AP_LIBEXECDIR} -module -avoid-version ${MODULE_LIBS}
6
7lib_LTLIBRARIES = libmod_gnutls.la
8
9make_so: $(lib_LTLIBRARIES)
10        @if test ! -L mod_gnutls.so ; then ln -s .libs/libmod_gnutls.so mod_gnutls.so ; fi
11
12clean:
13        rm -f mod_gnutls.so
14        rm -f *.o *.lo *.la
15        rm -fr .libs
16
17install: make_so
18        @${APXS_BIN} -i -n svn_view mod_gnutls.so
19        @echo ""
20        @echo ""
21        @echo "***********************************************"
22        @echo ""
23        @echo "   Please read the documentation at            "
24        @echo "   http://www.outoforder.cc/ for   "
25        @echo "   details on configuration of this module     "
26        @echo ""
27        @echo "***********************************************"
28        @echo ""
29
30activate: make_so
31        @${APXS_BIN} -i -a -n svn_view mod_gnutls.so
32        @echo ""
33        @echo ""
34        @echo "***********************************************"
35        @echo ""
36        @echo "   Please read the documentation at            "
37        @echo "   http://www.outoforder.cc/ for   "
38        @echo "   details on configuration of this module     "
39        @echo ""
40        @echo "***********************************************"
41        @echo ""
Note: See TracBrowser for help on using the repository browser.