Skip to content

Commit

Permalink
Makefile: Added support for building the module with both Apache 1.3 …
Browse files Browse the repository at this point in the history
…and 2.2
  • Loading branch information
hackman committed Sep 27, 2011
1 parent 6d7fcd0 commit 165cdd1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Makefile
@@ -1,8 +1,14 @@
BUILD_DIR=/usr/local/apache2/build/
APXS=/usr/local/apache2/bin/apxs
APXS13=/usr/local/apache/bin/apxs
APXS22=/usr/local/apache2/bin/apxs

ap13:
sudo $(APXS13) -cia mod_rangelimit.c

ap22:
sudo $(APXS22) -cia mod_rangelimit.c

all:
sudo $(APXS) -cia mod_rangelimit.c
ap13

clean:
sudo rm -rf .libs *.o *.lo *.so *.la *.a *.slo
Expand Down

0 comments on commit 165cdd1

Please sign in to comment.