c0585ea944
as tn3270 can replace _putchar(0 with their own routine and still keep using the __cputchar() routine used by all of the other curses routines. Reviewed by: "Andrey A. Chernov, Black Mage" <ache@astral.msk.su>
23 lines
841 B
Makefile
23 lines
841 B
Makefile
# From: @(#)Makefile 8.2 (Berkeley) 1/2/94
|
|
# $Id: Makefile,v 1.4 1994/10/12 01:57:56 ache 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>
|