blob: 38160c032297b92226e2b8b3a37a2f7f589a9d4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
PROG= more
CFLAGS+=-I${.CURDIR} -DTERMIOS
SRCS= ch.c command.c decode.c help.c input.c line.c linenum.c main.c \
option.c os.c output.c position.c prim.c screen.c signal.c tags.c \
ttyin.c
DPADD= ${LIBTERMCAP}
LDADD= -ltermcap
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
${DESTDIR}/usr/share/misc
.include <bsd.prog.mk>
|