Skip to content

Commit

Permalink
Apache2 build files
Browse files Browse the repository at this point in the history
  • Loading branch information
robs committed Jul 29, 2002
1 parent a39c55d commit 30185da
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Makefile.AP2
@@ -0,0 +1,27 @@
#
# Makefile for Apache2
#

builddir = .

top_dir = /usr/local/apache2

top_srcdir = ${top_dir}
top_builddir = ${top_dir}

include ${top_builddir}/build/special.mk

APXS = apxs
APACHECTL = apachectl

#DEFS=-Dmy_define=my_value
#INCLUDES=-Imy/include/dir
#LIBS=-Lmy/lib/dir -lmylib

all: local-shared-build

install: install-modules

clean:
-rm -f *.o *.lo *.slo *.la

13 changes: 13 additions & 0 deletions modules.mk
@@ -0,0 +1,13 @@
#
# this is used/needed by the APACHE2 build system
#

MOD_FASTCGI = mod_fastcgi fcgi_pm fcgi_util fcgi_protocol fcgi_buf fcgi_config

mod_fastcgi.la: ${MOD_FASTCGI:=.slo}
$(SH_LINK) -rpath $(libexecdir) -module -avoid-version ${MOD_FASTCGI:=.lo}

DISTCLEAN_TARGETS = modules.mk

shared = mod_fastcgi.la

0 comments on commit 30185da

Please sign in to comment.