"SfR Fresh" - the SfR Freeware/Shareware Archive 
Member "mod-cband-0.9.7.5/Makefile.in" of archive mod-cband-0.9.7.5.tgz:
As a special service "SfR Fresh" has tried to format the requested source page into HTML format using source code syntax highlighting with prefixed line numbers.
Alternatively you can here view or download the uninterpreted source code file.
That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
1 #
2 # $Id: Makefile.in,v 1.4 2005/10/07 11:54:40 dembol Exp $
3 #
4 # mod_cband - A per-user, per-virtualhost and per-destination bandwidth limiter for the Apache HTTP Server Version 2
5 #
6 # Copyright (c) 2005 Lukasz Dembinski <dembol@cband.linux.pl>
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #
22
23 APXS=@APXS@
24 APXS_OPTS=-Wc,-Wall -Wc,-DDST_CLASS=@DST_CLASS@
25 SRC=src/mod_cband.c
26 OBJ=src/.libs/mod_cband.so
27
28 $(OBJ): $(SRC)
29 @echo
30 $(APXS) $(APXS_OPTS) -c $(SRC)
31 @echo
32 @echo write '"make install"' to install module
33 @echo
34
35 install: $(OBJ)
36 $(APXS) $(APXS_OPTS) -i -a -n cband src/mod_cband.la
37
38 clean:
39 rm -f src/.libs/*
40 rm -f src/*.o
41 rm -f src/*.lo
42 rm -f src/*.la
43 rm -f src/*.slo
44 rmdir src/.libs