head	1.2;
access;
symbols
	RELEASE_8_3_0:1.2
	RELEASE_9_0_0:1.2
	RELEASE_7_4_0:1.1
	RELEASE_8_2_0:1.1
	RELEASE_6_EOL:1.1
	RELEASE_8_1_0:1.1
	RELEASE_7_3_0:1.1
	RELEASE_8_0_0:1.1
	RELEASE_7_2_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2011.06.21.19.31.51;	author dhn;	state Exp;
branches;
next	1.1;

1.1
date	2008.10.11.14.27.23;	author miwi;	state Exp;
branches;
next	;


desc
@@


1.2
log
@- Fix build with clang
@
text
@--- ./Makefile.orig	1999-10-28 21:04:24.000000000 +0200
+++ ./Makefile	2011-06-21 21:30:39.000000000 +0200
@@@@ -1,9 +1,10 @@@@
-#
-# $Id: Makefile,v 1.1 1999/01/14 19:05:35 xach Exp $
-#
-
-CC = gcc
+PREFIX?= /usr/local
+CC?= gcc
 CFLAGS = -Wall -g -O2
 
-multisort: multisort.c
+all:
 	$(CC) $(CFLAGS) -o multisort multisort.c
+
+install:
+	@@mkdir -p ${DESTDIR}${PREFIX}/bin
+	install -m 755 multisort ${PREFIX}/bin
@


1.1
log
@`multisort' is a small program designed to take multiple httpd
logfiles in the Common Log Format and merge them into a single log,
sorted by date, sent to standard output.

This is useful if you're running a single website on multiple hosts
and using round-robin DNS to do load distribution. With multisort, you
can take the various logfiles from each server and merge them into a
single file for analysis.

WWW: http://www.xach.com/multisort/

PR:		ports/127906
Submitted by:	Dennis Herrmann <adox at mcx2.org>
@
text
@d1 2
a2 2
--- Makefile.orig	1999-10-28 21:04:24.000000000 +0200
+++ Makefile	2008-10-07 18:48:41.000000000 +0200
d8 1
d10 1
a10 1
 CC = gcc
@

