# Makefile for bsd/lib/libterm.

CC	= false
ARCH	= eniac
CFLAGS	= -O9 -I/usr/include/bsdcompat
CC1	= $(CC) -m$(ARCH) $(CFLAGS) -c

LIBRARY	= /usr/lib/$(CC)/$(ARCH)/libc.a
MAN	= /usr/man

all:	$(LIBRARY) man

OBJECTS	= \
	$(LIBRARY)(termcap.o) \
	$(LIBRARY)(tgoto.o) \
	$(LIBRARY)(tputs.o) \

$(LIBRARY):	$(OBJECTS)
	$(CC) -c.a -o $@ *.o
	rm *.o

$(LIBRARY)(termcap.o):	termcap.c
	$(CC1) termcap.c

$(LIBRARY)(tgoto.o):	tgoto.c
	$(CC1) tgoto.c

$(LIBRARY)(tputs.o):	tputs.c
	$(CC1) tputs.c

man:	\
	$(MAN)/man3/termcap.3 \

$(MAN)/man3/termcap.3:	termcap.3
	install -lc $? $@
