"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ######################################################################
2 #
3 # A minimal 'Makefile', by Alan DeKok <aland@freeradius.org>
4 #
5 # $Id: Makefile,v 1.13 2003/03/27 16:31:51 aland Exp $
6 #
7 ######################################################################
8
9 VERSION=1.5.7
10
11 ######################################################################
12 #
13 # The default rule: tell the user what to REALLY do to use
14 # the module.
15 #
16 all:
17 @echo
18 @echo Configure this module into Apache by going to the Apache root directory,
19 @echo and typing:
20 @echo
21 @echo " ./configure --add-module=`pwd`/mod_auth_radius.c --enable-shared=auth_radius"
22 @echo
23 @echo and then
24 @echo
25 @echo " make"
26 @echo " make install"
27 @echo
28 @echo "Alternatively, if you've already built and installed Apache with"
29 @echo dynamic modules, you should be able to install this module via:
30 @echo
31 @echo " apxs -i -a -c mod_auth_radius.c"
32 @echo
33 @echo You should add your additional site configuration options to the 'configure'
34 @echo line, above. Please read the README file for further information.
35 @echo
36
37 ######################################################################
38 #
39 # Check a distribution out of the source tree, and make a tar file.
40 #
41 dist:
42 cvs export -Dtoday -d mod_auth_radius-${VERSION} mod_auth_radius
43 tar -cf mod_auth_radius-${VERSION}.tar mod_auth_radius-${VERSION}
44 rm -rf mod_auth_radius-${VERSION}
45
46 ######################################################################
47 #
48 # Clean up everything.
49 #
50 clean:
51 @rm -f *~ *.o mod_auth_radius-${VERSION}.tar