# $Copyright: $
# Copyright (c) 1995 by Steve Baker
# All Rights reserved
#
# This software is provided as is without any express or implied
# warranties, including, without limitation, the implied warranties
# of merchantability and fitness for a particular purpose.
#

CC=gcc

DEST=sac
BINDIR=/usr/local/bin
MAN=sac.8
MANDIR=/usr/man/man8

all:	sac.o
	$(CC) -o $(DEST) sac.o

sac.o: sac.c

clean:
	rm $(DEST) *.o

install:
	install $(DEST) $(BINDIR)/$(DEST)
	install $(MAN) $(MANDIR)/$(MAN)
