"Fossies" - the Fresh Open Source Software Archive

Member "mod_gzip-1.3.26.1a/Makefile" (1 Oct 2002, 264 Bytes) of package /linux/www/apache_httpd_modules/old/mod_gzip-1.3.26.1a.tgz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 
    2 APXS?=/usr/local/sbin/apxs
    3 RM=/bin/rm
    4 
    5 build:
    6 	$(APXS) -Wc,-Wall,-O3,-fomit-frame-pointer,-pipe -c mod_gzip.c mod_gzip_debug.c mod_gzip_compress.c -o mod_gzip.so
    7 
    8 install:
    9 	$(APXS) -A -i mod_gzip.so
   10 
   11 clean:
   12 	$(RM) -rf *.o
   13 
   14 distclean: clean
   15 	$(RM) -f mod_gzip.so
   16