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