#!/usr/bin/make # # multisort - sort multiple time logs into a single time log # # @(#) $Revision: 1.2 $ # @(#) $Id: Makefile,v 1.2 2004/01/06 14:32:43 root Exp $ # @(#) $Source: /home/chongo/www/isthe/chroot/html/chongo/src/multisort-patch/RCS/Makefile,v $ SHELL = /bin/sh INSTALL = install DESTDIR = /usr/local/etc CC = gcc CFLAGS = -Wall -g3 -O3 #CFLAGS = -Wall -g3 all: multisort multisort: multisort.c $(CC) $(CFLAGS) -o multisort multisort.c clean: rm -f multisort.o clobber: clean rm -f multisort install: all ${INSTALL} -m 0555 multisort ${DESTDIR}/multisort