Home | History | Annotate | Line # | Download | only in libcurses
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 
      6 CPPFLAGS+=#-DTFILE=\"/dev/ttyp0\"
      7 CPPFLAGS+=-I${.CURDIR} -I${NETBSDSRCDIR}/lib/libterm
      8 .if defined(DEBUG_CURSES)
      9 CFLAGS+=-g
     10 .if defined(FULL_DEBUG)
     11 CPPFLAGS+=-DDEBUG
     12 .endif
     13 .endif
     14 LIB=	curses
     15 SRCS=	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 
     26 MAN=	curses.3
     27 INCS=	curses.h unctrl.h
     28 INCSDIR=/usr/include
     29 
     30 CPPFLAGS+=-DCM_N -DCM_GT -DCM_B -DCM_D
     31 SRCS+=	termcap.c tgoto.c tputs.c
     32 .PATH: ${NETBSDSRCDIR}/lib/libterm
     33 
     34 .if make(install)
     35 SUBDIR+= PSD.doc
     36 .endif
     37 
     38 .include <bsd.lib.mk>
     39 .include <bsd.subdir.mk>
     40