Makefile revision 1.37
1# $NetBSD: Makefile,v 1.37 2002/08/19 09:41:30 lukem Exp $ 2# @(#)Makefile 8.2 (Berkeley) 1/2/94 3 4.include <bsd.own.mk> 5 6CPPFLAGS+=#-DTFILE=\"/dev/ttyp0\" 7CPPFLAGS+=-I${.CURDIR} -I${NETBSDSRCDIR}/lib/libterm 8.if defined(DEBUG_CURSES) 9CFLAGS+=-g 10.if defined(FULL_DEBUG) 11CPPFLAGS+=-DDEBUG 12.endif 13.endif 14LIB= curses 15SRCS= acs.c addbytes.c addch.c addnstr.c attributes.c background.c bell.c \ 16 border.c box.c clear.c clearok.c clrtobot.c clrtoeol.c color.c \ 17 copywin.c cr_put.c ctrace.c cur_hash.c curs_set.c curses.c delch.c \ 18 deleteln.c delwin.c erase.c flushok.c fullname.c getch.c getstr.c \ 19 getyx.c id_subwins.c idlok.c idcok.c inch.c inchstr.c initscr.c \ 20 insch.c insdelln.c insertln.c instr.c keypad.c leaveok.c line.c \ 21 longname.c meta.c move.c mvwin.c newwin.c nodelay.c notimeout.c \ 22 overlay.c overwrite.c pause.c printw.c putchar.c refresh.c resize.c \ 23 scanw.c screen.c scroll.c scrollok.c setterm.c standout.c timeout.c \ 24 toucholap.c touchwin.c tscroll.c tstp.c tty.c unctrl.c underscore.c 25 26MAN= curses.3 27INCS= curses.h unctrl.h 28INCSDIR=/usr/include 29 30CPPFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D 31SRCS+= termcap.c tgoto.c tputs.c 32.PATH: ${NETBSDSRCDIR}/lib/libterm 33 34.if make(install) 35SUBDIR+= PSD.doc 36.endif 37 38.include <bsd.lib.mk> 39.include <bsd.subdir.mk> 40