# sccs id:	@(#)Makefile	1.2	4/11/89
# 
PROG    = keydef
CFLAGS  = -O -s
HEADERS = $(PROG).h
SCR     = $(PROG).c
FILES   = README $(PROG).L sample Notes $(PROG).c $(PROG).h \
          Makefile 132col 80col

all:	$(PROG)

$(PROG):	$(HEADERS) $(SCR)
	cc $(CFLAGS) $(SCR) -o $(PROG)

shar:	$(FILES)
	shar -a $(FILES) > $(PROG).shar
