summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: cd349d0ad124d08f31dd12c41d0386d81ff312ad (plain)
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
# $Id: Makefile,v 1.1 2001/11/28 05:26:54 helios Exp $

# Verify that this points to the right place...
APACHEDIR = /usr/local/src/apache_1.3.22/src

# Verify that this include directory is correct for you...
CFLAGS    = -fpic -O2 -Wall -I/usr/local/Apache/include

# ---------------------------------------------------------
# You shouldn't have to touch below here!

CC        = gcc
DEFS      = -DSHARED_MODULE  
INSTALL   = /usr/bin/install -m 664

all: mod_log_mysql.o

mod_log_mysql.o:	mod_log_mysql.c
			$(CC) ${CFLAGS} ${DEFS} -c mod_log_mysql.c

install: all
	<Gravatar Christopher Powell
2002-11-27
* Some more doc edits & cleanup.Gravatar Christopher Powell 2002-11-19
* Yet more minor documentation edits.Gravatar Christopher Powell 2002-11-19
* Many more doc edits. Reworked the makefile to use ssh/scp for 'make distro'.1.17Gravatar Christopher Powell 2002-11-17
* Further changes to the documentation and how it is generated.Gravatar Christopher Powell 2002-11-15
* More documentation work on the way to final 1.17 release.Gravatar Christopher Powell 2002-11-14
* Monster changes en route to 1.17. Esp. with new documentation.Gravatar Christopher Powell 2002-11-14