# @(#) Makefile 1.3 11/26/89 22:20:28 

SHELL	= /bin/sh
CFLAGS	= -s -O
FILES	= README agetty.c agetty.8 Makefile

agetty: agetty.c
	cc $(CFLAGS) -o $@ $?

clean:
	rm -f agetty.o agetty

shar:	$(FILES)
	@shar $(FILES)

agetty.8:
	srctoman agetty.c >agetty.8
