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