48cfb668fc
specified in the top level Makefiles. Previously I missed dozens of Makefiles that skip the install after using `cmp -s' to decide that the install isn't necessary.
23 lines
844 B
Makefile
23 lines
844 B
Makefile
# From: @(#)Makefile 8.2 (Berkeley) 1/2/94
|
|
# $Id: Makefile,v 1.5 1995/03/19 21:47:42 nate Exp $
|
|
|
|
CFLAGS+=#-DTFILE=\"/dev/ttyp0\"
|
|
CFLAGS+=-D_CURSES_PRIVATE -I${.CURDIR}
|
|
LDADD+= -ltermcap
|
|
LIB= curses
|
|
SRCS= addbytes.c addch.c addnstr.c box.c clear.c clrtobot.c clrtoeol.c \
|
|
cr_put.c ctrace.c cur_hash.c curses.c delch.c deleteln.c delwin.c \
|
|
erase.c fullname.c getch.c getstr.c id_subwins.c idlok.c initscr.c \
|
|
insch.c insertln.c longname.c move.c mvwin.c newwin.c overlay.c \
|
|
overwrite.c printw.c _putchar.c putchar.c refresh.c scanw.c scroll.c \
|
|
setterm.c standout.c toucholap.c touchwin.c tscroll.c tstp.c tty.c \
|
|
unctrl.c
|
|
MAN3= curses.3
|
|
|
|
beforeinstall:
|
|
-cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/curses.h || \
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 curses.h \
|
|
${DESTDIR}/usr/include
|
|
|
|
.include <bsd.lib.mk>
|