NetBSD/distrib/utils/more/Makefile
martin c45ea630d3 Drop ``-Os'' on sparc64 due to toolchain issues.
The same change has already been applied on the 1.5 branch. The problems
(i.e. ifconfig not showing IP addresses) have been verified to still exist
with the new toolchain.
2001-08-20 12:19:43 +00:00

24 lines
534 B
Makefile

# $NetBSD: Makefile,v 1.10 2001/08/20 12:19:44 martin Exp $
#
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= more
MKMAN= no
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 \
ttyin.c
DPADD= ${LIBTERMCAP}
LDADD= -ltermcap
LDSTATIC?=-static
CPPFLAGS+=-I${.CURDIR}
.if ${MACHINE_ARCH} != "sparc64"
COPTS+= -Os
.endif
beforeinstall:
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/more.help \
${DESTDIR}/usr/share/misc
.include <bsd.prog.mk>