1a8dbabb03
-- mod_gzip transparently compresses the output of apache to client browsers. It uses the 'Accept-Encoding' header to determine whether or not the client browser wants gzipped content.
12 lines
239 B
Makefile
Executable File
12 lines
239 B
Makefile
Executable File
# $OpenBSD: Makefile.OpenBSD,v 1.1.1.1 2001/07/15 22:52:45 avsm Exp $
|
|
|
|
APXS= /usr/sbin/apxs
|
|
CC!= $(APXS) -q CC
|
|
CFLAGS!= $(APXS) -q CFLAGS
|
|
INCLUDES!= $(APXS) -q INCLUDEDIR
|
|
|
|
all: mod_gzip.so
|
|
|
|
mod_gzip.so: mod_gzip.c
|
|
$(APXS) -c mod_gzip.c
|