#
#  help Makefile, 1.1	7/27/84
#
# CFLAGS= -O
CFLAGS =
SRCS = help.h help.c
BINDIR = /usr/local/bin
LIBDIR = /usr/local/lib

all:	help minimore

help:	help.h help.c
	${CC} -O -o help help.c -ltermcap

minimore: help.h minimore.c
	${CC} -O -o minimore minimore.c -ltermcap

install: help minimore man miniman
	install -s -s -c help $(BINDIR)
	install -s -s -c minimore $(LIBDIR)
	install -c man miniman $(LIBDIR)

help.o: help.h help.c Makefile

minimore.o: help.h minimore.c Makefile

ci:
	ci -l ${SRCS}

clean:  
	rm -f *.o help minimore

