Makefile revision 1.3
11.3Smycroft# from: @(#)Makefile 5.12 (Berkeley) 8/23/92 21.2Smycroft# $Id: Makefile,v 1.3 1993/08/07 05:48:37 mycroft Exp $ 31.1Scgd 41.3SmycroftCFLAGS+=#-g -DDEBUG -DTFILE=\"/dev/ttyp0\" 51.3SmycroftCFLAGS+=-D_CURSES_PRIVATE -I${.CURDIR} 61.1ScgdLIB= curses 71.1ScgdSRCS= addbytes.c addch.c addstr.c box.c clear.c clrtobot.c clrtoeol.c \ 81.3Smycroft cr_put.c curses.c delch.c deleteln.c delwin.c erase.c fullname.c \ 91.3Smycroft getch.c getstr.c id_subwins.c idlok.c initscr.c insch.c insertln.c \ 101.3Smycroft longname.c move.c mvwin.c newwin.c overlay.c overwrite.c printw.c \ 111.3Smycroft putchar.c refresh.c scanw.c scroll.c setterm.c standout.c \ 121.3Smycroft toucholap.c touchwin.c trace.c tstp.c tty.c unctrl.c 131.1ScgdMAN3= curses.0 141.1Scgd 151.1Scgdbeforeinstall: 161.3Smycroft -cd ${.CURDIR}; cmp -s curses.h ${DESTDIR}/usr/include/curses.h > \ 171.3Smycroft /dev/null 2>&1 || \ 181.1Scgd install -c -o ${BINOWN} -g ${BINGRP} -m 444 curses.h \ 191.1Scgd ${DESTDIR}/usr/include 201.1Scgd 211.1Scgd.include <bsd.lib.mk> 22