#
# $Header: Makefile,v 1.1 87/09/20 21:29:30 root Exp $
#
# $Log:	Makefile,v $
# Revision 1.1  87/09/20  21:29:30  root
# Initial revision
# 
# Revision 1.1  86/08/22  09:37:35  mark
# Initial revision
# 
#
CFLAGS=	-O

spconfig:	spconfig.y
	yacc spconfig.y
	cc -O -o spconfig y.tab.c
	/bin/rm -f y.tab.c

debug:		spconfig.y
	yacc spconfig.y
	mv y.tab.c debug.c
	cc -g -o debug debug.c

clean:
	-/bin/rm -f y.tab.c rslts errs a.out core *.o spconfig debug debug.c

install:	spconfig
	install -s -m 700 spconfig ${DESTDIR}/etc/spconfig
