#
# $Id: Makefile,v 1.2 1997/01/04 00:22:02 bje Exp $
#
# Description:
# Makefile for the splitter program.
#

CC	= cc
CFLAGS	= -O2 -Wall

TARGET	= splitter

# The root of the optional software tree (used by the `install' target).
PREFIX	= /usr/local

$(TARGET):	$(TARGET).c

all:	$(TARGET)
	$(CC) $(CFLAGS) $(TARGET).c -o $(TARGET)

clean:
	@rm $(TARGET)

lint:
	$(LINT) $(TARGET).c

install:
	install -m 644 -g root splitter.1 $(PREFIX)/man/man1
	install -m 755 -g bin splitter $(PREFIX)/bin
