##
##

# Apparently this is needed for Xenix:
#LIBS=-lx
CFLAGS=-O

all:		newgetty newgetty.man
install:	all
	@echo Install according to local convention

newgetty:	newgetty.c
	@rm -f newgetty
	$(CC) -o newgetty $(CFLAGS) newgetty.c $(LIBS)
