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