-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.in
44 lines (40 loc) · 1.34 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# $Id: Makefile.in,v 1.4 2005/10/07 11:54:40 dembol Exp $
#
# mod_cband - A per-user, per-virtualhost and per-destination bandwidth limiter for the Apache HTTP Server Version 2
#
# Copyright (c) 2005 Lukasz Dembinski <dembol@cband.linux.pl>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
APXS=@APXS@
APXS_OPTS=-Wc,-Wall -Wc,-DDST_CLASS=@DST_CLASS@ -lm
SRC=src/mod_cband.c
OBJ=src/.libs/mod_cband.so
$(OBJ): $(SRC)
@echo
$(APXS) $(APXS_OPTS) -c $(SRC)
@echo
@echo write '"make install"' to install module
@echo
install: $(OBJ)
$(APXS) $(APXS_OPTS) -i -a -n cband src/mod_cband.la
clean:
rm -f src/.libs/*
rm -f src/*.o
rm -f src/*.lo
rm -f src/*.la
rm -f src/*.slo
rmdir src/.libs